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

Ravi_Pampana
Ravi_Pampana
Online

Badges

Badges
33

Accepted Solutions

Accepted Solutions
113

Likes Received

Likes Received
387

Posts

Posts
375

Discussions

Discussions
104

Questions

Questions
272

Ideas

Ideas
2

Blog Posts

Blog Posts
2
Top badges earned by Ravi_Pampana
Customize the badges you want to showcase on your profile
Re: Reinstalling the content package and the page status - Adobe Experience Manager 19-02-2018
Once the page is activated, page will be pushed to publish instance(s). In your case, deactivate the page before reinstalling the content package.Deactivating a page will remove from publish instance(s).Hope this helps !

Views

897

Likes

0

Replies

0
Re: Default to Classic UI but use Touch UI for specific pages - Adobe Experience Manager 14-02-2018
See my post for opening specific template in touch uiOpening specific template pages in editor.html AEM 6.1, AEM 6.2 Hope this helps

Views

718

Likes

0

Replies

0
Re: AEM backup - Adobe Experience Manager 14-02-2018
Unless you have different data in each publishers having backup of 1 publisher and author is sufficient.

Views

520

Likes

0

Replies

0
Re: Uploading large packages - Adobe Experience Manager 11-02-2018
It is always better to keep backup of aem instances on regular basis (preferably daily/weekly for prod servers based on the usage). Backup and Restore

Views

791

Likes

0

Replies

0
Re: Uploading large packages - Adobe Experience Manager 11-02-2018
Check this postpackage size limitation to set in AEM6.1

Views

715

Likes

0

Replies

0
Re: AEM 6.2 - how to retrieve page replication status using system user - Adobe Experience Manager 11-02-2018
Hi,You can use session to get the jcrcontent node of the required page and read cq:lastReplicationAction property to find replication status of page. String activationStatus = ""; Node pageJcrNode = session.getNode("/content/sitename/pagename/jcr:content"); if(pageJcrNode != null && pageJcrNode.hasProperty("cq:lastReplicationAction")) { activationStatus = pageJcrNode.getProperty("cq:lastReplicationAction").getString(); }Hope this helps.

Views

1.8K

Likes

0

Replies

0
Re: Is it possible to compare a page property with a component property within a component? - Adobe Experience Manager Assets 09-02-2018
Hi,${properties.key} will return the value if variable is present in the component, I think you are trying to read page level property inside a component. In that case you can use ${pageProperties['jcr:title']}When reading value having : the above format works.Hope this helps.

Views

851

Likes

2

Replies

0
Re: Component without dialog but draggable - Adobe Experience Manager 08-02-2018
Hi,cq:dialog will be used to show the dialog and cq:editConfig will be used to display the component on left rail and dragging to parsys. Create a component without cq:dialog if edit option is not required. Option 2: If you just have cq:dialog without any node under it, click of edit wont open the dialog.Hope this helps

Views

1.8K

Likes

3

Replies

0
Re: How to make the textfield readonly in Touch UI - Adobe Experience Manager 05-02-2018
I used below property in AEM 6.2 for textfield in touch ui to make it read only (non editable) in dialogdisabled="{Boolean}true"

Views

5.6K

Likes

8

Replies

0
Re: Make ajax call to get the published status of page : Touch ui - Adobe Experience Manager 22-01-2018
Hi,As you know the page path, you can use below url to get the page properties in json format"http://localhost:4502/"+pagepath+"/_jcr_content.infinity.0.json"Replace pagepath string with the path of the page. Make sure ajax call is triggered before delete.You can iterate through the json and read the required values. Change 0 (infinity.0) to 1/2/3 to get more information about the page/child pages.Hope this helps.

Views

1.7K

Likes

5

Replies

0