내 커뮤니티 업적 표시줄을 확대합니다.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.

해결됨

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 채택된 해결책 개

Avatar

정확한 답변 작성자:
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!!

원본 게시물의 솔루션 보기

2 답변 개

Avatar

정확한 답변 작성자:
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.