How to create catalog item via inbound email When I receive the notification, we have to submit req
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2024 07:42 AM - edited 02-05-2024 07:42 AM
Hi,
How to create catalog item via inbound email When I receive the notification, we have to submit a ticket with this cat item.
How to do it, can anyone help on this. It will be helpful.
Thanks in Advance!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2024 06:08 AM
Hello @mania ,
Please add the below script
var ritm = new GlideRecord('sc_req_item');
ritm.initialize();. // To create RITM record
ritm.setValue('item','sys_id of catalog item');//set item and all other variables to the RITM
ritm.insert();
hope this helps. If my previous solution helped in your query kindly click on like icon and mark it as accepted solution