Explore product-specific spaces to ask questions, share insights, and learn best practices.
Recently active
For a requirement on which data needs to be displyed from the csv file (this may be updated at times) from dam folder on searching of ID from Which is having a14k records. Triggering a servlet on search and putting records into a Map and displaying it by below idMap.containsKey(id) and giving the response back. As if the request are getting more the server is getting high cpu. Any solution can be applied in this scenario.
Hi Team, We have requirement to remove all the allowedComponent list from the page sling exporter, there are more than 50+ custom SPA components due to that model.json size is larger. In 6.5 version, is there any way to ignore allowedComponents ? Thanks for the help in advance!!
Curated by @zoe_forman & @ilona_buteneers Introduction The Marketo platform is migrating to the Adobe Experience League platform, and with this comes an important change: the move to Adobe's Identity Management System (IMS). This migration will soon be coming to your Marketo instance. This move aims to streamline your experience and integrate Marketo more seamlessly with other Adobe products. This post will walk you through the key benefits, offer tips for a smooth transition, and explain the migration process. Why Migrate to IMS? The migration to IMS offers several key benefits: Unified User Management: Manage your Marketo Engage subscriptions and users within the Adobe Admin Console, alongside your other Adobe products. Easy Switching Between Organisations: Seamlessly switch between different organisations. Single Adobe Identity: Sign in with one Adobe ID across all Adobe products and the Marketo community. Centralised Support: Access support,
Managing multiple email addresses within Marketo can be tricky, but it's a common challenge in many marketing automation strategies. Often, prospects or customers have alternate email addresses for different purposes (e.g., work and personal emails), and managing them accurately is essential to creating meaningful and personalized marketing experiences. However, challenges arise when replacing the Primary Email Address with alternate emails, leading to record invalidation and unreliable reporting. To address these issues, we should develop a scalable solution to track, validate, and manage invalid email records efficiently. Common Challenges Invalid Lead Records: Marketo marks the entire lead record as invalid if any email hard bounces, making it difficult to pinpoint the exact cause. Lack of Email Tracking: No visibility into which specific email field caused the invalidation. Compromised Email Campaigns: Marketo’s standard email field is used when executing targeted camp
Hello, I am trying to increase the number of clients who are opted in to receive email communications from us (it is very low right now). I was wondering what people have done using Marketo to increase their opt ins. I'm wondering if there is a way to only prompt people who are not currently opted in to receiving our emails because I don't want to risk those who are opted in from opting out. One idea I had was to have a radial button appear on our form if the person is currently opted out prompting them to opt in so they don't miss product release updates. Any ideas, strategies that have worked for you, or success stories you would be willing to share would be appreciated. Thanks in advance!
Hello I am trying to find a solution to update Month name ( Jan, Feb, March) and year value (2025) dynamically in an update activity. The value should look like "Data from March 2025"The Month name should be starting from next month. For example, If I run the workflow in Jan, then the month value should be FEB.Tried using "'Data from '+Month(AddMonths(formatDate(GetDate(), '%B'), 1))+' '+Year(GetDate())" but it is giving error XTK-170016 You are not authorized to use SQL expressions. 'formatDate' cannot be processed.Similar to above requirement, I am also trying to add dynamic values in two fields lets say startDate and endDate.startDate should be from 1st of next month when the workflow executes.endDate should be last date of next month from when the workflow executes.if the workflow executes in Feb, startDate would be 1/3/2025 and endDate would be 31/3/2025. Thanks
Friday Question # 3 (and I promise I'm done, I think 😋). There have been rumblings of our CMO wanting to "get rid of Leads" and use Contact records for everything (something about wanting everything as the same entity for better lifecycle management/understanding/reporting - I'm not entirely sure of the rationale as it's not been described clearly). I assumed that Marketo cannot create Contacts because of the necessity to connect it to an Account upon creation (and because I've always been under the impression that Leads are generally marketing-owned so MAPs follow that assumption) - however, I was wrong! I though that one can sync a record from Marketo to MS Dynamics and choose to do so as a Lead or Contact only for people that already exist in the Marketo database and if Microsoft Type = Empty. I'm not sure why I never thought to revisit our Sync to Dynamics smart campaign, because it syncs them as a Lead and assigns them to our generic Marketin
Has anyone tried to use a background image? I can't seem to get it to work.
Hi All,We have currently migrating from AEM 6.5 to AEM cloud.As the AEM cloud uses UTC time (and that can not be changed), when using cron expessions - we have scheduled it in UTC time so that it executes in the desired time in our timezone.Ex: if we have to run a job at 10AM Pacific time (Seattle) --> we have used a cron expression (scheduler expression) to execute at 6PM UTC (as pacific time currently is UTC-8)Question: People who moved to AEM cloud, how are you working with Daylight saving time for cron? Pacific time is UTC-8 for few months and UTC-7 for few months. How do you get a job to execute as a specific time with or without daylight saving. Please let me know how can this be achieved or any alternatives you have used.ThanksDinesh
Hi! We have a field on our custom forms asking which quarter a project is planned to be competed in (Q1, Q2, etc.). The field name is {DE:What quarter was this project planned to be completed within the quarterly plan?}. I need to compare this field to when the project is actually completed (so if a project closes out anytime between January 1 and March 31, it would be completed in Q1). Field name: {actualCompletionDate}.I need guidance on how to even start approaching this calculation in Workfront. If anyone has thoughts, I would really appreciate it.
Hi Team, We are storing user order history in Salesforce, we are required to fetch the logged-in user order total. Please let me know is any way or extension available to pull the data from Salesforce.
Hi All, We are building an integration for our SPA websites with Target Visual Experience Composer. One thing I wanted to check if the CSS Selectors in VEC. In documentation, its mentioned that we can only use either ID, or CSS class or a default selector based on "Compose" option - https://experienceleague.adobe.com/en/docs/target/using/administer/visual-experience-composer-set-up Is there an option to use custom data attribute, for example : data-cy= "button-tv-box" Has someone used custom attribute for selector? Thank you in advance for your feedbackBest,Rupal
I have technical workflow that is created the list into External database(SnowFlake) How can i read that list in another workflow while i want to use readlist activity both the workflows in V8
Hi,"I encountered the error #/id: [8918e4ba-196d-4f3b-ae4c-1053465f5bb6:7df07op28c3a4pf8:0] is not a valid URI reference. Upon analysis, I suspect the issue might be related to the colons (:) in the value. However, I cannot fully understand this value, as currently, I no longer see this kind of value being generated. Could you provide insights into what might have caused this error and why it occurred only on that specific day?"
In the following HTL code, where I'm using a method that returns a JSON string, I am concerned that it might cause XSS vulnerabilities when the data is rendered in the HTML:<sly data-sly-use.obj="com.components.models.class">${ obj.method @ context= 'unsafe'}</sly>Also, in my JavaScript code, I am accessing the DOM and parsing the JSON data, which I then manipulate and render back into the DOM. I’m worried that this could lead to XSS vulnerabilities as well:const Script = document.querySelector(' script');const data = JSON.parse(Script.innerHTML.trim()); Script.innerHTML = JSON.stringify(data, null, 2).replace(/},\s*{/g, '},\n{').replace(/\[\s*{/g, '[\n{').replace(/}\s*\]/g, '}\n]');How can I fix both of these to prevent XSS vulnerabilities?
I have a document and I am bringing that to my scenario using workfront document download module and now I want to read some values in that document which I am unable to do as the document data is coming as binary output in my module. Anyone faced the same issue?
Hi All, We are using parquet file format and in mapping set I am trying to insert current timestamp into one of the attributes.Tried below Mapping configuration "sourceType": "ATTRIBUTE", "source": "current_timestamp()", "destination": "_XXXXX.systemTime" } "sourceType": "ATTRIBUTE", "source": "{{now()}}", "destination": "_XXXXX.systemTime" } Timestamp is not ingested. any help will be appreciated!!
Please correct me if I'm wrong. We are using the ACDL extension, which will automatically initialize the adobeDataLayer. So, the web application developers only have to worry about initializing the data layer, if they are adding some data before the Web SDK code loads. If they are only doing a "push" they obviously need to make the call after the Web SDK code loads. So, would it be a Best Practice to just have them initialize the adobeDataLayer regardless before the Web SDK code loads? Thanks!
Hello, I am performing checks on webpages that I manage to ensure that we have eVars and events firing to capture visit data. I have been recommended to use a number of different web add-ons but they all have no proved fruitful. Is there any advise on which tools I can use to better track eVars and events on webpages? Thank you all!
We are using webSDK for analytics tracking but we have click data disabled as it was causing double pageviews.Now since it's not enable it should not have data for exits.But I can see numbers in report when I am using exit metrics. I would like to understand, what's contributing to this data? and if that is correct? for me the numbers seems incorrect as in some case exits are same as visits.Any thoughts on this?
Right now the only way to extend work on a task into the next sprint is to move it. We want to keep track of the points and work completed in the last sprint, but move the task into the next iteration. When doing this we lose all of the update history but need that to continue work.
I've tried using Marketo Career Connect to post a gig at my company for a Marketo Operations Consultant, but haven't yet received job posting access. I've reached out twice in the past 2 or 3 weeks, but nothing so far. Is there another space in the Marketo community forums where I can post our Request for Proposal (RFP) for this? Thank you!Megan
Hi, We have started seeing this recently where when we create a content fragment under a specific path it starts index update with below pattern and keeps on looping and does not stop. At the end of each loop it is showing following error: [sling-oak-1-org.apache.jackrabbit.oak.plugins.index.AsyncIndexUpdate-async] org.apache.jackrabbit.oak.segment.scheduler.LockBasedScheduler Failed to create checkpoint 869e77b7-7028-42b4-ade5-87fbb168a204 in 10 secondsIndex update log that is looping: It is looping till 70000 and starting again from 10000GET /editor.html/content/dam/digital/test/fragments/dir1/en-us/places/hotel-florida HTTP/1.1] org.apache.jackrabbit.oak.plugins.index.IndexUpdate /oak:index/uuid => Indexed 10000 nodes in 3.219 s .. In the above hotel-florida is the content fragment. We were unable to identify the root cause or solution to fix this issue. We need to kill the java process to restart the application. Once the application is up ever
I am using one of the built in templates in Marketo for email design.When I test, Outlook hides the bottom border of the button design.How can I make it bulletproof for Outlook? <td style="border-collapse: collapse; word-break: break-word; -webkit-hyphens: none; -moz-hyphens: none; hyphens: none; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box;" align="left" bgcolor="${photoRButtonBackgroundColor}"><a class="primary-font button" href="${photoRLink}" target="_blank" style="border-left-style: solid;font-size: 14px;text-decoration: none;padding-top: 0.8em;padding-bottom: 0.8em;padding-left: 1.3em;padding-right: 1.3em;border-top-width:${photoRBorderSize};border-right-width:${photoRBorderSize};border-bottom-width:${photoRBorderSize};border-left-width:${photoRBorderSize};border-top-style: solid;border-right-style: solid;border-bottom-style: solid;color: #002f87
I had a question about the "How will the count be incremented?" option under advanced settings in the Goal & Settings step. What is the difference between "Once per Entrant" and "On Every Impression"? Are there recommendations on when to change this? If I have a goal of clicking a button and set it to "Once per Entrant", but a visitor clicks the link twice during their visit, will it only count one click. If the same visitor comes back later in the week and clicks the button again, does that count again?
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.