Explore product-specific spaces to ask questions, share insights, and learn best practices.
Recently active
What are the capability differences between implementing the WebSDK client-side and utilizing Event forwarding compared to using the Server Side API for things like data collection and/or deployment of 3rd Party Tags? Are there any differences specifically related to things like 3rd Party Cookie Deprecation (will one method protect you better from this), Safari / Apple ITP, and setting FPID that are enabled by one method or another?
I am using react-spa and this issue is exclusively in the editor. I have a media tag for 4k displays with a min-height set. When I add enough components in the editor to add up to a height of > 2160px the tag is tripped as in the pic below. When I remove components the tag is not tripped. This is only in the editor. Why on the page load is the editor displaying working out the height of all components and trying to display them? This seems like a bug to me.
Hey adobe campaign classic 7 wizards, i'm in bit of a bind here.Suddenly we can't upload pictures to our tracking / web server.we get this error IOB-090020 Error in SSL library: 'IOB-090013 error:1416F086:SSL routines:tls_process_server_certificate:certificate verify failed (code 337047686)'XSV-350059 Unable to upload the images to the tracking servers. So it seems that TLS cert, is the problem.It is build in amazon work spcaces.We have a load balancer added, but i have checked the load balancer, the application server, the web/tracking server and the RDS database, and everyone seems to be with a valid TLS certificate It worked fine in December. Any clue to where to look next ? Many ThanksRobert.
Hello All, We run several Meta (Facebook) and Google Search Network campaigns, and there is a huge discrepancy (sometimes 50%, sometimes much more) between the data received via Meta Ad and GSN platforms and the data measured in Adobe Analytics? So for example when Meta analytics says that I have 1,000 linck clicks on a certain link and I can se only 500 page views in Adobe Analytics (on the same link, same date range etc.). My question is: what could cause this discrepancy? Also, is Adobe Analytics able to measure the activity of users who do not accept cookies on my website? Are they counted as page views and/or visitors, or I can measure only the number of visitors and their page views who accepted my cookies? Thanks!
In the daily DMA data feed export the Chinese, Japanese and Korean alphabet are not well represented. Example:HIT_KEYFILE_NAMEPAGE_URLREFERRERFILE_DOWNLOAD_URL3689937870631370752461823606694500810817182612182024-06-13 training-基于STM32G4电机控制基础篇.pdfAlthough those alphabets are well tracked in Adobe Analytics and in Adobe workspace the values are correct: Could you please help me to fix it?Thanks
Hi , most of the logic for the table of contents component is handled at TableOfContentsFilter.java. I see the component creates IDs for h1-h6 elements in a page if not already present and then maps it to the table of contents list items. In this process, all the unnecessary text elements within the h1-h6 tags such as <span> classes are also getting copied to the id field and the same id displayed on the Table of contents list as well without any formatting. (For example superscripted references) Now, I am looking at modifying this logic in the filter class and I would like to know if that's possible. A model delegate is not possible here and the logic is heavily built in the filter. Can we extend or by any means modify the logic here with no much hassle. Thanks for your time and highly appreciate any suggestions.
Hi,I am building a REST endpoint which1.) should execute some QueryBuilder queries based on the parameters passed to the endpoint,2.) return the Sling models for the resources found by the QueryBuilder.Point 1. is simple.I have some concerns around point 2., where the hits returned by the QueryBuilder are JcrNodeResources and I would like to get Sling models for those resources (e.g. for a cq:Page with type "core/wcm/components/page/v3/page"). I have the idea to use the org.apache.sling.models.factory.ModelFactory -> getModelFromWrappedRequest method for this purpose like Page page = modelFactory.getModelFromWrappedRequest(request, createSyntheticResource(resource), Page.class);.The method createSyntheticResource should create a ValueMapResource with the arguments for the Page to be created.Does this make sense or is there an easier way to call Sling model exporter for a given JcrNodeResource?Thanks,Peter
Please find the below script which is not working whereas the code seems proper {% let age1=0 %}{% let datedifference = dateDiff(toDateTimeOnly(currentTimeInMillis()), toDateTimeOnly(profile.person.birthDate))%}{% let age1 = absolute(toInt(roundUp(datedifference/365)))%}{%#if age1=20.0 or age1=30.0 or age1=40.0 or age1=50.0 %} {"content_id": "content1","param1": "{%= titleCase(profile.person.name.firstName)%}","param2": "{{age1}}"}{%else %} {"content_id": "content2","param1": "{{age1}}"} {%/if%}
HelloWe have deployed a web application for one-click unsubscription provided by adobe. The web app includes customizations to track the Delivery ID and update specific fields as required.Issue Details:The web app has been published successfully, and the unsubscribe button is visible in the emails sent to recipients.When clicking the unsubscribe button in the email, the web app does not get triggered.However, when we manually copy the unsubscribe URL from the email's source code (via "Show Original") and paste it into the browser, the web app works as expected.Expected Behavior:The unsubscribe button in the email should directly trigger the web app and process the unsubscription, Update required fields, return delivery ID of the delivery.Troubleshooting Steps Taken:Verified that the web app URL is correct in the email's unsubscribe button.Tested the web app by directly accessing the URL in a browser, and it worked as expected.Confirmed that the web app is published and operational.We n
I cannot trigger the observer when placing an order via graphql API. There is no data in debug trace
The language that I used was English. But now it is changed to Korean because I am living in Korea. I think it's auto-translated and Eng-Kor auto translation (both Google and Bing) is usually and mostly not so great on almost every platform. I am not sure if I don't know where to find the change language option it but I want to change this to English again.
Hi, My organization often creates asset live copies in our DAM. I want to create a filter that allows me to show all assets that are live copies, as well as show assets that are not live copies. Is there a property in AEM to be able to do this? Thank you,Morgan
Good afternoon community.I'm looking for advice on where to go to install a local instance of Target?I'm currently training on the platform and am hoping to add my own version to my own laptop to train building activities, texts, etc. I have a local version of AEM (WKND Site) I'm unsure of you can add Target in the same way and am trolling through documentation to find an answer. Any advice is welcome.Thank you in advance 🙂
Hi All,When ever event is getting triggered -EX - If i am doing operation Page move.EventType is coming as = Event.PROPERTY_ADDED but it should check for as Event.NODE_MOVED. even though i am checking as a conditional statement it is always going to Event.PROPERTY (Event.PROPERTY_ADDED | Event.PROPERTY_CHANGED | Event.PROPERTY_REMOVED) listener instead of Event.NODE (Event.NODE_MOVED | Event.NODE_ADDED | Event.NODE_REMOVED listener. Again, This is happing for Page Delete also. Req - to Implement custom logic on each and every event Listener. As we know whenever we trigger event on NODE AEM itself call's PROPERY events :::Is there any way to identify the correct event or give precedence to NODE events instead of PROPERTY??? Using Event like this - private static final int EVENT_TYPES = Event.NODE_MOVED | Event.NODE_ADDED | Event.NODE_REMOVED |Event.PROPERTY_ADDED | Event.PROPERTY_CHANGED | Event.PROPERTY_REMOVED; Thanks in advance. &nb
Hi All, I have created one repoinit script to manage AEM groups and permissions. we already have another script to manage dam related groups and permission. previously for AEM users access were managed via ACS ACL tool and deployed as a package across all environments. so we want to manage these groups as part of our codebase. So I have created a new script for AEM groups but existing ACL assigned to mentioned locations are not getting replaced, hence the issue. Could anyone please suggest if I need to perform any additional changes. Thanks,Abhishek
i want to do showhide of fields in dialog on selection of dropdown.here, i have two dropdowns.one is working fine but another is not working with core js.can someone help here?
Hi,I am trying to do a single day analysis and want to know which time zone is adobe reporting on?How do I find that out?Thanks!
Hello everybody, i am looking for a way to get rid of all the duplicate assets within our DAM.Can somebody point me in the right direction where to find some guide how to create a workflow which could do the following:Step 1: Create a list of all the assets "jcr:content/metadata/dam:sha1" valueStep 2: Compare and find the duplicate Step3: Create a list of all the duplicatesCheck if it is in use - site or InDesign file - if not Step 4: DeleteIf it is a duplicate - the reference resolver should be able to fix this if, right?Call one file A and the other B - they are exactly the sameOne is in dam/arms and the other in dam/illustrationA is in use on 2 files and B in 3 - could the reference resolver reinstall the connection to A if i delete B?
Servlet using resourceType when we get resourceResolver by request how secure the servlet is if we get resourceResolver by request and request has what user permissions?
Hi, we're running a data fix on the "Lead score" field in SF (API Name: mkto71_Lead_Score__c).It looks like the data is not reflected back in Marketo, so we have gap between the two systems. After few minutes Marketo is overriding the data in SF.Do you know what could be the reason for that? we don't have block updates on this field on the Marketo side, or any other smart campaigns running on it. Thanks Itay
Hi everyone,I’m working on a grading system in Adobe Analytics to classify users into levels (Level 1, Level 2, Level 3) based on specific activity combinations. Each level has defined rules like these:Level 1 Graded:Complete Activity Level 1 at least once, ORComplete Activity Level 2 at least 3 times, ORComplete Activity Level 3 at least 2 times AND Activity Level 2 at least 2 times.Level 2 Graded:Complete Activity Level 2 at least twice, ORComplete Activity Level 2 once AND Activity Level 3 at least 2 times, ORComplete Activity Level 3 at least 3 times.Level 3 Graded:Complete any Activity Level 3 at least once.The goal is to create calculated metrics for each level that return the count of Unique Visitors who meet the specific combinations of activities required for that level.I’ve tried using the IF function in the Calculated Metric Builder to define these rules, but I’m unsure how to handle multiple conditions (e.g., combining "AND" and "OR" logic).Questions:How can I configure cal
My company uses a typeahead field on most of our templates to indicate which client a project is for. The typeahead references our list of Companies. With the Light license, our main users were able to see all companies in this field. I was hoping to move some of them to the Contributor license and the default Contributor access level, but that seems to have disrupted their ability to view other companies. After some experimentation I believe this is linked to having view access to Resource Management, but I don't see any documentation about why that might be. Does anyone know why this might be occurring, and if it is indeed linked to Resource Management?
Hello, Adobe CommunityOne of our envs has the following issue:When I open page properties of home pages, tabs "Permissions", "Live Copy" and "Settings" don't open because something wrong with "Permissions" tab.The error on console:at com.day.cq.wcm.core.impl.WCMDeveloperModeFilter.doFilter(WCMDeveloperModeFilter.java:133)at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:68)at com.day.cq.wcm.core.impl.WCMDebugFilter.doFilter(WCMDebugFilter.java:138)at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:68)at com.day.cq.wcm.core.impl.WCMComponentFilter.doFilter(WCMComponentFilter.java:249)at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:68)at com.day.cq.personalization.impl.TargetComponentFilter.doFilter(TargetComponentFilter.java:96)at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:
We are working on a periodic cleanup activity in AEM as a Cloud Service (AEMaaCS) to delete assets older than 180 days. As part of this process, we also need to programmatically delete root folders if they are empty after the assets are removed. On an average, we have more than 500 assets to be cleaned up. Some questions we need clarification on:What is the recommended approach to schedule this cleanup activity in AEMaaCS?Is the Asset API still recommended for this purpose, or is it considered deprecated? If so, what alternative APIs should we use?
HI Team! Trying to compare 2 Duration columns in a Task report. Original Duration (task) VS. Duration (task) Both ive got in Days and i would really like it to give me a colour if the date in the Duration column is Greater than the days in the Original Duration column. I have tried and failed with syntax. any help would be fab thanks!
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.