Hello I need a report of dam assets group by there tag name. I should be able to filter the assets by tag name. Please assist.
Solved! Go to Solution.
Views
Replies
Total Likes
I know there is some limitation for the AEM OOTB assets reports generator but you can use the ACS commons report generator tool by specifying queries as per your requirement.
https://adobe-consulting-services.github.io/acs-aem-commons/features/report-builder/index.html
There is an OOTB asset view servlet http://localhost:4502/bin/wcm/contentfinder/asset/view.json/content/dam/
This gives a list of all assets along with some metadata information. See this https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/aem-generate-asset-report-...
If you want to get a list of assets with a specific tag, you can try using the query builder,
http://localhost:4502/libs/cq/search/content/querydebug.html?_charset_=UTF-8&query=type%3Ddam%3AAsse...
The code below finds all dam:Assets with a specific tagged:
type=dam:Assets
path=/content/dam/
tagsearch=AEM_TAG_HERE