Transform firstname lastname (nickname)

how to create transfer to full data from SAP success factor with this format.
firstname lastname (nickname)

the format will get data from SAP SF for firstname [space] lastname [space] (nickname)
Firstname LastName (NickName)

Hi @nguanizo2,

If you are getting the firstname, lastname and nickname from the source, you can try something as below :

{
    "name": "Display Name and NickName",
    "type": "concat",
    "attributes": {
        "values": [
            {
                "attributes": {
                    "sourceName": "SAP SF",
                    "attributeName": "First Name"
                },
                "type": "accountAttribute"
            },
            " ",
            {
                "attributes": {
                    "sourceName": "SAP SF",
                    "attributeName": "Last Name"
                },
                "type": "accountAttribute"
            },
            " (",
            {
                "attributes": {
                    "sourceName": "SAP SF",
                    "attributeName": "Nick Name"
                },
                "type": "accountAttribute"
            },
            ")"
        ]
    },
    "internal": false
}

Thanks @jesvin90 , its working now.

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