- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-23-2017 02:50 PM
Hi Team,
How can I get a record producer on Service Portal? Like can anyone explain how to accomplish this?
Thanks,
Sharan
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-23-2017 10:12 PM
For the button, set the instance options: change the link type to catalog item, and then in the reference field select the record producer.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-23-2017 03:36 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-16-2018 07:30 AM
can you please specify the widget you are using here ? and can some one help me with this
https://community.servicenow.com/community?id=community_question&sys_id=b81e521edbc65bc04e1df4621f9619fb
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-13-2019 03:07 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-23-2017 07:28 PM
Hi Sharan,
dvp has a point about providing more information but on a basic level one way to do this is filter on the classname of the catalog item with a GlideRecord.
Example:
Widget: Server Script
var eq = 'sys_class_name=sc_cat_item_producer^active=true';
var sc_item_producer = new GlideRecord('sc_cat_item');
sc_item_producer.addQuery(eq);
while(sc_item_producer.next()){
// write your script to capture field values here
}