Click HERE to see how Saviynt Intelligence is transforming the industry. |
04/12/2022 01:03 PM
Hello Community,
How can we assign user group to an SAP account from Saviynt? I have tried following JSON, but it didnt work.
{
"ADDRESS": {
"LASTNAME": "${user.lastname}",
"FIRSTNAME": "${user.firstname}",
"E_MAIL": "${user.email}",
"COMM_TYPE": "INT"
},
"LOGONDATA": {
"GLTGB":"${new java.text.SimpleDateFormat('yyyyMMdd').format(user.enddate)}",
"USTYP":"A"
},
"CLASS": {
"USERGROUP": "SYSTEM"
},
"DEFAULTS": {
"LANGU": "EN"
},
"SNC": {
"PNAME": "p:${accountName}@${user.customproperty4}.com"
},
"PASSWORD": {
"BAPIPWD": "Welcome@1"
}
}
Any help on this is appreciated
Solved! Go to Solution.
04/12/2022 02:16 PM
Hi Yashpal,
Pls give definition for group under "LOGONDATA" tag only as shown below and remove "class" tag.
"LOGONDATA": {
"GLTGB":"${new java.text.SimpleDateFormat('yyyyMMdd').format(user.enddate)}",
"USTYP":"A",
"CLASS":"SYSTEM"
}
Regards,
Kiran Kumar
04/12/2022 02:16 PM
Thanks Kiran, this works.
Regards,
Yashpal