cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

IPS: Email and Telephone Not Provisioned to Enable Now

tskwin
Participant

Accepted Solutions (0)

Answers (1)

Answers (1)

ThomasRauen
Explorer
0 Kudos

The default target transformation for enable now doesn't contain the phone number, you'll need to add it... 
https://help.sap.com/docs/identity-provisioning/identity-provisioning/sap-enable-now-e77702a9f53d4a1...

 

Why the e-mail is not displayed is unclear for me... as far as I can tell the user can't even get provisioned without an email address...

 "condition": "($.emails EMPTY false) && ($.userName EMPTY false) && isValidEmail($.emails[0].value)",

are you sure that this user was provisioned over IPS?

tskwin
Participant
0 Kudos

Hello @ThomasRauen

Thank you for your support.

Yes, the users are provisioned with IPS. I got the transformation code for Enable Now from here: SAP Enable Now Documentation.

Each user has an email address in the "Email" field in IAS.

However, there is no email address visible here.

scr1.png

Many Thanks

Best Regards

 

ThomasRauen
Explorer

Hi @tskwin,

i guess the displaying of those attributes could be partially "independent" of the IPS provisioning. 
In Jam / WorkZone for example it was possible to set the values the profile is displaying, and maybe the viewer is struggling with the fact that the emails are provided as a list... 

You could try to access the SCIM API of Enable Now to see the full set of information on your user to check if the email-address is there. 
There was a Improvement Request which brought in the SCIM API for Enable Now, maybe you can find a How-To in that context:
https://influence.sap.com/sap/ino/#/idea/293565/?section=sectionDetails
 

To get the phone number added you could try:
{
"sourcePath": "$.phoneNumbers",
"targetPath": "$.phoneNumbers",
"optional": true,
"preserveArrayWithSingleElement": true
},
it would meet the "standard" paths for SAP Cloud Identity Directory and SCIM v2...


best regards