Leveraging Intelligent Recommendations for Operational Transformation. AMS Partners click HERE | EMEA/APJ Partners click HERE |
07/30/2024 11:29 AM
Hi,
I need to populate values into Dynamic attribute from another endpoint entitlements, if we can populate how we can? or can we populate with SQL query.
07/30/2024 11:51 AM - edited 07/30/2024 11:52 AM
Hi @VisveswaraReddy ,
Yes, you can populate in DA using 'Single Select from SQL Query' or 'Multiple Select from SQL Query'
Sample Code below:
select ev.ENTITLEMENT_VALUE as id from entitlement_types et inner join endpoints e on et.ENDPOINTKEY=e.ENDPOINTKEY inner join entitlement_values ev on et.ENTITLEMENTTYPEKEY=ev.ENTITLEMENTTYPEKEY where e.ENDPOINTNAME=<NAME OF THE ENDPOINT>
Note: DA will not generate any task.
If this helps, please consider selecting Accept As Solution and hit Kudos
07/30/2024 08:04 PM