How to extract assets/image for a specified page
Hi All,
I want to extract all the assets for a specified page.
I'm trying to explore ACS Common report.
I have added "Report Builder Config" component and added below query.
SELECT * FROM [nt:unstructured] AS s WHERE ISDESCENDANTNODE([{{path}}]) AND CONTAINS(s.*, '/content/dam/MyWorkSpace')
Then I have added "Report Basic Parameter" where I have a textfiled which takes user inputs. i.e. page path.
In the result, I have added "Report Text Column" and I'm configuring the 'Heading' & 'property'. ex Heading is "Hero Image" & property is "landingHeroImage".
I have two images on page one is 'Hero Image' & other is 'Gallery Image' then I'm again adding "Report Text Column" for Gallery Image.
the output result of this is I have two different columns in results.
But instead of two column can I get these all assets result in single column.
This is my current result,
Sr.no Hero Image Gallery Image
1 ../../TestHeroImage.png ../../GalleryImage.png
I want to try like this
Sr.no Component Image Path
1 Hero Image ../../TestHeroImage.png
2. Gallery Image ../../GalleryImage.png
is it possible?