Can anyone suggest how to use Vlookup table transform in Workflow. As per my requirement i have to check key and get value in workflow based upon dynamic input.
is there any possiblity to gey key , value pairs and use in the workflow/.
Requirement i am checking is similar get
Usecase1: entitlement/role value based on the Location value . We have key and value pairs for this scenario so planning to use Lookup transform and delimited source[ Delimited source is like new key-value pairs will be added according to business requirement].
While we can’t use transforms directly within workflows, here’s an approach that could help achieve your use case:
HTTP Action
Use an HTTP request to fetch accounts from the source where the accountId is mapped to the location (assuming you’ve mapped location as the account ID in the source).
Make the below API call in the Action
{{baseUrl}}/accounts?filters=sourceId eq "source ID of the delimited file" and nativeIdentity eq "location"
This will return the account attributes (such as entitlement/role values) associated with the matched location, which you can then use in the subsequent steps of the workflow.] Sample response of above API call will look like :
One more Suggestion regarding the Data Segmentation. I have created Segment and added users & entitlements to it , published the Segment. But still i can see all other users are able to see the entitlements even i restricted from Data segmentation. any Idea?
Identity Security Cloud org admins can use the system features UI to enable or disable data segmentation for your implementation. This feature is disabled by default, meaning that users’ access to records is always global.
Go to Admin > Global > System Settings.
Select System Features from the left navigation.
Select the Data Segmentation checkbox.
Select Save.
When data segmentation is disabled, you are still able to use the UI and edit segments. However, even published and enabled segments do not affect user access unless the data segmentation feature is enabled in the system settings.
When data segmentation is enabled, it controls users’ record level access. Any records that were previously restricted on a given source by a sub-administrator user level, such as role sub-admin and source sub-admin, are no longer restricted.