How to open Workobject or case from a link in a portal

Hi All,

I have a requirement like i need to display all the workobject(cases) in a table & once click on any of the workobject(case) then it should display same in portal or popup window with all the details. here it’s should display in the stage where it was left. tried with all open assignment or open work by handle option but it didn’t work.

Thanks

SorenTara

@SORENTARA

This can be done in 3 ways.

  1. Add Open Selected Item Action in Click event.

  2. Open Work By Handle Action in Click event and pass pzInsKey as Param.

  3. Open Work Item Action in Click event and pass pyID as Param.

@KAMINENICHANDRAP

Thanks for your reply, I’ve already tried all these way but it’s displaying only the header & footer part of the workobject(case) not the assignment,it’s showing in review mode. Here I’m trying to open the work object from a table which contains all workobject lists.

Thanks

@SORENTARA Try with pxOpenByKeys activity. It will work for your requirement

Hi @SORENTARA,

To open a case in perform mode you should use the action set "OpenAssignment’ with Key as the WorkObject Assignment key.

  1. To list cases you should source the Table with a DataPage pointing to a ReportDefenition.

  2. Do a join in RD with either assign-worklist / assign-workbasket as per your requirement.

  3. Then Source the caseID and pzInskey of the Assign- Class.

Attached sample configuration of the report screenshot and section configuration.

@KAMINENICHANDRAP Thanks, the first approch worked for me .