OriginalPostID-231320
Discussion posts and replies are publicly visible
Hi Harsh,If you are using in uesr interfacethen takelocal!data: a!fromjson([{"EMP_ID":1,"EMP_NAME":"ABC","ORG":"VPC","MANAGER_CONTACT_NAME":"My Name"}]),
then for each field uselocal!empId = index(local!data,"EMP_ID",null)
if you need all values map to CDT thentype!respective CDT (ex:Emp-Data)(
empId:index(local!data,"EMP_ID",null),
empNmae:index(local!data,"EMP_NAME",null)...etc
)