I had a last min user case come up that when the account type comes in as a Bot or anything else it needs to add it to the form of the first name of the identity username of the account. I am getting the SVC_ infront but i am not getting the first name added to it.
Needs to come in as SVC_“Firstname” or SVCBOT_“Firstname”.
Can i just get a quick look as I never have seen this output outside a error if i had the $ in front. Totally stumpped today
I have a firstname comming into from the file source. depending on the account type, if it is a BOT then it needs to added SVCRPA_plus the first name to make the Sailpoint UID name. If it is any other account type then it is just SVC_FirstName.
Sample:
Account Type: BOT
FIrst Name: ACME
Result: SVCRPA_ACME
OR
Account Type: Application
FirstName: Bob
Result: SVC_Bob
Ousmane provided an excellent response and I think that may be a great solution.
Make sure that the variables in the value are surrounded by curly braces; if a variable is next to text, ISC will consider it to be a part of the string and not use the variable value.
Not sure why I didn’t think about using if statement.
Sounds solid and I will have to think simpler. However, for this
I did try you value however it gave me a render error.