Expand my Community achievements bar.

Nomination window for the Adobe Community Advisor Program, Class of 2025, is now open!
SOLVED

I need a report of dam assets grouped by tags

Avatar

Level 4

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.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor
4 Replies

Avatar

Community Advisor

@ranadyutis95334 

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 

 

 

Avatar

Correct answer by
Community Advisor

Avatar

Employee

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-...

 

Avatar

Community Advisor

@ranadyutis95334,

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

BrianKasingli_0-1605875258669.png