I am using getportalreportdatasubset plugin to create tempo report.

I am using getportalreportdatasubset plugin to create tempo report. I have list of task id (local!taskIdAllList) and placing filter like below. Its not working as expected & no filtering of data is happening!!



filters: {
                     if(local!selection="All",
                                                  {field: "11", operator: "IN", value: local!taskIdAllList},
                                                            {}
          
                                                  )}



Where the field no 11 correspond to task id field on portal report.

OriginalPostID-148825

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer
    I also faced the same issue, but then I downloaded the arf document of report and used the localId of column and it worked for me each time(Not sure it is correct or not)

    Column XML snippet from arf file

    <column>
    <drillPath>
    <enabled>false</enabled>
    </drillPath>
    <expression>=pv!testPv</expression>
    <formatToken>date</formatToken>
    <group>false</group>
    <lastFormatToken>date</lastFormatToken>
    <localId>12</localId>
    <name>Test date</name>
    <show>true</show>
    </column>
Reply
  • 0
    Certified Lead Developer
    I also faced the same issue, but then I downloaded the arf document of report and used the localId of column and it worked for me each time(Not sure it is correct or not)

    Column XML snippet from arf file

    <column>
    <drillPath>
    <enabled>false</enabled>
    </drillPath>
    <expression>=pv!testPv</expression>
    <formatToken>date</formatToken>
    <group>false</group>
    <lastFormatToken>date</lastFormatToken>
    <localId>12</localId>
    <name>Test date</name>
    <show>true</show>
    </column>
Children
No Data