Explore product-specific spaces to ask questions, share insights, and learn best practices.
Recently active
Hello All,I have a requirement I.e in the higher env's whenever someone login using local option then if he entered the incorrect credentials then the particular account should be locked for some particular time.How to achieve this, any suggestions on this. Thanksvenkat
Hi All, When we upload an image in DAM, it allows the uploading of image with extension (.png /.jpg). But when we try to modify the name with the Move operation we get error that ". is not allowed" as it contains an extension. If we remove the extension, then it is allowing us to modify the name, but in pages, the usage of the existing extension will break. Please let me know anything we are missing in this case?
My custom bootstrap connector (forked from this) produces this error running on AEM Cloud: com.adobe.granite.translation.connector.bootstrap.core.impl.BootstrapTranslationServiceFactoryImpl Error while resolving config resourcecom.adobe.granite.translation.api.TranslationException: Error getting Cloud Config credentials The configuration is there in conf/global and interestingly it works in one environment but not in an other. The error message refers to this function: public BootstrapTranslationCloudConfigImpl(Resource translationConfigResource) throws TranslationException { log.trace("BootstrapTranslationCloudConfigImpl."); Resource configContent; if (JcrConstants.JCR_CONTENT.equals(translationConfigResource.getName())) { configContent = translationConfigResource; } else { configContent = translationConfigResource.getChild(JcrConstants.JCR_CONTENT); } if (configContent != null) {
We have site pages under project "/content/project/en/us/page-1" , and some of these page have components that fetch content from content fragments under "/content/dam/project/cfs/CF-1" While creating an AEM > Sites > Launches (<server>/libs/launches/content/launches.html ) , we are able to add Pages, Experience fragments etc., but DOES NOT SHOW OR LET US browse to or show anything "/content/dam" (below). Is there a work around? And/or are we missing anything?
Hi, I am trying to extract & download list of dam images which are not references in pages. I have used ACS Commons Renovator tool as shown below but I am able to view the list and when I click on download button it is throwing an error can some one help me why is this happening. h1>Error during requesting: '/var/acs-commons/mcp/instances/7A538F48479294AD/_jcr_content/report.xlsx'<h3>Error Message:</h3> <pre>java.lang.NoSuchMethodError: org.apache.poi.xssf.usermodel.XSSFColor.&lt;init&gt;(Ljava/awt/Color;)V</pre><h3>Processing Info:</h3> <table style='font-family: monospace'> <tr><td>Page</td><td>=</td><td>/var/acs-commons/mcp/instances/7A538F48479294AD<td></tr><tr><td>Resource Path</td><td>=</td><td>/var/acs-commons/mcp/instances/7A538F48479294AD/jcr:content/report<td></tr><tr><td>Cell</td><td&
Author: Abhinav Puri @abhinavpuri Introduction Personalization is the process of creating a tailored web experience for every visitor on digital properties. When a visitor is reading something that is customized based upon their interest or actions, they are more likely to stay longer on site. The increased engagement from the user is a foundational step in driving them down the sales funnel and towards conversion. Online web personalization is no different than the traditional offline world, where we visit our regular barbershop and he greets us with our name and understands our requirements. Adobe Target is a mighty tool for customer experience personalization powered by the “edge” network. It is a geographically distributed server architecture that is designed to ensure low response times regardless of the user location around the world. Methods To Get Data Into Adobe Target Adobe Target has multiple methods built-in to track user attributes and actions for targeting opti
HiI have created a sample AF that allows you to save and resume filling out the adaptive form. The form data is stored and retrieved from Azure storage.Make sure you enter a valid e-mail address and then click on the Save Form button to get an e-mail to the formI will be providing the sample assets soon, but in the meantime if you want to try the functionality you can access the form here
Is there a way to configure override last touch value in CJA similar to that of adobe analytics ? How does the last touch channel attribution work for below use case? Marketing channel derived field:- if utm source equals “email” then “email”- if referrer contains “facebook/instagram” then “social”- if referrer contains “abc.com” then “Internal”- otherwise set value to “direct” use case: new user visit home page website via email(utm_source) -> user navigates to product page -> add to cart page -> checkout page(purchase) What would be the last channel attribution for the purchase? Email? Direct?
Assets Essentials Vs AEM Assets As Cloud by Adobe Experience Manager Tutorials Abstract Assets Essentials Vs AEM Assets As Cloud Recently Adobe launched Assets Essentials. Let us take a look at the difference between Assets Essentials and AEM Assets and find out which suits customers. Assets Essentials is a lightweight version of Adobe Experience Manager Assets with a simplified user experience for marketing and creative pros to store, discover, and distribute digital assets across teams. This is designed to help brands connect more agile users with the digital assets they need to deliver rich customer experiences. Assets Essentials is cloud-based and enables customers to start with essential asset management capabilities and seamlessly upgrade to the advanced enterprise DAM, AEM Assets, as their business needs grow. Assets Essentials is the new default asset management UI for Experience Cloud. Assets Essentials will serve as the default asset management experience across Experienc
IntroductionIn today’s fiercely competitive digital marketing landscape, delivering hyper-personalized and engaging customer experiences is the key to retaining customers, driving business growth, and creating brand loyalty. Adobe Journey Optimizer (AJO) has been an indispensable tool for marketers looking to create and manage customer journeys based on individual behavior and preferences. However, as businesses scale their marketing efforts, the need for more sophisticated personalization techniques becomes a must-have. Enter large language models (LLMs), such as OpenAI’s ChatGPT, which can generate human-like text responses tailored to specific inputs, enabling marketers to create truly contextually relevant and engaging customer interactions at scale. In this post, we will explore how to effortlessly integrate LLMs into Adobe Journey Optimizer for unparalleled hyper-personalization that sets your brand apart from the competition. Use Cases & Examples of Hyper-personalized Custom
Hi, We have a Vanity URL setup at page level on AEM and with the default settings, it works fine.https://helpx.adobe.com/experience-manager/kb/ams-dispatcher-manual/disp-vanity-url.html I also have a "resource mapping" setup to define redirects, and vanity URLs so that the internal structure of AEM content is hidden from the visitors. To achieve this, I have set up a passthrough redirect at the dispatcher's end (similar to https://github.com/adobe/aem-guides-wknd/blob/main/dispatcher/src/conf.d/rewrites/rewrite.rules#L21-L32). Due to this scenario, vanity URLs are getting 404 though there are part of vanity URL file. Is it possible to exclude vanity URLs from these redirects or is any alternative solution available?
In programming slang, a footgun is a prominent feature that’s so easy to misuse — to shoot yourself in the foot — that everyone should be wary of it, even if it has proper uses. Perhaps a bit strong to describe the form.submittable(true) method of the Forms 2.0 JS API. Yet that method is used incorrectly the majority of the time (including by yours truly!) so let’s see how to use it right. You typically see form.submittable(true) used like so: MktoForms2.whenReady(function(readyForm){ readyForm.onValidate(function(isNativeValid){ if(!isNativeValid) return; const currentValues = readyForm.getValues(); readyForm.submittable(false); if( currentValues.FirstName == "Santa" ) { readyForm.submittable(true); } else { readyForm.showErrorMessage("Must Be Santa"); } }); }); That’s a basic custom validation function: if(!isNativeValid) makes sure the na
AEM - How to configure NetCentric AC Tool with AEMCaaS ? by Veena Vikraman Abstract It's time for #AEMGyaan. I know it has been a long time since we met. I hope all of you are staying healthy and safe. Wish you a very happy 2022. Let's hope and pray only the best for all of us this year. If you are as new to AEMCaaS as me, then you might/have struggled at some point to figure out a lot of things. The concern is that there are not a lot of tutorials yet available out there. We have to spend a lot of time searching and stitching together the information to solve our issues. One such topic is migrating the user permissions. Migrating users and permissions are always a troubling issue for all of us. And the best solution so far for the same is NetCentric AC Tool. You can find a lot of blogs on the same. I am listing a few below. Perficient has a good set of blog posts that helps you understand all about Netcentric and YAML files. Post 1 - Getting started with Netcentric tool - https://blo
Introducing Top KCS Articles, Curated For Your AEM Troubleshooting Pleasure! by @kb_author Dear AEM Community, Your time is precious, and we understand the importance of efficiency when it comes to troubleshooting issues with AEM. That's why we're excited to introduce our carefully curated collection of Top KCS (Knowledge-Base) Articles, 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 AEM.Streamlining your troubleshooting process for maximum productivity.Empowering yourself with the knowledge to tackle any AEM-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 – empowering you to provide a truly personalized experience to your custome
Watch Now Join Adobe Champion Meghan Powers as she demystifies the implementation process of the Adobe Web SDK. In this insightful webinar, Meghan will guide you through her team’s strategic step-by-step approach, detailing pre-implementation preparations, the implementation phase itself, and post-implementation strategies. Gain valuable insights into best practices and potential challenges to navigate.This webinar is tailored for all audiences, offering practical advice devoid of technical jargon or code snippets. Whether you're a marketer, analyst, or strategist, this webinar will equip you with the knowledge to optimize your use of the Adobe Web SDK.
We currently have next generation dynamic media set up, and we're trying to do some custom work for PDFs. What we're not sure about is how to get the proper link for PDFs. Our assets come from a delivery URL like this:delivery-p12345-e12345.adobeaemcloud.com/adobe/dynamicmedia/deliver/urn:aaid:aem:12345678-1234-1234-1234-123456789abc/Report.pdf This loads the first page just fine, but it doesn't allow users to view the rest of the pages or download the pdf. Appreciate any help or links to documentation. Thanks!
I would like to add Highcharts libraries in AEM client libs. Receiving this "Uncaught ReferenceErro: Highcharts is not defined" Please help me to resolve this issue. Thanks in Advance.
I am facing compilation error after upgrading uber jar version from 6.5.0 to 6.5.15. Updated Uber jar<dependency> <groupId>com.adobe.aem</groupId> <artifactId>uber-jar</artifactId> <version>6.5.15</version> <scope>provided</scope> </dependency> After updated uber I tried to compile the code but ended up with below error, [ERROR] COMPILATION ERROR : [INFO] -------------------------------------------------------------[ERROR] ImageRender.java:[326,42] cannot access org.apache.poi.ooxml.POIXMLDocument class file for org.apache.poi.ooxml.POIXMLDocument not found I thought the latest version removed this org.apache.poi.ooxml.POIXMLDocument so I manually added below dependency to resolve the issue <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>3.17</version>
Adobe DITAWORLD is back with a stellar roster of inspirational speakers from global brands. From expert sessions to product sneaks around Adobe Experience Manager Guides - discover what's brewing in the world of technical communication at DITAWORLD 2024.Here’s why you should attend:Customer stories with real world business impactGenerative AI in technical communicationBest practices in structured content managementRegister now for free
I just want to call aem ootp api like '/libs/wcm/core/content/reference.json' by java code in author. Are there any convenient ways to do this?
Details Discover the exciting features and innovations in the latest release of Adobe Experience Manager (AEM) Cloud Service, version 2024.04.0. The features in this release focus on Experience Manager Forms, Assets, and Cloud Service innovations and include the following: The features in this release focus on Experience Manager Assets and Cloud Service innovations and include the following: AEM Assets: 1-click asset/ folder rename in Assets View Simplified search experience using natural language Preview Dynamic Renditions including Smart Crop from Assets View Edit Videos easily within AEM with Express Quick Actions Cloud Manager: CDN optimizations and tuning Self-serve configuration of version purge and audit log purge maintenance tasks Extend log streaming to vendors beyond Splunk, with self-serve, dedicated IP support CDN support for ESI, also via SDI Improved Java logging experience for RDE Release Overview Video Watch the comprehensive release overview video to ge
I try to publish an adaptative form, I am using Adaptative Form Embed Component in a page, when I got to the publish instance I just see the page but not including my adaptative form, does someone know what could be the reason? thanks in advance.
Use this thread to ask any questions related to the Analytics part 3 - people charts and use cases course in Experience League. Experts are monitoring this thread to ensure your questions are answered.
Hi @1905403RVP or conversion rate what type of question getting on this? documents or links if you get please share
Additional note for 2024: please note that the post below was applicable for a beta version of Home which did not include the option to opt your entire instance into Home. At the time, admins were concerned over the usage and control of the beta Home product, so I developed the filter below as a way to help these discussions or to help alleviate the concerns. Since this post, Workfront has provided the option to opt in your entire instance, and over time, will probably change more. I'm leaving the post below because it still is a really good teaching tool for exists statements and user preferences -- but it should not be considered as a reliable way to indicate who is or isn't Home. Based on a prior post here: https://experienceleaguecommunities.adobe.com/t5/workfront-questions/report-on-quot-send-work-i-assign-to-myself-to-my-working-on-tab/m-p/598680#M54028 I took things to their logical conclusion, which was to use an EXISTS statement to discern who
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.