Explore product-specific spaces to ask questions, share insights, and learn best practices.
Recently active
Hi All,I have created a content fragment that includes two data types: a checkbox and a number field. I want to add custom behavior so that the number field is only visible when the checkbox is checked. I have created a client library under /apps/clientlibs with the category dam.cfm.authoring.contenteditor.v2. Here is my JavaScript code:Coral.commons.ready(document.querySelector('input[name="itemOrderable"]'), function(checkbox) { var fieldToToggle = document.getElementById('coral-id-122').closest('.coral-Form-fieldwrapper'); function toggleField() { console.log("Checkbox checked:", checkbox.checked); if (checkbox.checked) { fieldToToggle.style.display = 'block'; } else { fieldToToggle.style.display = 'none'; } } toggleField(); checkbox.on("change", function() { toggleField(); location.reload(); }); }); This code works, but I need to refresh the page to see the result whenever I check or uncheck the checkbox.Thank you!
Hi,I am using a custom "Text with Formatting" field and sending this field's data in a email notification to user however I am getting the data in below format rather than the simple text. I guess its the Draft.js Raw Content State. {"blocks":[{"key":"kami","text": "Observations & Recommendations","type":"unstyled","depth":0,"inlineStyleRanges":[],"entityRanges":[],"data":{}}],"entityMap":{}} Does anyone have any idea how to get this field's data into simple text form? Any help or suggestion would be appreciated. TIA!!
Hi Team,We have an operator with admin access, but we would like to restrict their permissions so that they can only edit or delete items within a specific folder (used for testing). The operator should not be able to edit or delete content in any other folders within the instance.I’ve attempted to limit access at the folder level, but since the operator has admin rights, they are still able to edit and delete activities across all folders.Is there a way to configure permissions so that admin-level access is limited to only a specific folder? Any guidance or suggestions on how to achieve this would be greatly appreciated.Thank you!Regards,Ankita Vishe
As the title suggests, this is mainly for use on providing different access to different components to different groups: from Marketers, to Interns, to AA Power Users and to admin - and this is by no means an exhaustive list. And a follow up question is how much these are transferable to CJA?
We have a custom metadata schema being applied to all of our assets in AEM and they show as intended there but we are not able to find them under the configuration settings in Content Hub. We can see the OOTB fields but none of our custom ones. We'd like to add them to the asset details, card details, and filters in CH but they don't show up in the drop downs to select.Has anyone else run into this issue and resolved it? If so, I'd love to hear what your solution was.Thanks
Hi Team,Does Automated Forms Conversion Service (AFCS) generate Adaptive Forms with Core Components, or does it use Foundational Components?We are planning to migrate a large number of forms and would prefer Core Components for better performance and cloud compatibility.Could you please share any known limitations of the tool, especially around customization, validation, or integration with business rules?Appreciate any inputs you’re aware of.Thanks,Vara
Looking for guidance on how to best import our html email headers and footers into adobe campaign as personalization blocks. We have 100+ of each and I do not want to manually copy and paste html code into Adobe Campaign. I was hoping I could do something where I place the html in a folder on our SFTP and then have a Workflow import them as personalization blocks but open to anything really.
Hi,We are sending deliveries that extract a file that contains the target of the delivery and some fields that can be used to personalise the content of those deliveries externally. In the delivery Properties, we have set the option "A result file determines sent and failed messages". Once the delivery is sent, the post-processing workflow is moving the file to a different folder and changes all of the delivery broadlogs to the status "sent to service provider".Once the delivery file is processed externally we receive a feedback file and we process it with a workflow and change the status of the corresponding broadlogs to different statuses. Eventhough most of the broadlogs are changed to the status "taken into account by service provider", the delivery counter for Processed remains in 0. Same for the Success counters when we have broadlogs changed to "Sent" status. We have tried to "Recompute delivery and tracking indicators" by right-clicking on the delivery, but that chan
Consider a scenario where Adobe Analytics data is connected via source connected into AEP dataset1 using standard OOTB schema, and then used inside CJA for visualization. Now webSDK is getting rolled out to dataset2 using custom schema. Would there be any issue or limitation while doing MoM or YoY analysis in CJA from these two dataset together ?
Hello,I have a few question about an implementation that we are currently doing. It is our first implementation across both web and mobile app platforms. Here is the scenario:A single user (user_12345) has two different ECIDs:ECID-123 (web)ECID-456 (app) I understand from Adobe documentation that visitor deduplication is not retroactive. When a visitor accesses our site for the first time and then authenticates, two unique visitors are counted:The first visitor count from the generic Analytics ID (ECID) generated for anonymous browsingThe second visitor count from the custom visitorID assigned after authenticationMy questions:1) What is the best practice to track a complete user journey across our web and app platforms?2) Is it possible to show the user's activity prior to authentication? 3) Are there any specific data collection strategies I should implement when sending data to Adobe Analytics in this cross-platform scenario?Our goal is to understand the complete customer j
Hi, I was looking to pull a few metrics in Data Warehouse that use the Approximate Count Distinct function on various dimensions, as we're increasingly finding these metrics to yield low traffic bucketing within Adobe Analytics, but I can't seem to get any of these metrics to appear as options within Data Warehouse. Does anyone know if Data Warehouse is incompatible with Approximate Count Distinct?
Hi, I'm trying to create a typology rule that checks whether or not the Source HTML Content of an email contains a specific Personalisation block, and will block send if not included. e.g. Personalisation block = <%@ include view='PBTest' %> I've tried a few different ways but no joy so far and JS experience is low. Has anyone managed to do this before please? Thanks
Hi,Is possible to set some "Advanced parameters" to be checked by default - especially "Disable automatic filtering of 0 ID records" ? When is not enabled sometimes it generate cartesian joins queries or queries with bad optimizer plans. regards
Hi Team,I need to fetch Delivery Templates and check the URLs used or incorporated within their content. My goal is to replace only the prefix part of the URL while keeping the rest of the URL unchanged. Additionally, I need to perform a mass update across multiple Delivery Templates.Could you please guide me on the best approach to achieve this?Thanks,Ankita Vishe
Hi Team,I am writing a script to mass update parameters such as Sender Address and Reply Address from the Deliveries schema. Additionally, I need to update the Routing (External Account) of Delivery Templates, but I'm unable to do so as the value does not get updated when using the Routing Primary Key.Moreover, I want to exclude OOTB Delivery Templates to ensure they are not modified or updated.Below is the script I am using:var delivery = NLWS.xtkQueryDef.create({queryDef: {schema: vars.targetSchema , operation: 'select',select:{node: [{expr: '@id'},{expr: '@from'},{expr: '@reply'},{expr: '@extAcct'},]}}});var results = delivery.ExecuteQuery();for each (var res in results.getElements("query")){delivery = NLWS.nmsDelivery.load(res.getAttribute('id'));delivery.mailParameters.senderAddress= res.getAttribute('from');delivery.mailParameters.replyAddress= res.getAttribute('reply');delivery.deliveryProvider.id= res.getAttribute('extAcct'); delivery.save();}I need help with the following
Dear Community, When creating a request with granularity, in Adobe Analytics Data Warehouse, we get an output file with a "Date" column which includes a comma to split the year. As we are converting the .csv file, using comma as its delimiter, the column split is not working fine. Is there a way to adjust this before the export? Take the example below: Thank you in advance,Carolina
I have created a tab inside a folder in my projectHere is the code <?xml version="1.0" encoding="UTF-8"?> <jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:granite="http://www.adobe.com/jcr/granite/1.0" xmlns:cq="http://www.day.com/jcr/cq/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0" xmlns:nt="http://www.jcp.org/jcr/nt/1.0" jcr:primaryType="nt:unstructured" jcr:title="Styles" sling:resourceType="granite/ui/components/coral/foundation/fixedcolumns"> <granite:rendercondition jcr:primaryType="nt:unstructured" sling:resourceType="rcg/components/content/user-group" groups="content-authors,admin"/> <items jcr:primaryType="nt:unstructured"> <column jcr:primaryType="nt:unstructured" sling:resourceType="granite/ui/components/coral/foundation/container"> <items jcr:primaryType="nt:unstructured"> <
Hi Team,Is it possible to download an OSGi bundle JAR file using the OSGi Console (Web Console) or CRX/DE, in case the bundle is not available in the local target folder of the core module?If yes, could you please guide me with the steps to locate and download the JAR?Thank you in advance for your help!Best regards,Vara
If a user clicks on a link populated by Google's AI in search or a ChatGPT query, what type of referral traffic will their visit appear under?
Hi Team I have an issue when checkbox is unchecked the value is empty "" instead I would like to store it as false. When it is checked I am getting as "true" could you please advise me on the below 2 issues:1. When checkbox is not checked or unchecked I want value as false2. When checkbox is checked, i am getting "true" in json which is a string. Can I get as boolean like true. below is my node structure :<disable jcr:primaryType="nt:unstructured" sling:resourceType="granite/ui/components/coral/foundation/form/checkbox" fieldDescription="Checking will add a check icon" name="./disable" text="disable" checked="{Boolean}false" value="{Boolean}true" deleteHint="{Boolean}false"/>
Hi Team, We are using Adobe I/O Eventing to trigger the download events and then fetching the events using Journaling API Endpoint, in the last pushing the events to third party applications. When we are fetching the events from Journaling queue, we are just getting at max 3 events in each get request.As per the document [1] stating "depending on the traffic of the events associated with your registration, the number of events returned in a single response batch varies: a batch of events contains at least one event (if you are not already at the end of the journal), but there is no pre-defined upper limit.", in each batch we want to fetch more events, we used 'limits' param but that too is not helping to get most of the events in one request. Now my questions are : 1. Why Journaling batches just have 2-3 events at a time, I cant see full queue of events with Postman Get request. 2. How can I pull maximum events from journaling queue? 3. How this Journaling is working? 4
Hi Adobe Community, I'm wondering if anyone know if it is possible for AEP to establish an outbound connection with KAFKA. From the documentation that I've read, it looks like we can only receive inbound data from KAFKA. Thanks, Nick
1. Through Adobe servers? 2. Configure Your own email provider (SendGrid, Mailgun), however is it possible to send email directly from AJO campaigns / email node in journey? Or I need to configure Custom Action?
Is it possible to have AJO B2B and B2C on one sandbox?
Can anyone pls share Adobe workfront fusion design template document to use in projects
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.