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
MK
2 years agoNew Contributor II
How to get data source and transformation profile information from workflow profile properties?
Hi Team,
how can we get data source, transformation rule profile and other information of workflow profile. Trying to get it from workflow profile attributes using the index but not able to find in...
- 2 years ago
ParserLayouts and the other Parser* tables. Transformation rules are also available in the api from Brapi.Import.Metadata.*. There are other bits in api.Parser if you're inside an actual Parser rule.
- 2 years ago
All the indexes are in Sharedconstants.WorkflowProfileAttributeIndexes, use IntelliSense to look them up and then you can use them like this:
brapi.Workflow.Metadata.GetProfile(si, "rootprofile.import").GetAttribute(myScenarioTypeId, sharedconstants.WorkflowProfileAttributeIndexes.TransformationProfile)
The tables concerning rules are the ones named "StageRules*". Please don't modify anything in these tables, just use them to read stuff.
JackLacava
OneStream Employee
2 years agoAll the indexes are defined as constants in SharedConstants.WorkflowProfileAttributeIndexes. So in your case it's Sharedconstants.WorkflowProfileAttributeIndexes.DataSource .
- MK2 years agoNew Contributor II
Thank you for the reply.
But how can I get the value of data sources from the key, which table to refer?
Thanks,
Manju K
- JackLacava2 years ago
OneStream Employee
ParserLayouts and the other Parser* tables. Transformation rules are also available in the api from Brapi.Import.Metadata.*. There are other bits in api.Parser if you're inside an actual Parser rule.
- MK2 years agoNew Contributor II
Thank you.
From where we can get the complete index information? I also need transformation profile index of workflow.
Thanks,
Manju K
Related Content
- 9 months ago
- 2 years ago
- 2 years ago
- 4 years ago
- 2 years ago