mariavalenv19
2 years agoNew Contributor II
VLookUP Table
Hi,
I'm trying to look up values from a VLookUp table (previously made in the Transformation Rules) within a Complex Rule in my Data Source, MMomentoff how could I this? Thank you very much in adv...
- 2 years ago
Hi,
You can use the function:
BRApi.Utilities.TransformText(si, "LookupItem", "LookupGroupName", Boolean)
where "lookupitem" is the item you wish to look up and the "lookupgroupname" is the name of the name of the lookup transformation group. the boolean determines how to handle in the event the lookup item is not found. (see the intellisense information in OS)
If you will need to look up the same item repeatedly, you may want to consider using the global objects to store the results of previous lookups to avoid repeated calls of the BRAPI.
Regards,