Expand my Community achievements bar.

Adobe Summit 2025: AEM Session Recordings Are Live! Missed a session or want to revisit your favorites? Watch the latest recordings now.

Mark Solution

This conversation has been locked due to inactivity. Please create a new post.

SOLVED

Create a report listing all pages by original creation date

Avatar

Level 2

I'm trying to ascertain when pages on my site were first stood up so I can create a report that lists the date each page was created and the URL or puts all those pages in order based on when they were created. I've tried to find the information I need before I posted a question, and I apologize if this is a ridiculously easy item.

 

I would appreciate any information you can share to help me get a data file that sorts the pages based on the original creation date. Thank you in advance for any information you can share!

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

You can also try with query builder JSON api

http://localhost:4502/libs/cq/search/content/querydebug.html

 

type=cq:Page
path=/content/we-retail
orderby.sort=asc
orderby=@jcr:created
p.hits=selective
p.properties=jcr:path jcr:created
p.limit=-1

 

Screenshot 2023-05-10 at 11.58.43.png

 

JSON QueryBuilder Link will give the json with path and create property

Arun Patidar

AEM LinksLinkedIn

View solution in original post

3 Replies

Avatar

Community Advisor

@MarkECis  Please check this "pages report" given by ACS Commons

https://adobe-consulting-services.github.io/acs-aem-commons/features/report-builder/index.html

You can extend the columns it shows in the table or Creating a Report Parameter for creation date.

https://adobe-consulting-services.github.io/acs-aem-commons/features/report-builder/extending.html 

Avatar

Community Advisor

You can use the ACS Common Report Builder to generate a list of pages with dates.

https://adobe-consulting-services.github.io/acs-aem-commons/features/report-builder/index.html

Avatar

Correct answer by
Community Advisor

You can also try with query builder JSON api

http://localhost:4502/libs/cq/search/content/querydebug.html

 

type=cq:Page
path=/content/we-retail
orderby.sort=asc
orderby=@jcr:created
p.hits=selective
p.properties=jcr:path jcr:created
p.limit=-1

 

Screenshot 2023-05-10 at 11.58.43.png

 

JSON QueryBuilder Link will give the json with path and create property

Arun Patidar

AEM LinksLinkedIn