Explore product-specific spaces to ask questions, share insights, and learn best practices.
Recently active
We would like to thank the 360 customers who registered for this event. Scroll down to watch the recording of the session, and you can find the slides presented by our engineering team as an attachment to this post. The Q&A for this event is available here: Adobe Target Engineering webinar #3 - Questions & Answers As a reminder the agenda was : New UI recap & New AI capabilities Target & Single Page Applications (SPA) Recommendations overview Q&A Watch the recording:
Has anyone found a way to dynamically aggregate & count unique visitors using raw data (data feeds) + data viz tool, the way that Workspace does? One solution is importing every distinct ID, but that's too heavy of a dataset for me to use. The obvious issue is that aggregating at different date grains or channels (or combination of both) overcounts because the same IDs are present multiple times, whereas Workspace accounts for duplicates. I haven't found a solution other than creating calculations in SQL for every date grain or channel I need. Just wondering if anyone has ever found a more dynamic solution downstream that doesn't involve importing every ID in the dataset?
Hello-We have a client with multiple business units in one sandbox. As their data sits, it is not a good idea to separate into different sandboxes, so we hope to understand when foldering might be available in the user interface, especially for Journeys. There are a lot of people working in the sandbox and they need to separate out their brands. Tagging only allows filtering, not foldering. Allowing permissions for folder visibility is also necessary. Any input about how users have addressed this, and any roadmap info appreciated - we highly suggest this feature!
Hi team,In Dataset "ajo_push_tracking_experience_event_dataset" we don't have any data being populated for the field "_experience.customerJourneyManagement.messageProfile.messageProfileID"While for Dataset "ajo_email_tracking_experience_event_dataset" and "ajo_message_feedback_event_dataset" we have messageProfileID field being populated. Whan can be happening? Thanks.If no messageProfileID for Push Tracking, what field can I use to join delivery logs and tracking logs for push?
The Show Allocation button no longer stays selected from session to session or after page refresh like it did in the past. Another in the long list of settings and UI changes that Adobe got wrong for Workfront. Adobe's AI showed me this answer, which is BS:"In recent updates, Workfront has modified how certain UI preferences are stored. The “Show Allocation” button state is now reset to its default (unselected) state when you log out or refresh the page. This change was implemented to ensure consistency across different devices and browsers. To work around this:You’ll need to re-select the “Show Allocation” button each time you log in or refresh the page.Consider bookmarking the page with the allocation view already active, if you frequently use this view."Note, the second suggested work around of Bookmarking or Pinning does not actually save the allocation setting as selected. If the “Show Allocation” button state is needing to be set as a default, then it should defaul
Hi, I'm having an issue trying to get anything to load in Marketo Engage. When I log into Marketo or click on a link that should go directly to a Marketo program, I get the following error message: "The webpage at https://app-ab28.marketo.com/?meue&meueDataOnlyMode&meueAdminTreeEnabled&meueVisualCampaign&uShell&xOrigin&xsrfId=7808024fe3d9a9042d7ca96d4a7500dada7251d43dbdbca4bb7a96947ac99839&symfony=540u18ncj93lrhf4diperb3gi0&ids_sso=CkEAR51aaln6_Cvrm5GydIoQibdQYF20yfucra0AWlrgFAxDYNrLfSuq-_B4fQqN-6NdwhpLNtfMoLbgmHCQa2NfDk1s2a-kPdVIvkXoS1c:3a824da8-d7c0-49f1-bc32-7d82aa17c374@adobe.com:578-UTL-676:14400:1761593861&mkt_lang=en_US&imsAuthId=E7B020ED67DC22400A495EB1@AdobeID#MM0A1 might be temporarily down or it may have moved permanently to a new web address."I've also attached a screenshot of the problem. I've tried using Chrome, Edge and Opera to access Marketo. I've cleared my cache/all browsing data multiple times. I've logged in and out
Hello! I have a user that accesses a report to assign work to his design team. The report has several projects and a column where he types starts to type the designer's name, the designer can be selected, and the team can access the report to see what projects they need to work on. Today, he's been unable to type anything for a couple of projects and I can't figure out why. I've added two screenshots, one shows a selected project with a small box in the Approval Assignments column visible where he can type a name. The other screenshot shows a different project highlighted where the box to enter a name isn't visible since he's unable to type anything. Other users, myself included, are not having any issues typing names in that column on any of the projects. Any ideas on what's going on? Thanks!
I have several projects showing up on my people's task lists as late, but are not scheduled to begin for several weeks. This project is showing up in my "At Risk" report as well. WHY?!?!
We have a type of project which has a couple of tasks that require extended long days. Is it possible to add a schedule to a task? I have looked if I can add to the template task and it is not obvious, but wondered if anyone has been able to do this?Thanks
Being able to add a risk at the task level would allow team leads to gain deeper insights into specific workflows, assignees, etc. that may need to be looked into further. Right now, they rely on project managers to add risks to the task description which they can't pull into a categorized report. This would allow team leads to gain feedback from their team members that it would help them better track and manage risks directly within the workflow.
Hi, We have a business requirement to log in JOSN format.we have integrated with Elastic APM, and also configured fleet to view error.log and custom logs, but log format in error.log logs don't really match the Elastic Common Schema, hence we are trying to generate logs in JSON format. As anyone used this JSON Event Logger for the above requirement.Thanks
In reviewing the Q4 Update documentation, I came across the new look for requests in preview. I can still see the old request page, but there is an option to "Use New Experience." The new requests page removes the option to change the Requests page layout. We have a Requests management report for users to track their requests that is very customized to our workflows. The new Requests page doesn't really meet our workflow needs and will seem confusing to our users.From the documentation, new Requests seems to only be available for unified experience instances after the Q4 update. Our production instance is not on unified experience, but our non-productions instances are on unified experience. We don't have Planning now, but the documentation relates that the Request page change is an attempt to bring Workfront Planning and Workfront Requests together.Will the new Requests page be mandatory at some point? Will the "Use New Experience" option be available to my non-unified experience prod
New to CJA but this seems like it should be straightforward. (always does)What to create two derived fields and then use those in a Date Math function to figureout the delta time between them. I have defined both of the derived fields and when used in a report bring back expected data. Issue comes in when I try and used those two derived fields to create a new derived feild. System says the first and second rule are not referanced in final output. But I can't 'see' the option to select them in the Date Math operator.
I have extracted the datafeed for a single day and imported it into a single SQL table. I have successfully created SQL queries to calculate Unique Visitors and Visits, as shown below and its exactly matching with workspace data.Unique Visitors: SELECT COUNT(distinct concat(post_visid_high, post_visid_low)) from where visit_page_num!=0 and hit_source not in (5,7,8,9)Visits: SELECT COUNT(distinct CONCAT(post_visid_high, post_visid_low, visit_num, visit_start_time_gmt)) FROMwhere visit_page_num!=0 and hit_source not in (5,7,8,9) Could someone please share similar SQL queries for calculating the following metrics?1. Page Views2. Bounce3. Bounce Rate4. New User5. Repeated User5. Average time on site6. Average time per page7. Entries8. Exits
In this post, I'm going to provide an Adobe Analytics implementation-based solution that will allow you to apply a non-standard attribution (i.e., Attribution IQ-based) model to common metrics like Page Views, Visits, and Occurrences. The ProblemTo demonstrate the need for this solution, let me start off by creating a simple Marketing Channel report. I have added some common metrics to this report, including "Visits", "Page Views", "Orders", and "Revenue". The result – using real-world data in this example – looks something like this:If I wanted to apply a non-standard attribution model – say, "Last Touch with a Lookback Window of 30 Days", for instance – to all of these metrics, I would be mostly out of luck. Applying a non-standard model to the Orders and Revenue metrics works just fine, as the following result shows……but trying to apply the model to either the Visits or Page Views metric presents an unwelcome surprise: when I'm presented with the
I have a situation where I have to concatenate values from a multi-select (where I use the join() function), but if only 1 selection is made my join() returns a null.I need to find a way to determine if this field is coming in as an array or single text field.Ideas?
Hi all, When I apply a non-default attribution model to a metric counting specific events, and I apply it to a Web Page dimension (or any dimension), I notice that the total summary number is different than the row amounts combined. How do I make sense or interpret these numbers, relative to the attribution?
Hi! I'm currently looking at setting up a service account to "own" our Fusion scenarios, but I was wondering does that service account also need to be an admin in our Workfront space? Appreciate any assistance!
I am trying to see clicks on banners OFF a certain page. On our site, we've had a problem with page name and have had to rely on a Hit Based evar to capture the title of the page (unique title).Our site comes in multiple languages so we have different page titles for the same page.Page title is captured in evar1Each time a banner is clicked off a page, we set evar20 (our campaign tracking code) with the name of the banner and we also trigger an event ("banner_clicked") with name event 50.So I have created a HIT container segment where evar1 = titleABC_inEnglish or titleABC_inSpanish etc... in order to isolate the specific pages I want to analyze.I created a free form table, added this segment at the top, with event50 as a metric (to capture clicks on the banners).Then I added evar20 as rows in the table. I thought I would only see the tracking codes (evar20) that were clicked off the pages isolated in the segment.But no, I am seeing all kinds of values for evar20,
Hello,I’d like to request your input on the most robust and future-proof way to implement Adobe Target on a Single Page Application (SPA) — particularly for a complex hotel booking system.Currently, the implementation is client-side via Adobe Tag Manager, which has led to flickering, broken tests due to re-rendering, extended QA cycles, many workarounds which lead to slower experimentation velocity — all of which impact sprint delivery and overall efficiency.While the agency (Adobe Licensed Architects) positioned this setup as industry best practice, Adobe’s own documentation recommends a hybrid implementation for SPAs. This approach combines client-side flexibility (at.js) with server-side or Edge Delivery stability, ensuring faster performance, more reliable experiment delivery, and reduced flicker — especially critical in dynamic, transaction-heavy environments like hotel booking systems.Furthermore, I would like to un
Hello all, Does anyone know if is possible to add custom field to the Standard Layout Template' in the place highlighted on the screenshot below: I tried to search field but this field is not listed. Thanks, Mariola
Hi there, I'm trying to upload a file into a SFTP location through File transfer activity in ACC and I'm keep getting "Failed initialization" error in File transfer activity (attached snapshot). I tried with all action - upload, download, file listing but every time I get the same error. External account is created with account name and password and enabled for SFTP. What could be the issue? How can I confirm if external account still has the access to the SFTP? Thanks in advance.
Dear Adobe Campaign Community, Your time is precious, and we understand the importance of efficiency when it comes to troubleshooting issues with Adobe Campaign. That's why we're excited to again bring you our carefully curated collection of Top KCS (Knowledge-Base) Articles for October 2025, designed to help you resolve common challenges swiftly and effectively. Our Top KCS Articles are your shortcut to: Quickly identifying and resolving recurring issues. Accessing expert insights and best practices for Adobe Campaign. Streamlining your troubleshooting process for maximum productivity. Empowering yourself with the knowledge to tackle any campaign-related problem head-on. Why spend hours searching for solutions, when our Top KCS Articles have already done the heavy lifting for you? Let us help you save time so you can focus on what truly matters – creating exceptional campaigns with Adobe Campaign. Start supercharging your problem-solving skills today by exploring our Top K
Hi, We would like to create the Journey tags in an automated way, as they are managed by an external system, and we have more than 500. In Adobe AJO API documentation (https://developer.adobe.com/journey-optimizer-apis/) is not explained but I would like to confirm if it's becasue is not possible or because is not being documented as it's quite uncommon.Thanks
Hi, I have a requirement to dynamic populate few Adaptive form fields. The dynamic values are updated as cookie in the browser, and when the user access the form, certain fields needs to be updated based on the values in the cookie. Can I achieve this using jquery/js? I have not worked with Adaptive Forms Class: GuideBridge before, hence asking if I need to initiate GuideBridge inorder to set values in adaptive form field? any help is appreciated. Thank you.
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.