Expand my Community achievements bar.

July 31st AEM Gems Webinar: Elevate your AEM development to master the integration of private GitHub repositories within AEM Cloud Manager.
SOLVED

Published pages report

Avatar

Level 4

In AEM, 6.1  as a content author, how can i search for a list of pages that were published today in all of the sites in the environment.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

AEM OOTB provides a filter for Publish status

 

aanchalsikka_0-1713962269297.png

 

For using a range, custom search facets can be created, similar to Modified date

aanchalsikka_1-1713962326342.png

 

 

 


Aanchal Sikka

View solution in original post

3 Replies

Avatar

Level 10

You can write a custom service that queries JCR nodes (pages) based on a date.

Avatar

Community Advisor

With QueryBuilder you can run like below:

path=/content

type=cq:Page

daterange.property=jcr:content/cq:lastReplicated

daterange.lowerBound:2018-11-15

p.limit=-1



Arun Patidar

Avatar

Correct answer by
Community Advisor

AEM OOTB provides a filter for Publish status

 

aanchalsikka_0-1713962269297.png

 

For using a range, custom search facets can be created, similar to Modified date

aanchalsikka_1-1713962326342.png

 

 

 


Aanchal Sikka