Rahul_G
(Rahul Gamini)
1
Hi Team,
I have a requirement where I need to set value of a particular property when ever any flow in a casetype opens.
I’m trying to achieve it through data transform, so is there a way to call data transform across casetype when ever a flow starts.
If not is there a way to achieve it in any other way.
Thanks in advance.
Gaurav25
(Gaurav Sharma)
2
@Rahul G There are a few OOTB activities that you need to override in our application case type to set the values.
-
Newdefaults → NewHarness
-
OpenDefaults → PerformHarness [Case Creation]
-
Performdefaults → PerformHarness [Case Update] -->Override for your current requirement.
-
CloseDefaults → PerformHarness [Case Resolved]
@gamir
Please go through below articles for better understanding on extension points.
extension-points-in-pega-platform-part1
extension-points-in-pega-platform-part2
Rahul_G
(Rahul Gamini)
4
Hi All,
Used pyPopulateCaseContentsWrapperExtension extension Datatransform to achieve this.
Thanks for the help.