- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2023 07:57 PM
Hello, It's Kentaro.
I created an incident form in Record Producer.
I have a question about Map to field of Variables.
Isn't it good for two Variables to specify the same Map to field?
When I set up the attached image, no data was registered in the table column.
Therefore, I created two custom columns.
Thanks,
Kentaro.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2023 08:48 PM
The Map to field does not work for Variables within Variable Set.
Let's try to put these lines into the Record Producer Script.
var department = producer.representative_department || producer.department;
current.u_affiliation_company_department = department;
Let me know if it works for you.
Cheers,
Tai Vu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2023 08:48 PM
The Map to field does not work for Variables within Variable Set.
Let's try to put these lines into the Record Producer Script.
var department = producer.representative_department || producer.department;
current.u_affiliation_company_department = department;
Let me know if it works for you.
Cheers,
Tai Vu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2023 05:40 PM
Hi, @Tai Vu !
Thank you for replying!!