List of all active tasks and instances in tempo report

Hello,

I am looking to create a list of all active tasks/instances in tempo report, which has 2 columns, Name of the task/instance and it whom it is assigned.

I know that we need to use getportaldatasubset function, but I am still to figure out , how to get all the active tasks/instance report in portal.
Any pointers would be helpful.

Regards,
harish.

OriginalPostID-140098

OriginalPostID-140098

  Discussion posts and replies are publicly visible

Parents
  • Hi Harish,
    You can try the following. Create a constant of document type and set the report as its value. Now refer that constant in the report Id of the function and set {} for the contextId. Your code will look like this
    getPortalReportDatasubset(
    reportId: cons!YOUR_CONSTANT,
    pagingInfo: ri!PagingInfo,
    contextIds: {}
    )
    Create it as a rule and call that rule in the datasubset of grid. Accordingly, generate the grid using the datasubset.
Reply
  • Hi Harish,
    You can try the following. Create a constant of document type and set the report as its value. Now refer that constant in the report Id of the function and set {} for the contextId. Your code will look like this
    getPortalReportDatasubset(
    reportId: cons!YOUR_CONSTANT,
    pagingInfo: ri!PagingInfo,
    contextIds: {}
    )
    Create it as a rule and call that rule in the datasubset of grid. Accordingly, generate the grid using the datasubset.
Children
No Data