Hi all.
I would like to know if anyone has sent multiple values to the “Parameters” attribute using the SAP Direct connector.
The documentation says the following:
Parameter list in the format: parameter_ID=parameter_value
I have tried to do it like this:
BUK=110;SCL=X;WRK=0005
y
BUK=110,SCL=X,WRK=0005
y
or
[BUK=110],[SCL=X],[WRK=0005]
but this doesn’t work, has anyone done it?
Thanks in advance,
Regards!
Update: I was able to do this by creating an UPDATE Policy as follows:
{
“name": ‘Update User’,
“description": null,
“usageType": ‘UPDATE’,
“fields": [
{
“name": ‘Parameters’,
“transform": {
“type": ‘identityAttribute’,
“attributes": {
“name": ”sapParameters”
}
},
“attributes": {
“cloudDelimiter": ”,”
},
“isRequired": false,
“type": ‘string’,
“isMultiValued": true.
}
]
}
however, this attribute must be updated, when I update it, sometimes it duplicates certain values, i.e. I should see:
BUK=110
MOL=32
however, I see
BUK=110
MOL=32,BUK
when my input value (Identity Attribute) is: MOL=32,BUK=110
Is there any way to make this work well in attribute synchronization?
system
(system)
Closed
May 13, 2025, 11:07pm
3
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.