Explore product-specific spaces to ask questions, share insights, and learn best practices.
Recently active
Hi there, We are upgrading our Adobe Campaign server (installed on premise) to the version 7.4.1 build 9383.We are facing to error logs since we upgrade the console with "setup-client-7.0.9383_loadfile_fix.exe" to avoid this issue : https://experienceleaguecommunities.adobe.com/t5/adobe-campaign-classic-questions/client-build-9383-problem-with-uploading-files-to-adobe/td-p/704110 Error log is : (in french) BAS-010042 La value '9383_loadfile_fix' ne correspond pas à un nombre entier 32 bits valide. (iRc=-2010) Translation to english : BAS-010042 Value '9383_loadfile_fix' is not a valid integer 32 bits. (iRc=-2010) When connecting with the console "9383 loadfile fix" on older server (7.3.2 build 9356), this error is not showing up. Do you know how to fix this error please ?Best regards, Wenceslas
I have a configuration with web SDK where I populate my data variable XDM with values name and URL within webI use a data element that reads a value from the datalayer, but then I see data with URL and data with page names. anyone has experienced this?
I have a journey created successfully in development environment, have packaged and imported into pre-Prod environment, however whilst Publishing the package, encountered below error. Have anyone experienced similar error? Any help is highly appreciated.
Hi Everyone,We do maintain a wiki page where we list all the dataflows looks like as below for all the three environments that is dev,stage and prod. To do this we open dataflows in each sandbox and manually edit the wiki. But when i closely look into UI there is a tabular info which has exact informaion we need could anyone help me to understand how this table getting populated in the AEP UI.if at all using API, please let me know. Prompt responce is appriciated. Thanks!
we have two editable templates and both allowing two components which are mentioned below.now instead of defining these component two policies in each template policies. how can i refactor to add at single place and refer and refactor the code?<carouselcq:policy="abc/components/content/carousel/policy_hero-carousel"jcr:primaryType="nt:unstructured"sling:resourceType="wcm/core/components/policies/mapping"/><mediaherocq:policy="abc/components/content/mediahero/policy_episodepage_mediahero"jcr:primaryType="nt:unstructured"sling:resourceType="wcm/core/components/policies/mapping"/>
Hello Community, We are looking at setting up an integration with Adobe Advertising and Adobe analytics, as part of the due diligence I had the below questions: First of all what are some of the challenges of the integration itself. -Can we map adobe advertising data to a virtual report suite?-What is the granularity of the data that we can expect flowing into Adobe Analytics?-Would custom variables need to be enabled to see the data in Adobe Analytics?-Would there be any additions to current server call usage (this maybe a broad and not worded correctly) but essentially looking to identify any loads or unseen costs?-Is reporting available in real-time or what kind of latency are we looking at?- Do campaign tracking code strings need additional meta data to be appended?- Is data available retroactively?Overall what are some of the best practices while integrating? Thanks
Details The features in this release focus on Content Generation Through Intelligence, Accelerated Activation, and Cloud Foundation and include the following: AEM Sites: Content Fragment Auto Tagging Remote Asset Support in Content Fragment Editor AEM Sites, Assets, Forms Translation Management APIs Cloud Foundation: AEM 6.5 LTS (Long-term Support) Extending SLA reporting to Edge Delivery Services 99.99 One-click Edge Delivery Services Site Creation Release Overview Video Watch the comprehensive release overview video to get an in-depth understanding of the enhancements brought by AEM 2025.02.0. Seed Q&A Please use this thread to ask questions related to this release. See all the Previous Releases here and the Current Release Notes here.
I read the excellent post by @kenmckell on Better Bot Blocking (Part 3) and was wondering if there was a version of this implementation using Adobe Tags and the legacy App Measurement? The site we use is deployed via AEM, but does not use alloy.js / the Web SDK
Hi Team, We are exploring the use of AEM Forms and have created a simple form with a few fields—such as First Name and Last Name—along with built-in validations. Instead of using the default out-of-the-box (OOTB) submit action, we are looking to handle the form submission on the client side using a REST API endpoint. Our goal is to retain AEM’s native form validation functionality but customize the submission logic to call an external API directly from the front end. Could you please share any best practices or guidance on how to achieve this using clientlibs? Specifically, we’re looking for an example of how to override the submit() method using GuideBridge JS, and the recommended way to load and structure this customization. Any pointers or sample code would be greatly appreciated. Thanks,Krishna
Hard to put a number on it, but I’d bet 51% of Marketo users don’t realize a non-empty SFDC Type field doesn’t mean the record is synced to SFDC. Same with a non-empty SFDC ID. That’s right: someone can have SFDC Type = Contact and SFDC ID = 003BLAHZAYBLAHBLAH and there may be no trace of them in SFDC. Why? Because those fields come from the last time they were synced and will not be updated unless they’re synced with another SFDC record in the future. And that last connected SFDC record may have been completely deleted. Don’t believe it? Create a Smart List like this: You might see thousands of records. (If you regularly delete people who have SFDC Is Deleted = true, the number won’t be as high.[1]) This came up recently on Marketo Nation, when someone wanted to add the person’s current SFDC Type to certain alerts (e.g. type=L or type=C). This can be done via a Formula field: N.B. Formula fields can’t be used in filters, only in {{lead.tok
For recurring journeys, the email delivery is sent to the seed addresses at every journey execution. But in the context of recurring journeys such as Audience Qualification or Unitary Events, how are seed addresses utilized? Specifically, if 1000 users meet the qualification criteria for an Audience Qualification journey on a given day, will the seed addresses receive 1000 emails?
The idea here is to strengthen the impact and visibility of important announcements. Administratively, there are many times that announcements really need to be marked as important and displayed with more emphasis to users. Idea: Add an "Important Announcements" section somewhere that would display important announcements that otherwise might get lost and overlooked. This could be the home page or potentially somewhere up top to account for layouts that maybe don't use a home page landing area. Current Behavior: Announcements are sent out via email and displayed in the announcements area which is great! Let's build on that!Benefits of this idea: Adds value by displaying important messages up front to your users. Provides immediate impact through more visible messaging.Expiration date of important message display allows easy administrative management.Utilizes existing announcement setup to take advantage of targeted audi
Hi Team,I'm looking for guidance on implementing UI testing specifically for our AEM dispatcher layer and would appreciate your insights.Is Cypress the right tool for dispatcher-level testing in AEM, or are there better alternatives specifically designed for this use case?What are the pros/cons of using Cypress vs other testing frameworks (like Selenium, Playwright, or AEM-specific tools) for dispatcher testing?Thanks,Geo
Hi, I have been working on a calculated field that grabs the Planned Start Date from a form and then converts it to an abbreviated version of the fiscal year that date is in. Here's my code: IF(DATE({plannedStartDate})>=DATE(9/1/2023) && DATE({plannedStartDate})<=DATE(8/31/2024), "FY24", "") ||IF(DATE({plannedStartDate})>=DATE(9/1/2024) && DATE({plannedStartDate})<=DATE(8/31/2025), "FY25", "") ||IF(DATE({plannedStartDate})>=DATE(9/1/2025) && DATE({plannedStartDate})<=DATE(8/31/2026), "FY26", "") ||IF(DATE({plannedStartDate})>=DATE(9/1/2026) && DATE({plannedStartDate})<=DATE(8/31/2027), "FY27", "") ||IF(DATE({plannedStartDate})>=DATE(9/1/2027) && DATE({plannedStartDate})<=DATE(8/31/2028), "FY28", "") ||IF(DATE({plannedStartDate})>=DATE(9/1/2028) && DATE({plannedStartDate})<=DATE(8/31/2029), "FY29", "") When I do this, the field just shows "false". What am I missing here? Thank y
Can someone please explain what is the difference between Contribute and Manage access in Workfront? Thanks!
I've used a JS activity to query the recipients, and also extract the IDs.I need to to this to apply some logic to sort them randomly, and apply some other logic to them. (After that, I need to split those in halfs and save them into different lists), in order to them to them different emails, sms, or pushs.So how to create a list using JS, let's calle it "my_list" and then insert the recipients into it?var query = NLWS.xtkQueryDef.create( <queryDef schema={"nms:recipient"} operation="select" lineCount="999999999"> <select> <node expr="@id"/> </select> </queryDef> ); var res = query.ExecuteQuery(); var recipients = res.getElementsByTagName("recipient") var allRecipients = []; for each (var r in recipients) //logInfo(r.getAttribute("id")) allRecipients.push(r.getAttribute("id")) // Mezclar el array aleatoriamente para el A/B testing allRecipients.sort(function() { return 0.5 - Math.random() });.
I've seen a few posts attempt to address this topic, but most are a few years old and may not reflect current browser behaviors.Recently, we encountered an issue on our AEM website where hidden field values in forms were not being submitted consistently. After some investigation, we discovered that the problem varies depending on the browser version being used. Importantly, this is not a Marketo issue—it's related to how certain browsers handle hidden fields.To better understand and diagnose the issue, I’d like to generate a report that shows the user agents (i.e., browser and version information) of users who submit a specific form, identified by its Form ID.My Question:Is there a way to create a report that captures and potentially filters the browser versions users are using when submitting a particular form?
Our master data is in english, but when user switches the language preference to lets say Chinese or Japanese, user should be able to view the metadata in preferred language. What could be the best way to translate Asset Metadata Schema dropdown values? We see this happening for Language field and IPTC Scene code in the schema.
Hi everyone,we're migrating to AssetsCS and Dynamic Media with OpenAPI. Currently, when updating assets (e.g., due to product changes), we first modify the asset files, update the content, and then publish everything together.From my understanding, with the new Dynamic Media with OpenAPI, updates are reflected in real-time in the delivery URLs. This creates a timing challenge, especially when handling potentially hundreds of updated assets and pages.Is there any OOTB Adobe functionality or workaround to address this issue?Thanks a lot!
Is there an email notification that can be scheduled to alert me of a successful file upload and ID sync status in Target? For example, if I want to regularly upload a data file from my CRM system into Experience Cloud to use as an audience within Target, how will I know this has been successful in order to give the go ahead to the CRM team to run their campaign? Do I have to login every day to check or is there another way?
Hi @8695269/ Adobe Technical Support Team,I hope you're doing well.I am unable to save an existing activity after making modifications, as it throws an error "Invalid user input". This issue has been observed following the VEC updates by Adobe. The Adobe Target Standard/Premium 25.2.1 release (February 17, 2015) introduces an updated Visual Experience Composer (VEC). Please refer below screenshot:
Hello professionals,I would like to get suggestion from others what could be the root causeScenario:We use First Touch attribution, in implicit model. In Program Opportunity Analyser I isolated a single opportunity as an example - see attached. Opportunity has 1 contact role (should not be relevant) and linked account has 60+contacts. I can see many programs have been linked to the opportunity, but when I sum the credits it just does not adds up.How is it possible sum is 6? Shouldn't single opportunity credits always adds up to to 1?Why some rows are included, even though their attribution is 0? Is it because those are from contacts in the account that were maybe acquired AFTER that opportunity was created?If there are 60 contacts, shouldn't one credit be 1/60 = 0.017. Therefore I find associated 1.77 and 0.47 very suspicious Any advice?Am I misinterpreting the First Touch results? Or is it a bug?
Hi, for schemas it's working fine but can we used also for attributes ?
Hi Is it possible to apply ACL permissions to a metadata property specifically in the asset view as the admin view and asset view does not sync and are considered separate metadata schemas?
I updated org.apache.zookeeper from 3.4.6 to 3.9.2. I even added its dependencies in the pom and also tried using Embed-dependency however my bundle is in installed due to few unresolved errors. Could someone guide on how to fix them?
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.