Question

Data propagation from subcase to parent case
I have a property which is being used in parent case and its subcase. We are updating this property in the subcase. What are the ways to propagate the newly updated value of the property to Top case?
***Updated by moderator: Lochan to update Categories***
-
Like (0)
-

Hi Bala,
We do not have any OOTB feature for data propagation from sub case to parent, OOTB provides feature of data propagation from Parent to Child only.
For doing any data copy from child to parent we can have our custom code by using Requestor Level Data Page or an Activity with Java code for accessing data from both parent case thread and child case threads.
Thanks,
Harsha A.

Hi Bala,
You can use data-transform/activity for setting updated values to top-case. Please visit below link for better idea:
https://mesh.pega.com/message/97383#97383
Thanks,
Prudhvi

Hi Prudhvi, URL (https://mesh.pega.com/message/97383#97383) is not opening. Would you please share other URL or title of topic. How can it be found by using search? Thank you.

You can create a DT and set target to pyWorkCover.<Propety Name>

I think we should not hardcode pyWorkCover. Please advise, if otherwise. Thanks.

Hi I created DT for pass values to pyWorkCover. values are copied,but it's not showing in parent case pyWorkCover. Can you solve it? Thanks

You can use UpdateCase smart shape for this purpose.
If you are just setting it on pyWorkCover, you need to also take care of saving the Cover page.
Could you also create a new thread to get better visibility as this is a dormant discussion?

Hi Bala,
You can get the Parent case context in Child case using Param.pyParentPageName. then you can set the value required ito the Parent case.

We need to have to pyParentPageName in parameters tab, pages & classes tab. Then pyParentPageName can be used as source page.

You can use UpdateCase smart shape to set values of child case to Parent case.