Explore product-specific spaces to ask questions, share insights, and learn best practices.
Recently active
We are looking to generate an image thumbnail on an issue report from a public image url that is entered on an issue field. Does anyone know a way to do this? Example:Field = Front Label ImageValue = http://images.salsify.com/image/upload/s--txPxJQu---/w6oewelr9h8jaua1ydps.png
Im setting up a trigger for a smart campaign to listen for new users added from zoom info - these users are deanonymized and added to the " Master list" My smart campaign trigger is set to listen for new users created - First question Person created-source type, is this Webservice API or Webservice API- import list when choosing the source type, Below is a screen shot of my smart list set up - Is the member of list needed here? -as a side note , we are connected to 2 different CRM partitions, they are however split into different workspaces
Hi - I'd like to implement a flow for event approvals that looks like this:Person registers via a form and sees thank you message that approval is pendingAlert goes to approver with a link to click to approve or declineEmail is then triggered to the person who registered, confirming or declining their attendanceI can't figure out how to trigger the email send to the person who registered. Would a webhook be able to do this?
This morning I have received 3x Workfront notifications via email: A comment on a proof (I am tagged)A new proof being uploaded (I am a Reviewer/ Approver)A comment on the Updates tab of a project (I am tagged)In the Slack app I only received one: A comment on a proof (I am tagged)I have noticed that not all notifications come through to Slack, despite me having all the notification types checked in the app settings.Based on An update is made to a task, issue or project you are subscribed to and Someone includes you on a directed update shouldn't I at least have received a Slack notification for the comment on the Updates tab?
Our team is currently onboarding Workfront. We plan to use issues for our web production team to manage one-off requests like a doc upload or simple change that does not need to go through a full project process. These issues come through our request queue and then we are simply converting them to tasks from the request queue. There are 3 users trying to manage the request queue. Is there a simple way for us to hide the issues that have already been converted or to add a column that shows a field identifying which issues have already been converted?
Hi Friends , Is there any ootb configuration available to filter the component exporter. For example : http://localhost:4502/content/we-retail/us/en/men.model.json it showing allowedComponents , gridClassNames ,columnCount etc .. I want to expose only essential items to react
Hi, is there any query in query service to extract the metadata of the audience (e.g. ID, name , attributes and condition)?I checked but to no avail.
Hi everyone,I'm setting up fields to capture UTM parameters and sync to SFDC, much like this post. My SFDC admin just created the fields in our SF instance, and created them as text fields with a max of 255 characters which is how our parent company has them set up on their SF. The fields appearing successfully in Marketo as text fields - however, this post from 2014 recommends that these be set up as string instead of text. Which is the correct field type, string or text? Can I change the Marketo field type to string without changing the SFDC field type?
Hi, I have a dropdown menu with the following html. <div class="cmp-dropdown cmp-form-options__field cmp-form-options__field--checkbox" name="persona" id="form-options-abc"><button id="persona-dropdown" class="cmp-dropdown__button show">lunch</button><div id="form-options-abc" class="dropdown-text"><ul><li data-value="bft" class="">breakfast</li><li data-value="lunch" class="">lunch</li><li data-value="tea" class="active">tea</li><li data-value="dinner">dinner</li></ul></div> I've used click to identify the interaction : .cmp-dropdown__buttonand also tried using .dropdown-text ul li.active to test.The issue is the text fires when i click on the dropdown but not on the selected text in the dropdown.Can you please advise? Thanks.
Hello all, I am trying to follow previous posts regarding this topic, and the code that I am testing isn't working correctly. I am attempting to add this code to the header section on the landing page that the form is contained on: MktoForms2.whenReady(function(mktoForm){ const formEl = mktoForm.getFormElem()[0]; const unsubscribeTrigger = "Unsubscribed", unsubscribableDeps = [ "personalBankingOptIn", "commercialBankingOptIn", "privateBankingOptIn", "homeOptIn", "economicPerspectivesOptIn", "economicUpdateOptIn", "weekinReviewOptIn", "quarterlyInvestmentNewsletterOptIn", "quarterlyWebConferenceOptIn" ]; const dependencies = [ { primaries : unsubscribeTrigger, cascadeSecondaries : unsubscribableDeps .map(function(unsubscribable){ return { field : unsubscribable, negate : true, filte
I have an event that people can register for, but only a number of people can register for each session. Once a session becomes full, I'd like to update the selector... does it make sense to just remove it? My concern with deleting it was there would be a jump from session 5 to session 7, for example. Or, am I able to keep it but make it not selectable?For now, I changed the wording... but technically people can still select it and submit.And, what is best practice? I am sure this has been done before!Thanks!
I'm using the following curl command to make changes into the content fragment through curl. curl -i -X PATCH \ 'https://{bucket}.adobeaemcloud.com/adobe/sites/cf/fragments/{fragmentId}' \ -H 'Authorization: Bearer <YOUR_JWT_HERE>' \ -H 'Content-Type: application/json-patch+json' \ -H 'If-Match: string' \ -d '{ "op": "add", "path": " ", "value": "Doe" }' "according to the Sites API. However I'm confused regarding the command as I do not know what value do I put in path if my content fragment is at location /content/dam/wknd-shared/en/where name of the content fragment is custom-author and I want to add "doe" in the property Last Name (lastName in content fragment model) assuming it is blank before. the final output should be as follows. Please guide me on how to do the same.
I have setted up the frontend pipeline for cloud and is working smoothly in one of my sandbox instances.The same theme sources when trying to build on client environment, it is getting failed. Both the sandbox and client environment uses the same node version and all the content inside package.json and packag-lock.json are exactly the same.Below is the error Im getting when executing the FE pipeline in client environment: [BUILD] Running git clone command(s) Cloning into 'XYZ-aem-code-repository'... Executing command git fetch Executing command git checkout AWMV2-904-Fix-Frontend-Pipeline Switched to a new branch 'AWMV2-904-Fix-Frontend-Pipeline' Branch 'AWMV2-904-Fix-Frontend-Pipeline' set up to track remote branch 'AWMV2-904-Fix-Frontend-Pipeline' from 'origin'. [BUILD] Running git change-log command(s) [BUILD] Running npm audit command(s) Executing command npm --progress false audit --production --audit-level=critical npm warn config production Use `--omit=dev` inste
Hello, I have a question, I’m currently testing sling:alias because I need to replace some URLs. My question is, when using sling:alias, will the resource resolver automatically return only the paths with the alias? Or will the original path still be valid? What I ultimately need is, if my original path is /content/testing and my alias is /content/testing-alias, I want /content/testing to return a 404 when entering the URL, and only be accessible through /content/testing-alias. I'm asking because someone told me that the normal behavior of the resource resolver is to always return the path with the alias and not the original path, so I’m not sure if that’s true, or if I have an older version that prevents me from seeing this behavior.
Retrieve the date of the first timeline entry for a page in AEM code base and display it with other details when author selects the page. Or store first timeline entry date inside jcr:content with other page details
In AEM Cloud, I want to share AEM dam stored videos to YouTube using custom servlet which is using google API'sI have added all the required dependences in core pom.xml and also there no code issues but i am facing issues with Bundle, my project bundle is not getting activated, its in installed state and showing following errorscom.google.api.client.auth.oauth2,version=[1.33,2) -- Cannot be resolvedcom.google.api.client.googleapis.auth.oauth2,version=[1.34,2) -- Cannot be resolvedcom.google.api.client.googleapis.javanet,version=[1.34,2) -- Cannot be resolvedcom.google.api.client.http,version=[1.41,2) -- Cannot be resolvedcom.google.api.client.http.javanet,version=[1.41,2) -- Cannot be resolvedcom.google.api.client.json,version=[1.41,2) -- Cannot be resolvedcom.google.api.client.json.gson -- Cannot be resolvedcom.google.api.client.util.store,version=[1.41,2) -- Cannot be resolvedcom.google.api.services.youtube -- Cannot be resolvedcom.google.api.services.youtube.model -- Cannot be
I have a TIFF file with a clipping path and a dynamic image preset to resize and produce a TIFF file. I have uploaded the TIFF file to AEM, But when I download the dynamic image preset of that file it no longer has the clipping path in the metadata. Does the dynamic media not preserve clipping path information? And is there any way to have it preserve the path when generated?
Hello, We have encountered a few images where agencies have added metadata like clipping paths, and the name of the clipping path is visible in the metadata when accessed using ExifTool. However, this information is not being extracted by the DAM Update Asset workflow and added to the metadata node. Are there specific rules that determine which types of metadata can be extracted? For metadata that does not meet these rules, what is the recommended approach to extract and include such metadata?
Hi Team,On submission of the form an email should be triggered along with the form data to the user. I have gone through the below link but need more info like how to configure google docs in power automation email configuration and all.https://main--afb--adobe.hlx.live/docs/email-pa Kindly help! Thank you
Hi there, I’m currently creating a few offers for our client and wanted to clarify the difference between Rules and Audience.If you could explain the key differences with some examples, particularly highlighting situations where one would be more appropriate than the other, it would be really helpful. Looking forward to your insights!
Hello @16227148,I am preparing for AEM Technical Foundations Certification exam. There's only small foundational course with basic definitions and benefits of terminologies, but the syllabus is very huge and only offered links of documentation in prep guide. Can you suggest any courses available and the way I've to prepare to crack exam.
AEM 6.5, SPA, Angular 9, Bootstrap 4AEM Forms packages:adobe-aemfd-linux-pkg-6.0.1120.zipadobe-aemfd-compat-pkg-2.0.48.zipSometimes a submission fails for no obvious reason in the UI. When we look in error.log, we see errors about an "Illegal address". We've been unable to come up with steps to reproduce the issue as it happens intermittently across forms. Email addresses used for the form's TO and FROM fields are correctly formatted. AEM mail server configuration confirmed to be correct by Adobe support. Stacktrace: 31.12.2024 08:49:14.161 *ERROR* [IP removed [1735652954103] POST /path/to/form/jcr:content/guideContainer.af.submit.jsp HTTP/1.1] com.adobe.aemds.guide.service.impl.MailSubmitActionService Could not create emailIllegal address javax.mail.internet.AddressException: Illegal address at javax.mail.internet.InternetAddress.<init>(InternetAddress.java:122) at com.adobe.aemds.guide.internal.impl.utils.GuideEmail.createEmail(GuideEmail.java:122)
Hi, I'm testing some new release functionality is Preview and wanted to check if want I'm experiencing is as expected. I can only add images to the update section comments after I've submitted the post. I can't add the image while I'm writing the original comment. Is that normal?I'm trying out the new image drag and drop option, but I think this was the same when having to navigate to the image from the device. ThanksMatt
Hey, we're building an EDS site for a client and ideally we don't want the .live or .page site to be crawlable or accessible publicly. We want some sort of security or VPN (or login) around it? Is this possible? What options do I have?
A developer needs to make template T available as a child page of page P. The developer has determined that:Template T matches cq:allowedTemplates property on page P.Template T has no allowedPaths Property set.Template T is not in the same application as page P.The template of page P has no match on the allowedParents property of template T.Template T has no match on the allowedTemplate property on the template of page P.What should the developer change? Make Page P match allowedPaths property of template T. Make the allowedParents property of template T match the template of page P. Clear the allowedParents property of template T. Migrate template T to the same application as Page P.
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.