how to concatenate all variables
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-22-2018 08:22 AM
Hi All,
I have created a Record producer with 4 variables(Multi line text).It will create a story(rm_story). Now i want to concatenate all 4 variables in description field.How to achive that?
Note: All variables are multi line text.
Regards,
Ram

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-22-2018 08:31 AM
Hello Ram,
You can do this via scripting in record producer script field.
current.TARGET FIELD COLUMN NAME HERE = producer.PASS VARIABLE NAME 1HERE +' '+ producer.PASS VARIABLE NAME 2 HERE +' '+ producer.PASS VARIABLE NAME 3 HERE +' '+ producer.PASS VARIABLE NAME 4 HERE;
P.S: This will concatenate and display all variables in one line.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-22-2018 08:31 AM
Since this is a record producer, you can use the Script portion of the record producer to fill in different fields on the current target record. Let us say you have named your variables: var_one, var_two, var_three, var_four. Here is the way you can concatenate into the Description field:
var descText = producer.var_one + '\n';
descText += producer.var_two + '\n';
descText += producer.var_three + '\n';
descText += producer.var_four;
current.description = descText;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-22-2018 08:42 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-22-2018 09:17 AM
Hi Christopher,
Thanks.It worked.
Now, one story is created as expected. I want the notification needs to send to person who opened. can you please help me to send notification for the story creation as mail.