Skip to main content
April 22, 2025
Solved

Get the "Workflow Name" setting from a workflow profile in a business rule?

  • April 22, 2025
  • 2 replies
  • 0 views

Is it possible to get this setting in a business rule?



Thanks,

Scott

Best answer by RobbSalzmann

Hi Scott,

This should do it:
Dim workflowName as String = BRApi.Workflow.General.GetUserWorkflowInitInfo(si).GetSelectedWorkflowUnitInfo().WorkflowName

2 replies

April 22, 2025

Hi Scott,

This should do it:
Dim workflowName as String = BRApi.Workflow.General.GetUserWorkflowInitInfo(si).GetSelectedWorkflowUnitInfo().WorkflowName

April 23, 2025

Thank you!!