Announcing the SAVIYNT KNOWLEDGE EXCHANGE unifying the Saviynt forums, documentation, training, and more in a single search tool across platforms. Click HERE to read the Announcement.

SAP - Create account

prachi
Regular Contributor II
Regular Contributor II

Hi,

I am working on creating an account in the SAP system from Saviynt.

I have to update the below attribute in SAP with value "EN", so have to add it in Create account JSON?

prachi_0-1677503301933.png

{
"ADDRESS": {
"LASTNAME": "${user.lastname}",
"FIRSTNAME": "${user.firstname}",
"E_MAIL": "${if(user?.email != null){user?.email} else {''}}",
"DEPARTMENT": "${user.departmentname}",
"FUNCTION": "${user?.title}"
},
"LOGONDATA": {
"GLTGB": "****",
"TZONE": "****",
"CLASS": "*****"
},
"SNC": {
"PNAME": "*****"
},
"DEFAULTS": {
"DCPFM": "${user.customproperty24?.tokenize('|')[0]}",
"DATFM": "${user.customproperty24?.tokenize('|')[1]}",
"SPLD": "LOCL",
"SPDB": "G",
"SPDA": "D",
"TIMEFM": "0"
},
}

 

4 REPLIES 4

SB
Saviynt Employee
Saviynt Employee

That is correct, You will need to add it in Create Account JSON.


Regards,
Sahil

prachi
Regular Contributor II
Regular Contributor II

Yes i understand that but how is this attribute exposed in Saviynt?

I tried to use LOGON_LANG inside "DEFAULTS" in the above JSON but that was not working , throwing error so my question is where and how do i mention this attribute.

adriencosson
Regular Contributor III
Regular Contributor III

Hi @prachi,

Inside "DEFAULTS", you can insert "LANGU" and set the "EN" value as requested.

Please let us know if this works.

In addition, the sample JSON gives a quick view of available attributes related to language / country information in SAP connector :

{  
	"ADDRESS":{
	  "NAMCOUNTRY":"EN",
	  "LANGUP_ISO":"EN"
   },
   "DEFAULTS":{  
	  "LANGU":"EN",
   },
}

Hope this helps !

Regards,
Adrien COSSON

prachi
Regular Contributor II
Regular Contributor II

This worked. thankyou.