Explore product-specific spaces to ask questions, share insights, and learn best practices.
Recently active
Hi Adobe Community,I’m working on an AEM component that includes:A dropdown with 8 options.7 fields in total, out of which 4 fields are common for all 8 dropdown options.For 7 of the dropdown options, there is an additional common field (let’s call it Field A).For the 8th dropdown option, I want to hide Field A (the extra field common to the other 7 options) and instead show 2 different extra fields that should be hidden for the other 7 options.Additionally, inside this component, I have a multifield that follows the same conditional logic as described above for its fields and dropdown options.My questions are:How can I implement this conditional showing/hiding of fields based on the dropdown selection within the component and multifield?Why are the dropdown values not storing correctly in CRXDE? After submitting the dialog and reopening it, the values seem to change unexpectedly. What might be causing this issue?I would appreciate any guidance or best practices for setting up su
Hello Everyone,We recently started offering our forms as HTML5. We upload the templates (.xdp) into AEM and then provide the rendering links to third party apps, who click it and launch the HTML form. We use some custom fonts on these forms while designing the XDP. For example customerfonts.ttf and customerfonts-cond.ttf (condensed version of the font). We are able to view the HTML forms perfectly on Windows machines. However, on Mac, we notice the customerfonts-cond.ttf appears everywhere we used the regular customerfonts.ttf. As per Adobe documentation, we made sude, the fonts are available on the server under /opt/aem/publisher/crx-quickstart/fonts directory. Also, tried Gibson font configuration but after configuring this, the fonts stopped appearing on Windows machines as well. Not sure what is causing this behavior and hence reaching out to you all.Thanks,Abhishek
hello all Is it possible to pass/fire multiple events against a the one trackAction? In this case an interaction and an additional event using a.action coupled with &&products.Specifically, we are tracking an interaction via trackTask with the addition of setting a named event via a.action against &&product However, when reviewing Assurance, we are seeing the app interaction evar and event fire/count as expected. We can also see the &&product set correctly but we do not see the associated event number count, we only see the count for interaction event. I wonder if this is a limitation whereby a trackTask can only count one event. I can confirm we have setup processing rules with the event coupled with the condition of a.action(Context Data) equals 'Any of' of the event name I hope that makes sense thank you all
Hi, Is it possible to get refresh token in ACS? When I made POST call based on the cURL generated in developer console, it is only providing me the access token, also is it possible to use Refresh token for Authorization or it can be only used to generate new access token? Thanks!
Hi, I am seeing a failure in HTTP API streaming ingestion - error message is - ECID not found (ECID is a primary identity). Does HTTP API automatically retries to send the payload? If yes, how many times it retries before stopping. Please let me know. Thanks,Meenal
Hi team, I'm new to AEM and got no prior experience. I just created an environment and repository through Cloud Manager, deployed the out-of-the-box code that came with the repo, expecting it to pass without issues. However, the functional tests are failing—even though I haven't made any changes yet. Hope someone can enlighten me. TIA Attaching the logs below for reference: 2025-07-01 05:30:01,595 [INFO] Scanning for projects... 2025-07-01 05:30:02,975 [INFO] 2025-07-01 05:30:02,975 [INFO] -------------< com.adobe.evergreen.eaas:eaas-test-runner >-------------- 2025-07-01 05:30:02,976 [INFO] Building EaaS tests runner 1.0.0 2025-07-01 05:30:02,976 [INFO] from pom.xml 2025-07-01 05:30:02,976 [INFO] --------------------------------[ jar ]--------------------------------- 2025-07-01 05:30:03,196 [INFO] Downloading from shared: file:///shared/m2-repo/com/adobe/cq/cloud/com.adobe.cq.cloud.testing.it.smoke/0.21.7/com.adobe.cq.cloud.testing.it.smoke-0.21.7.pom 2025-07-01 05:30:03,28
Hi All, We are trying to display the checkbox (left side) of field label. While loading the Marketo FORM in Landing page (via embedded form) we able to see field label as twice instead of 1 time. Note : We have used FORM as embedded in Landing page Meta Tag section. Please find the below screen shots (followed the below steps) for reference. Final output: We expect to display only the GREEN highlighted area. But we able to see additional label. Kindly let me know if any additional script needed to avoid to display the label as twice. Regards,Ragu
Hello all, Is there a way to get response tokens (profile properties) in the response body of mbox calls that don't return any qualifying A/B tests ?
We only have Target at our disposal.I would like to combine two audiences:1. Current session - easyComes from Google + landing page contains "real-estate" 2. Past session - not sure if feasible without AEP, AAM or AA Session from > 7days , comes from Linkedin (utm) and landing page parameter also contains "real-estate" Is Target able to keep events from past sessions? Going through documentation most parameters are about current behaviour
My customer has a license 7 milion profiles. Does this mean that total sum of profiles on all of these sandbox'es needs to be smaller than < 7 mil? Does this mean that default production could be 7 mil and I can have for Stage/UAT 3 mil of these 7 in order to test?
when a new field is introduced in the schema after it already been enabled for the profile and have the data ingested, how do we ingest the historical data for newly introduce field ? One approach I am ware is create a new dataSet with primary key and new field, and then use that dataset to ingest both historical and incremental data. however this approach may not be scalable, if we introduce new field every quarter, then it would lead to multiple dataset
As (Beta) Google Ad Manager 360 connection | Adobe Experience Platform is still Beta, is there anyone using it right now and interested in sharing their thoughts? Any limitations that you experienced, that came up while using it? Thanks a lot and best wishes. Björn
Hi All,I'm having trouble understanding a fundamental AEM concept and could use some guidance.I have a configuration folder for the config.local.author runmode.I want to exclude this folder from deployment so that any changes made via the OSGi Configuration Manager are retained and not overwritten during code deployments.This is my filter.xml:<?xml version="1.0" encoding="UTF-8"?><workspaceFilter version="1.0"> <filter root="/apps/fc2/osgiconfig"> <exclude pattern="/apps/fc2/osgiconfig/config.prod" /> <exclude pattern="/apps/fc2/osgiconfig/config.perf" /> <exclude pattern="/apps/fc2/osgiconfig/config.qa1" /> <exclude pattern="/apps/fc2/osgiconfig/config.qa2" /> <exclude pattern="/apps/fc2/osgiconfig/config.local.author" /> </filter></workspaceFilter>I expect that the changes made on the local author instance via config mgr will be retained, and the configuration provided in the code sho
Hi TeamI am working on AEM assets. Currently when an asset is expired, we are getting a flag mentioning asset is expired. I have identified it is coming from /libs/dam/gui/coral/components/admin/contentrenderer/card/asset/propertyList.jsp so I have overlayed to /apps/dam/gui/coral/components/admin/contentrenderer/card/asset/propertyList.jsp I want to understand how the below line is resolved so that I can get expirydate and display it when I hover over flag icon. boolean isAssetExpired = request.getAttribute(IS_ASSETEXPIRED) != null ? (boolean) request.getAttribute(IS_ASSETEXPIRED) : false; Kindly suggest @amitvishwakarma @aanchal-sikka @santoshsai @adilos-cantuerk @lukasz-m
Folks, need some suggestions, we are looking to migrate around 500GB of content from on-prem AEM to 3rd party tool preferably azure, the content is about 500GB and we want to preserve all our versions of our assets and documents. what is the best way to approach this?, when we migrate to 3rd party tool or azure, we want the content to be available for atleast 10Yrs.
I am experiencing an issue in AEM (version 6.5.9.0) when I click the Add Variable button in the Workflow, no dialog appears at all. The UI does not respond or show any window for adding variables.I checked the browser console and found the following two errors:Handlebars.compile is not a functioncomponentTemplate is not a functionPlease can you advise if you know how to resolve this?Thank you for your time.
Hi,I am trying to add an additional multiselect dropdown field to the 'Create Workflow' dialog but I am running into issues creating an overlay for /libs/dam/gui/content/commons/createworkflowdialog. I've setup the structure under /apps, but when I try to copy/paste the createworkflowdialog node, I am getting this error: I've also tried the "Overlay Node ..." but that fails to overlay as well. I have found that I can slightly get around this if I create the node in my codebase and add a custom .content.xml, a cq_dialog folder, a .content.xml under the cq_dialog folder with all the information from the libs createworkflowdialog, however if I try to do it that way, the dialog fails to render at all. How have folks set this up in the past? What configurations where necessary to get the overlay to work to add an additional field to this dialog? I've additionally attempted to overlay /libs/dam/gui/content/assets/jcr:content/actions/selection/create/items/createworkflow
i have recently installed new project arch in my laptop but while i was creating a new page i am unable to see default templates and core components in AEM mvn -B archetype:generate -D archetypeGroupId=com.adobe.aem -D archetypeArtifactId=aem-project-archetype -D archetypeVersion=53 -D appTitle=NikhilAEMProject -D appId=nikhil-aem-project -D groupId=com.mycompany.aem -D frontendModule=general -D includeExamples=y -D includeDispatcherConfig=y -D includeFormTemplates=y -D includeErrorHandler=yand also getting error while creating page can some one help. me here
Hi Team, I want content package to move to aem as cloud in DEV env.But crx and package manager is not accessible there. As i am new to cloud .kindly suggest what is the preferred way to move this content from local machine to dev cloud
Hi All, I'm gearing up for the AEM 6.5 (AD0-E126) certification exam. Could someone kindly recommend reliable and up-to-date study materials for this certification? Can you confirm if there are two certifications available for Business professional like earlier, it used to? Thanks you in Advance for help!NM
Hi , we are facing one issue with Manage publication.Steps : Selected parent page and then clicked on Manage publication and then clicked on include children option (All)on Chrome : All Child Pages gets added without any issue. on Safari browser : few child pages gets skipped and throws exception as Selected resources are not valid. (results are also inconsistent )Page count is only 22. Attached screenshot.
Hello @everyone,After installing a service package through the AEM Package Manager, my AEM instance fails to start properly. It was working fine before installing service-pkg.My System Setup:Java: 17.0.12 (LTS)Maven:3.9.9Node: v14.15.4NPM:6.14.8 Would appreciate any pointers or troubleshooting tips!Thanks
Hi @16227148, I'm exploring Interactive Images in AEM — specifically the feature where you can enhance static images by dragging and dropping “shoppable” hotspots to create rich, engaging experiences. I have a few questions:Is this Interactive Images feature available only in AEM as a Cloud Service, or can we use something similar in local AEM SDK (e.g., AEM 6.5)?What’s the authoring workflow like? Can authors add interactive hotspots using the standard authoring interface?Are there any official Adobe articles, documentation, or tutorials that explain how to implement or configure this?If this is a Cloud-only feature, are there any alternatives or custom implementations that can be done on-prem/local?I’m looking to create something similar to shoppable images — where clicking a hotspot reveals product info or links to PDP pages. Any guidance or links to relevant docs will be really helpful! Thanks in advance! 🙌
Within a translation project, the status presented on the translation job's title is Ready for Review, while the items (sites or assets doesn't matter) in the job are all Approved and other workflow actions tied to the job's Approved status are triggered as well. So it seems like just a visual error, as everything works smoothly in the background, only the status is not what it is. Is this something that can be fixed by me, or maybe is it a bug in AEM?
I labeled Target destination like that - "Onsite Personlization": Then I tagged audience like that:C4 - No targeting of any typeC7 - No on-site content targeting However I still was able to activate this audience: Why I was able to activate that audience? Am I missing something?
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.