I'm trying to populate a paging grid with a list of all currently open tasks

I'm trying to populate a paging grid with a list of all currently open tasks for a given process model, with the intention of allowing a user to accept/re-assign multiple tasks at once. Is this something that can be achieved without writing a custom plug-in? Is there a way to pull data from one of the built-in task reports to accomplish this?...

OriginalPostID-93158

OriginalPostID-93158

  Discussion posts and replies are publicly visible

  • Try the Portal to SAIL plugin available under Shared Components.
    Hope that helps!
  • Hi I achieved almost same requirement... Following are steps you need to take.
    a. Create One Custom Task Report in which display all required task.
    b. In one process Model Use Execute Custom Report and configure above report.
    c. Save Information in one CDT which is going to use in Paging grid and display in the Form.
    d. Also save task id and Process ID of all the record in array PV.
    e. In form use 2 button Reassign and Approve. whenever button clicked ..Check Paging grid one of the record is selected using JavaScript. Save the selected index in one array pv.
    f. With those Index Value we need to get the selected proccesID.
    g. Configure Send and Receive Message. Send Task Action Value 1 for Reassign and 2 for Exception.
    h. At receiving End Check , Configure Condition on Escalation if sent value is 1 the Escalate task and reassign.
    e. If sent Value is 2 then make exception condition true and configure approved flow through exception.