Expand my Community achievements bar.

can oob report component extend with specific filter

Avatar

Level 4

In OOB AEM reports we can create reports easily with different properties like cq:lastReplicatedBy and so on.

my case is can we get cq:lastReplicatedBy for admin only .

here i don't want to filter on report page.

i want to create a  component that have query like property cq:lastReplicatedBy and value admin (this is an example  )

<?xml version="1.0" encoding="UTF-8"?>

<jcr:root xmlns:cq="http://www.day.com/jcr/cq/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0" xmlns:nt="http://www.jcp.org/jcr/nt/1.0"

    jcr:primaryType="nt:unstructured"

    groupable="{Boolean}true"

    type="string">

    <queryBuilder

        jcr:primaryType="nt:unstructured"

       property="cq:lastReplicatedBy"/>

    <filters jcr:primaryType="cq:WidgetCollection">

        <_x0031_

            jcr:primaryType="nt:unstructured"

            filterType="string"

            id="filter"/>

    </filters>

</jcr:root>

here can i add a specific filter .

0 Replies