Explore product-specific spaces to ask questions, share insights, and learn best practices.
Recently active
I'm trying to create a property field ("text") inside my block. However, the field did not render as expected. Is there something missing from my json file?{ "definitions": [ { "title": "Credit Cards", "id": "credit-cards", "plugins": { "xwalk": { "page": { "resourceType": "core/franklin/components/block/v1/block", "template": { "name": "Credit Cards", "filter": "credit-cards" } } } } }, { "title": "Credit Card", "id": "credit-card", "plugins": { "xwalk": { "page": { "resourceType": "core/franklin/components/block/v1/block/item", "template": { "name": "Credit Card", "model": "credit-card" } } } } } ], "models": [ { "id": "credit-cards", "fields": [ { "component": "text", "name"
Hello Community,We have encountered an issue with the AEM Target integration, specifically related to saving and syncing activities in Target. We are receiving an error that does not seem valid in our case, as we have already referenced the audience with the offers/experience. Additionally, the same API integration works in other environments.We have also verified the permissions for the target group/service account for the relevant paths. Even after restarting the Test and Target bundle, the issue persists. Can someone advise what might be causing this issue and what fix is required to address it? Our AEM version is 6.5 SP22. We are using the out-of-the-box experience fragment component. We also tried using other components, but still had no luck. Verified the following areas:API integration has approver and editor privileges.Cloud service connectivity is in place.Cloud service configuration is updated in the root page.Able to pull audiences from Target.Test and Target replicatio
We need to support a new language - Montenegrin with the code as - cnr-ME.Can AEM even support it? By checking some of the existing language codes, what I see that aem can support 2 letters like "fr" or 5 letters like "fr-FR" but not 6 letters. I tried adding the language code under - /apps/wcm/core/resources/languages/.content.xml but it is still not getting resolved and we get the null value.Any insight will be helpful.Locale locale = LanguageUtil.getLocale("cnr-ME");System.out.println(locale); // prints null instead of cnr_ME<cnr jcr:primaryType="nt:unstructured" country="*" defaultCountry="cnr_me" language="Montenegro"/><cnr_me jcr:primaryType="nt:unstructured" country="Montenegro" language="Montenegrin"/>
I created a new A/B test and added modification code (Mbox code) under Experience A using the Custom Code option. The changes saved successfully in the VEC editor.However, during validation:Experience A delivers nothing (and appears empty in the VEC editor).Experience B, where I did not add any code, is unexpectedly delivering the Mbox code. The Mbox code is appended on Experience B, and when I open the VEC it shows up there.Has anyone faced this issue before? How can I resolve it so that the custom code applies only to Experience A?
Tried to include custom rewrite file in a wknd project dispatcher in two ways including a call to custom rules file in rewrite.rules file and another way is including it using vhost.Both ways gave error in validation step in local.Please advice Thankyou
Hello,I 'm sending the adobe page name , one on page load and another on a success api call, in the same page.But in the adobe tracking tool i only see a single page name under Report Suite(s) column, [xyz-TAG-1].but under the network section i see 2 columns where i see the 2nd TAG in Page Name coumn -[xyz-TAG-2].but under the Adobe analytics i do not see the [xyz-TAG-2].is this. a known issue or is this the expected behaviour , also are both the page names are received in the tracker?
Hi All, I am trying to use CSV Assets Importer for our UAT environment, and I am getting an error message, and my assets are not being imported.I am using a NAS server that is connected to our UAT environment, where people go inside the folder create their own folders and drop their files inside. I have to get those files and then export them into AEM.
I want to select only 'Queue Properties & Issue Setup' when attaching the project template using Fusion.What should I enter in the 'Options' field in the Fusion module?
Hi Everyone Hope all are staying safe and healthy!Has anyone taken the AD0-E117 Architect certification recently. Please let me know. Thanks
Is it something like that possible to sent to email address which is not marked as identity?
Hi All,I've got a Workfront webhook as the first module of a Fusion scenario. The scenario is meant to run when the Home Team of an active Workfront user is updated - but it's not working.Here's how it's configured:Record type: User State: New state Filters: HomeTeamID Changed AND IsActive EQUAL true AND connection updates included Record Origin: Updated Record OnlyWhen I update an active user's Home Team, the webhook is not called so the scenario does not run.I did some testing and figured that the issue is caused by the filter IsActive EQUAL true.If I create a webhook withouth that filter, it just works fine. (Obviously it is also called when an inactive user's Home Team is updated - which is not what I want.)Record type: User State: New state Filters: HomeTeamID Changed AND connection updates included Record Origin: Updated Record Only Can someone please tell me what is wrong with this filter?Thank you,Tibor
If the user logs out then I should use that method in order to clear Identities?https://developer.adobe.com/client-sdks/home/base/mobile-core/identity/api-reference/#resetidentities
If a user completes their part of a multi-person assigned task, that user's full planned hours still shows in Workload Balancer, even when the settings for show completed work is turned off. I guess this is since the task isn't fully complete that time is still showing. Is there any way to prevent time from showing in workload balancer for the user who has completed their portion of a task, when the task is still open due to other's outstanding work? Thanks
Hello, We often hear about the push to AEM Cloud for its new features and scalability. But what are some real-world situations where sticking with AEM Managed Services (AMS) actually makes more sense? Beyond just 'confidential data,' what are the practical, day-to-day reasons why an organization might choose AMS over Cloud? I'm curious about those less-obvious advantages. Since, Cloud or EDS is not best-fit-for-all, shouldn't Adobe plan innovations on AMS too? Any insights if something is already in roadmap?
Hi All, I am trying to disable cache for HTML responses. I have these rules already in dispatcher config, <LocationMatch "^/content/.*\.html$">Header always unset Cache-ControlHeader always unset ExpiresHeader always set Cache-Control "no-store, no-cache, max-age=0, must-revalidate"Header always set Pragma "no-cache"Header always set Surrogate-Control "no-store"</LocationMatch> However, when I check response headers I still see this: cache-control: no-store, no-cache, max-age=0, must-revalidate,max-age=300 It looks like max-age=300 is being appended somewhere. I want to know from where this default Cache-Control: max-age=300 is getting added? What is the recommended way to override / remove this so my own no-cache rules are effective? Thanks in advance !
We have a requirement of building functionality to show paginated list of users by the given filter criteria. Some of the filter criteria we have already achived by directly querying users from /home/users. We are facing difficulty in two filter criteria1) Find user by group name2) Find user by directory read access. We are unable to create query or anything that can support this requirement and returns paginated list of users. Following is our code so far. StringBuilder queryBuilder = new StringBuilder("SELECT * FROM [rep:User] AS u WHERE ISDESCENDANTNODE(u, [/home/users])"); if (StringUtils.isNotBlank(criteria.getUserId())) { queryBuilder.append(" AND (u.[rep:principalName] LIKE \"%").append(criteria.getUserId().trim()).append("%\")"); } if (StringUtils.isNotBlank(criteria.getUserMail())) { queryBuilder.append(" AND (u.[profile/email] LIKE \"%").append(criteria.getUserMail().trim()).append("%\")"); } if (StringUtils.isNotBlank(criteria.getCompanyName())) {
We are observing unexpected and malformed values in the App Advertiser ID within the Adobe Analytics data files associated with the mobile apps report suite. This issue appears to have started on September 17, 2025. It is very odd and I am trying to investigate but it is tough. Can someone please guide me what could be the issue? Is it an Adobe outage issue? Please see attached screenshot.
Guys, I am failing to get an idea what will happen to my current Nation profile once I move to a new Marketo instance (with new login details). How will I be able to login to the current profile :?
Hi all, does anyone know whether ChatGPT and other AI crawlers are currently already included in the IAB bot list? We're currently having the IAB bot list feature enabled, and are capturing the user agent of incoming traffic, and as far as I can see there are not "openai" user agents captured https://platform.openai.com/docs/bots/ Just wondering since our business stakeholders would be interested in getting the bot crawler traffic through, and the WAF is already opened up to let that kind of traffic through. Is there actually a way to unblock a certain browser in the Bot rules that may be included in the bot list?
Once the request queue is submitted along with a few custom forms, we need to restrict any further modifications to the custom form fields. A business rule logic should be implemented to ensure that only the custom forms are restricted post-submission, while other fields such as overview, status, etc., can still be edited
Brand new to Workfront and learning the different complexities of the reporting. Is it possible to create a report (or view) that only shows Programs that do not have a project with the word "Planogram" within it? I believe I'll need to use Text Mode for creating this filter, but wasn't successful when I used the below. EXISTS:A:1:project:ID=FIELD:IDEXISTS:A:1:project:name_Mod=notcontainsEXISTS:A:1:project:name=planogram Any advice or suggestions is greatly appreciated!
Hello everyone, I'm looking to migrate from an old, headful CMS to AEM Headless. The database of our current headful CMS is PostgreSQL 15, and the content is marked up with a proprietary template. We plan to distribute information to multiple devices, such as native apps and IoT devices, and therefore want to use GraphQL.Does anyone have information on how to migrate from a third-party CMS like this? I understand that the Content Transfer Tool (CTT) is for data migration between AEM instances, but what's the best practice for migrating data from another CMS?https://experienceleague.adobe.com/ja/docs/experience-manager-cloud-service/content/migration-journey/cloud-migration/content-transfer-tool/overview-content-transfer-tool Thanks.
Why multiple are set as default? I know that these are system ones
Consider dataStream have 10 fields from profile enabled schema. is there a way to restrict few fields in AEP dataLake ingestion, while getting all fields forwarded to other service such as Adobe Analytics ? So out of 10 fields , only 3 fields goes into dataLake but all 10 field goes into adobe analytics ? IS this even a possibility, I dont find any filtering feature in data mapping UI.
What (The Issue):We’re creating a proofing report to track proofs that are taking the longest to get approved. As part of the report, we’ve added a calculated field called “Total Number of Days”, which shows the number of days from the proof’s creation date to its approval date.However, we’re running into a problem: we can’t sort this field when using text mode, as sorting doesn’t seem to behave correctly.Why (The Goal):The goal is to highlight proofs with the longest approval times at the top of the report. This would help stakeholders quickly identify bottlenecks and take action. Sorting by the total number of days is a key part of making this report useful.How (The Challenge / Request):Since we’re using text mode to customize the report, it seems to be blocking standard sorting functionality, especially for calculated fields like “Total Number of Days.”We're looking for suggestions, workarounds, or best practices to enable sorting on this calculated field while still using text mode
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.