- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2019 11:41 AM
If I have a string variable on a Record Producer (say Record Producer Name), I can set the default value to javascript:current.cat_item and it will populate the variable with the name of the current record producer.
If I have a variable set on the record producer with the same variable (so I can use it in multiple record producers) how can I get the name of the current record producer when the form is loaded (in the Service Portal)?
Thanks,
Rhonda
Solved! Go to Solution.
- Labels:
-
Service Catalog

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2019 12:12 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2019 12:12 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2019 02:08 PM
Thanks so much!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2020 03:32 PM
A minor variation to above usecase. I had to make a variable to store the record producer that is used to create an incident.
i made a variable of type reference and made default value as javascript:g_form.getUniqueValue()
Using this approach, I was able to also populate assignment group on incident based on fulfillment group on record producer.
current.assignment_group = producer.<variable_name>.group;