Click HERE to see how Saviynt Intelligence is transforming the industry. |
06/12/2024 04:26 AM
Hi,
i am currently using the GETDATE() to get. its giving me in format. (
2024-06-12 12:24:06.157)
I need to get the date in format " 2035-12-11T19:28:00Z "
the error i am getting is.
Has anyone worked on same scenario before?
06/12/2024 05:57 AM
Which connector?
06/12/2024 05:58 AM
REST
06/12/2024 06:03 AM
Please confirm full use case. Is this import or provisioning json
06/12/2024 06:06 AM
this is removeAccount JSON. we need to send date in " 2035-12-11T19:28:00Z " format in TermindationDate attribute.
06/12/2024 06:11 AM
${Date.parse("yyyy-MM-dd'T'HH:mm:ss'Z'", user.customproperty1)}
06/12/2024 06:18 AM
will it store the value in CP1 and then i need to use CP1 in terminationDate: "user.cp1" ?
Can you please help me with the explanation of this/
06/12/2024 06:19 AM
Change format / cp as per your needs
06/13/2024 05:30 AM
Error in processWebservicecom.fasterxml.jackson.core.JsonParseException: Unexpected character ('G' (code 71)): was expecting comma to separate Object entries at [Source: {schemas":["urn:ietf:params:scim:api:messages:2.0:PatchOp"]
06/13/2024 06:21 AM
Getdate() is mysql method and it will not work.
where is date is stored ? User attributes or you want to use todays date
06/13/2024 06:38 AM
ok,
I want to pass the current date basically.
Its not stored anywhere.
06/13/2024 06:41 AM
${Date.parse("yyyy-MM-dd'T'HH:mm:ss'Z'", new Date())}