Click HERE to see how Saviynt Intelligence is transforming the industry. |
09/13/2024 01:00 PM
Hi All,
We have the below use case for contractor to employee conversion and vice versa
Use Case:
Solved! Go to Solution.
09/13/2024 02:54 PM
You need to ask workday team to provide flag on conversation E2C or c2E and then use preprocessor to process either or record
09/14/2024 12:21 AM
@musthak_ahamad , we had the same use case. We are using SOAP for import and have asked workday team to provide an integration field e2c or c2e. If flag is set, then delete that entry in preprocessor
09/15/2024 04:57 AM - edited 09/15/2024 05:00 AM
mappings and query
1) CCW Import
Mapping : "CUSTOMPROPERTY12": "Worker_Data.Integration_Field_Override_Data(Field_Reference->ID=='EEtoCCW').Value"
Preprocessort
"DELETE FROM NEWUSERDATA where customproperty12='Y'",
2) Employee Import
"CUSTOMPROPERTY12": "Worker_Data.Integration_Field_Override_Data(Field_Reference->ID=='CCWtoEE').Value",
"DELETE FROM NEWUSERDATA where customproperty12='Y'",
In your case , you can ask workday team to have a flag in RaaS report that will give any conversion. Attribute name could be "WorkerConversion" (for example) and values could be "EE2CCW" or "CCWtoEE" on the old record. On new record , this flag/attribute will be null.
In preprocessor, you can use
"DELETE FROM NEWUSERDATA where customproperty12 in ('EE2CCW','CCW2EE'),
This query will stop updating the old / transferred record going forward