Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Jagadeesh_Prakash
Jagadeesh_Prakash
Online

Badges

Badges
26

Accepted Solutions

Accepted Solutions
31

Likes Received

Likes Received
139

Posts

Posts
120

Discussions

Discussions
38

Questions

Questions
82

Ideas

Ideas
7

Blog Posts

Blog Posts
3
Top badges earned by Jagadeesh_Prakash
Customize the badges you want to showcase on your profile
Re: AEM as a Cloud Service 2022.7.0 - Release update - Adobe Experience Manager 24-08-2022
@kautuk_sahni it is really useful. Thank you

Views

21

Like

1
Re: Query to find page and referenced assets list of given date range - Adobe Experience Manager 22-08-2022
@ashok-tech I don't have the query handy but you can use the ACS report builder to get the report. Refer to below URL's https://adobe-consulting-services.github.io/acs-aem-commons/features/report-builder/configuring.html https://adobe-consulting-services.github.io/acs-aem-commons/features/report-builder/index.html

Views

30

Like

1

Replies

0
Re: Cloud Manager for AEM deployment - Adobe Experience Manager 22-08-2022
@sirishap9577191 yes we can use Cloud manager for on prem servers Please refer to below link. Please go through index as well. Hope this is helpful https://experienceleague.adobe.com/docs/experience-manager-cloud-manager/content/introduction.html?lang=en

Views

60

Likes

2

Replies

0
Re: How to get Workflow event type/ Launcher details in workflow process step AEM? - Adobe Experience Manager 22-08-2022
@beast42 Oh In that case i am not sure we have any option for that. 

Views

48

Like

1

Replies

0
Re: RTE appends .html to links in content fragment model - Adobe Experience Manager 22-08-2022
@Sejal29 The Content Fragment component is available to page authors. It allows them to reference, and deliver, the required content fragment in either HTML or JSON format. https://experienceleague.adobe.com/docs/experience-manager-64/assets/fragments/content-fragments.html?lang=en I am not sure if there is any OOTB config to help you out. I suggest either you move it to a different location other than /content/dam or else need to look for a custom implementation

Views

28

Like

1

Replies

1
Re: How to get Workflow event type/ Launcher details in workflow process step AEM? - Adobe Experience Manager 22-08-2022
Hi @beast42 Hope below code will be helpfull List historyItems = workflowSession.getHistory(workitem.getWorkflow());for (HistoryItem historyItem : historyItems) { String itemType = historyItem.getWorkItem().getNode().getType(); String itemTitle = historyItem.getWorkItem().getNode().getTitle(); if ((null != itemType && itemType.equals(WorkflowNode.TYPE_PARTICIPANT)) && (null != itemTitle && itemTitle.equalsIgnoreCase(McDConstants.STEP_NOTIFY_REVIEWER))) { rejectionComment = historyItem.getComment...

Views

64

Like

1

Replies

2
Re: Event Handler Path property is throwing null - Adobe Experience Manager 22-08-2022
@Nishma If still you are facing issue, try below one. But i recommand the previous post which worked for me and below code was working in local but not in the AEMcs environment. Note: I removed some code. Please improvise and try according to your requirement @Component( service = EventHandler.class, configurationPolicy = ConfigurationPolicy.REQUIRE, property = {EventConstants.EVENT_TOPIC+"=" + ReplicationAction.EVENT_TOPIC})public class ReplicationListenerOnAuthor implements Runnable, EventHand...

Views

22

Likes

0

Replies

0
Re: AEM as CS | Handle event on page publish - Adobe Experience Manager 22-08-2022
@pradeepmoolemane Below code worked for us @Component(immediate = true, property = { "event.topics=org/apache/sling/distribution/importer/package/imported", "event.filter=(|(distribution.type=ADD)(distribution.type=DELETE))" })public class SlingDistributionEventHandler implements EventHandler { public static final String DISTRIBUTION_PATHS = "distribution.paths"; @Override public void handleEvent(Event event) { if (event.getProperty(DISTRIBUTION_PATHS) != null) { String[] pagePath = (String[]) e...

Views

33

Like

1

Replies

2
Re: Event Handler Path property is throwing null - Adobe Experience Manager 22-08-2022
@Nishma Please check the logs in publisher and not in the author. 

Views

23

Likes

0

Replies

0
Re: Event Handler Path property is throwing null - Adobe Experience Manager 22-08-2022
@Nishma There is no special configurations needed to do in local to test it. It should get triggered when ever there is any page or asset replication is done. Or you can test in cloud dev environment as well

Views

33

Likes

0

Replies

3