- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2023 07:12 PM
Hello, It's Kentaro.
I create catalog items with Record Producer and manage variables with Variable Sets.
I would like to register the entered value in Incident, but it does not work.
I tried using Variable Set's Catalog Client Script and Incident's Business Rule, but without success.
Sorry to ask such a basic question.
I would like to know how to solve this problem.
Thanks,
Kentaro.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2023 09:25 PM
You can add some lines into the Record Producer Script to achieve it.
Sample below.
Sample Script
current.u_target_user = producer.it01_target_user;
current.u_target_user_organization = producer.it01_target_user_organization;
current.u_organization = producer.it01_organization;
current.u_target_user_organization_other = producer.it01_target_user_organization_other;
Just add more fields into the script per your requirement.
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-24-2023 12:21 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2023 12:18 AM
Hi, @Tai Vu !
Thank you fore replying.
My English was wrong.
I would like to know how to display the following screen.
>My suggestion would be to place the script within the Record Producer. The simple rationale behind this is, why create a Business Rule when we can accomplish the same goal using the Record Producer we've already set up? 😉
I see, I understand.
There's no need for a Business Rule when you can complete it with a Record Producer.
Thanks,
Kentaro.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2023 12:21 AM
Sorry, I found it!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2023 12:33 AM
@Kentaro Numata Haha, there's absolutely no problem at all. I'm glad that you've figured it out. 🎉
Cheers, 🍻
Tai Vu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2023 04:53 PM
Thank you @Tai Vu !!!