I am trying to configure a custom report that pulls pages from a path that should exclude some directories.
For ex:
I wanted everything under /content business except the below directories
/content/business/enterprise(Site A)
/content/business/support(Site B)
How can i configure the root path for the report? I tried using a regex but didn't seem to work. Also tried to add a property constraint on the querybuilder
to include only resourceType of Site A but i cannot include another value to it.
N:propertyConstraints
[
N:<name> // array of nodes (name irrelevant), each with the following properties:
P:name
P:value
]
<!-- ... -->
<
jcr:content
cq:designPath
=
"/etc/designs/reports/userreport"
jcr:primaryType
=
"cq:PageContent"
sling:resourceType
=
"cq/reporting/components/reportpage"
>
<
report
jcr:primaryType
=
"nt:unstructured"
rootPath
=
"/home/users"
sling:resourceType
=
"cq/reporting/components/compreport/compreport"
/>
</
jcr:content
>
<!-- .. -->
Solved! Go to Solution.
Views
Replies
Total Likes
We gave wriiten many tools that search the JCR and dump out results. I find using a custom App with the JCR API and outputting the data to Excel works best.
Views
Replies
Total Likes
Can you post the Querybuilder syntax you are using.
Views
Replies
Total Likes
We gave wriiten many tools that search the JCR and dump out results. I find using a custom App with the JCR API and outputting the data to Excel works best.
Views
Replies
Total Likes
Thank you i decided to follow this path. Thanks for the suggestion.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies