Expand my Community achievements bar.

SOLVED

Generate Report of all pages and Assets from the Dispatcher.

Avatar

Level 1

I have a requirement where I need an export report of all pages and assets that are on each of the four dispatcher servers also include last modification date (cq:LastModified). One report for each one of the dispatcher servers. 

 

Any help or suggestion will be highly appreciated.

1 Accepted Solution

Avatar

Correct answer by
Employee

Hi @PJ_AEM001,

To generate report of assets, you can leverage OOTB AEM Asset Report feature available at Tools Assets Asset Reports https://helpx.adobe.com/in/experience-manager/6-3/assets/using/asset-reports.html.

 

From the Reports list, select the desired option. Asset Added is selected by default. To customize your report, click Customize Columns in the toolbar. In the Customize Columns dialog, select or deselect the available options to add or remove these options from the report. 

 

For page reports, please check ACS AEM commons utility https://adobe-consulting-services.github.io/acs-aem-commons/features/report-builder/index.html.

 

You can also fire the following SQL2 query to get the list of all active pages in AEM. 

select * from [cq:PageContent] AS s where s.[cq:lastReplicated] IS NOT NULL AND ISDESCENDANTNODE(s,[/content])
 
Thanks!!

View solution in original post

2 Replies

Avatar

Correct answer by
Employee

Hi @PJ_AEM001,

To generate report of assets, you can leverage OOTB AEM Asset Report feature available at Tools Assets Asset Reports https://helpx.adobe.com/in/experience-manager/6-3/assets/using/asset-reports.html.

 

From the Reports list, select the desired option. Asset Added is selected by default. To customize your report, click Customize Columns in the toolbar. In the Customize Columns dialog, select or deselect the available options to add or remove these options from the report. 

 

For page reports, please check ACS AEM commons utility https://adobe-consulting-services.github.io/acs-aem-commons/features/report-builder/index.html.

 

You can also fire the following SQL2 query to get the list of all active pages in AEM. 

select * from [cq:PageContent] AS s where s.[cq:lastReplicated] IS NOT NULL AND ISDESCENDANTNODE(s,[/content])
 
Thanks!!

Avatar

Level 1
Thanks @vanegi for your response, I agree with your solution on Asset detail export. But I am looking for a special case where I have to export the Page and Asset URL from the dispatcher along with its cq:LastModified/jcr:LastModified date. Getting the dates is a tricky part here.