Skip to main content
Question

Combining expressions inside each other

  • January 20, 2023
  • 2 replies
  • 118 views

I am trying to make the expression build the email for new employees. Its real simple, first inital, last name. I cannot seem to combine a concat and a charat in the same expression so it can scrape the first inital of the first name, get the last name from the ticket, and then combine it all together. 
I was thinking

concat(

'charAt('{{ticket.onboarding_request.actor_1.cf_employee_name}}', 0)',

 

 '{{ticket.onboarding_request.actor_1.cf_employee_last_name}}')



Result: charAt('Value 1', 0)Value 2

But this does not work. I have tried to play with the parenthesis and quotes, so if one is off here that isnt the problem

Did this topic help you find an answer to your question?

2 replies

PatrickMurphy
Skilled Expert
Forum|alt.badge.img+9
  • Skilled Expert
  • 110 replies
  • January 20, 2023

I use the Azure create user function and for UPN I set it up as

{{ticket.ri_93_cf_employee_first_name | first | downcase}}{{ticket.ri_93_cf_employee_last_name |downcase}}@mydomain.com

 

I know it maybe different in that field versus expression builder.  However i tried to concat and others before I found the | first


afautley
Skilled Expert
Forum|alt.badge.img+11
  • Skilled Expert
  • 194 replies
  • January 23, 2023

Hi @PatrickMurphy 

 

When you say the “azure create user function” do you mean the app 
 

 

And where do you add that code using the “|first”??? 

I tried to add the code “{{ticket.ri_93_cf_employee_first_name | first | downcase}}” into an expression and it did not work. 


Reply