cancel
Showing results for 
Search instead for 
Did you mean: 

How to add prefix to Tranformations mapping in IPS Job

SAPSupport
Employee
Employee
0 Kudos
100

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"
            },


------------------------------------------------------------------------------------------------------------------------------------------------
Learn more about the SAP Support user and program here.
View Entire Topic
SAPSupport
Employee
Employee
0 Kudos

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%"
          }
        ]
      },