How to call data transform in every flow of a casetype

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.

@Rahul G There are a few OOTB activities that you need to override in our application case type to set the values.

  1. Newdefaults → NewHarness

  2. OpenDefaults → PerformHarness [Case Creation]

  3. Performdefaults → PerformHarness [Case Update] -->Override for your current requirement.

  4. 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

Hi All,

Used pyPopulateCaseContentsWrapperExtension extension Datatransform to achieve this.

Thanks for the help.