Question
LTIMindtree
IN
Last activity: 19 Feb 2024 3:00 EST
Case creation through agent as well as manual initiation
Hi All,
I have once scenario for case creation, we have one case type and that should be created in 2 ways
1.User will initiate the case manually from portal
2.We need to create a case from the backend(assume through agent)
so he the scenario is when user initiate the case we should show create stage and associated process to it, at the same time when the same case type initiated through agent we should skip the create stage and the case should be land on the second stage.
Currently we are facing routing information is not found error when agent create the case,
can I get any input on this scenario how we can skip the stage during background processing of the case.
@SohamChanda1107 Thanks for response on this request, The issue got resolved after following the below steps
earlier I was using svcAddWorkObject activity to create a case from background that is from data flow destination activity,
Here I was unable to set the flag on workpage, so I followed below steps to skip process in create stage
1.call createworkpage activity to create pyWorkPage
2.property-set to set required flag on workpage
3.call addwork activity to create work object
4.Updated the case type create stage process to start when the flag set in step2
5.so the process in create stage only executing when user initiate the case from portal and skip when case creates from background process.