2 weeks ago
i have following use case:
i want to provision groups from entraID, but the name should be prefix_groupdisplayName for example: sapms_testgruppe.
can you provide me a solution how i solve my issue in this section:
{
"sourcePath": "$.displayName",
"targetPath": "$.displayName"
},
Request clarification before answering.
You may set property prefix.group.name=MS_ and use transformation below:
{
"sourcePath": "$.displayName",
"targetPath": "$.displayName",
"functions": [
{
"condition": "'%prefix.group.name%' !== 'null'",
"function": "concatString",
"prefix": "%prefix.group.name%"
}
]
},
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
73 | |
19 | |
9 | |
8 | |
7 | |
5 | |
4 | |
4 | |
3 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.