The OneStream Community is temporarily frozen until June 29th due to the ongoing maintenance. Please read the blog post here to learn more.
Forum Discussion
ericb
3 years agoNew Contributor II
BRAPI rule for getting Text field from Workflow
I'm trying to pull a Text field from a workflow in a transformation event handler rule but ran into an issue. I originally tried to use api.Workflow.GetWFText1() but that does not work in a transfor...
- 3 years ago
Hi,
Try the following
Dim wftext1 As String = api.WorkflowProfile.GetAttributeValue(ScenarioTypeID.Actual, SharedConstants.WorkflowProfileAttributeIndexes.Text1)ScenarioTypeID.<TheScenarioTypeYouHavetheTextPropStoredOn>
LeeB
3 years agoContributor III
Hi,
Try the following
Dim wftext1 As String = api.WorkflowProfile.GetAttributeValue(ScenarioTypeID.Actual, SharedConstants.WorkflowProfileAttributeIndexes.Text1)
ScenarioTypeID.<TheScenarioTypeYouHavetheTextPropStoredOn>
- sfilho3 years agoNew Contributor III
Would be a version of this in BRApi ?