Skip to main content
Member
July 13, 2026
Solved

Get Workflow POV in an extender Business Rule

  • July 13, 2026
  • 1 reply
  • 52 views

Is it possible to get the current WF POV in an extender business rule?  Would anyone have an example of doing this?

 

Thanks,

Scott

Best answer by sameburn

Hi ​@ssmith-nova 

You should be able to derive this from SessionInfo e g

Dim wfClusterPk As WorkflowUnitClusterPk = si.WorkflowClusterPk

From this object you can get workflow profile key, workflow scenario key and workflow time key 

Alternatively if calling the Extender BR from a Data Management step, for example you can pass in WF or POV Substitution Variables as Name Value Pairs

E.g WFProfile=[|WFProfile|], WFScenario=[|WFScenario|], WFTime=[|WFTime|], etc

Hope this helps

Sam

1 reply

sameburnAdvisorAnswer
Advisor
July 14, 2026

Hi ​@ssmith-nova 

You should be able to derive this from SessionInfo e g

Dim wfClusterPk As WorkflowUnitClusterPk = si.WorkflowClusterPk

From this object you can get workflow profile key, workflow scenario key and workflow time key 

Alternatively if calling the Extender BR from a Data Management step, for example you can pass in WF or POV Substitution Variables as Name Value Pairs

E.g WFProfile=[|WFProfile|], WFScenario=[|WFScenario|], WFTime=[|WFTime|], etc

Hope this helps

Sam