Add field E-mail List in Provioning of SAP

Good moorning,

In SAP account creation, we need to send in the “E-mail List” field with two emails. Is this possible?

Greetings

Hi @robertoMoreno,

You can make mail attribute on SAP as multi-valued in CREATE provisioning policy using API.

2 Emails that you want to send are part of multiple identity attributes?

Thanks.

Hi Nikhlesh,

A value is of the identity. The field “WorkDay”. The other value is a mail static. I have tried:

$E-Mail, [email protected] and [$E-Mail, [email protected]]

I use the $E-mail attribute, because I have previously defined it with the WorkMail attribute of the identity

Greetings

Can you make isMultiVlaued attribute as true in provisioning policy, and then use create unique account id and add like below.

${email}, [email protected]

Thanks.

The attribute E-Mail List is make Multi-Valued:

imagen

In the provission:

But I get the same error.

Greetings.

This is in Account Schema, I was talking about in CREATE Provisioning policy. You can use below link to GET the Provisioning Policy for Source and see if isMultivalued is true for E-mail like below.

list-provisioning-policies | SailPoint Developer Community

If isMultiValued is false than you can use this API to update the Policy.

put-provisioning-policy | SailPoint Developer Community

Also, I think in mapping static will not work here, you need to try to Create Unique Account ID.

Thanks.

SAP has ‘work email’ and ‘personal email’ fields, that can be different or the same, but neither of them can hold two addresses

I have put in CREATE Provisioning policy:

{
“name”: “E-Mail List”,
“transform”: {
“type”: “rule”,
“attributes”: {
“name”: “Create Unique Account ID”
}
},
“attributes”: {
“template”: “${e-mail}, [email protected]
},
“isRequired”: false,
“type”: “string”,
“isMultiValued”: true
}

I get the same error

SAP has the field “E-mail List” that it accept some values.

Greetings.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.