Click HERE to see how Saviynt Intelligence is transforming the industry. |
08/21/2023 12:24 AM
Hi ,
we have a REST connection where the target start date attribute comes in the form as below:
08/21/2023 02:55 AM
Hello @Abdul_Gaffar,
import start date from target app into some customproperty, say cp1 (where cp1 will have the value 06/15/2023 00:00:00.000000)
then use below calculation for startdate
"UPDATE NEWUSERDATA NU LEFT JOIN CURRENTUSERS CU ON NU.SYSTEMUSERNAME = CU.SYSTEMUSERNAME SET NU.STARTDATE = STR_TO_DATE(SUBSTRING_INDEX(NU.CUSTOMPROPERTY1, ' ', 1),'%m/%d/%Y')"
Thanks,