Saviynt unveils its cutting-edge Intelligence Suite products to revolutionize Identity Security!
Click HERE to see how Saviynt Intelligence is transforming the industry.
Saviynt Copilot Icon

Issue with Workday Mapping while reading Data

SomDas
New Contributor
New Contributor

Hi Team,

Using OOTB Workday (SOAP) Connector to import user data.

Workday Team sending data under custom tag <Integration_Field_Override_Data> as below:

<wd:Integration_Field_Override_Data>
<wd:Field_Reference>
<wd:ID wd:type="WID">1bbd3e773cef10190b44d2fa6aca0001</wd:ID>
<wd:ID wd:type="Integration_Document_Field_Name" wd:parent_type="Integration_Document_Name" wd:parent_id="Additional Fields">WorkerType</wd:ID>
</wd:Field_Reference>
<wd:Value>Employee</wd:Value>
</wd:Integration_Field_Override_Data>

Here want to store the value 'Employee' in a custom Property.

Tried below but getting null value only 

"CUSTOMPROPERTY25": "Worker_Data(Integration_Field_Override_Data->Field_Reference->parent_id=='WorkerType').Value"

"CUSTOMPROPERTY25": "Worker_Data.Integration_Field_Override_Data.Field_Reference(type->parent_type->parent_id->ID=='WorkerType').Value"

Someone please help the correct code to read value here?

Regards,

Soumya.

2 REPLIES 2

NM
Honored Contributor II
Honored Contributor II

Hi @SomDas , 

Try this s

Worker_Data.Integration_Field_Override_Data(Field_Reference->ID=='WorkerType').Value

SomDas
New Contributor
New Contributor

Thanks a lot. It working !!!