활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.
활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.
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.
해결되었습니다! 솔루션으로 이동.
조회 수
답글
좋아요 수
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])
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])
조회 수
답글
좋아요 수
조회 수
Likes
답글