Open one catalog item from another
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-12-2017 02:58 AM
Hi All
Can we open second catalog item based on what we select in the 1st catalog item and submit the values in second and return to the 1st one to enter rest of the data and submit the 1st catalog req.
any way we can handle this?
- Labels:
-
Scripting and Coding

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-12-2017 03:03 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-12-2017 03:13 AM
The prob with order guide is if I select a value which should not open an item then in that case, my order guide would have no items. so, it wont work.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-12-2017 03:15 AM
My req is like there is a catalog ite and on selection of a value i need another catalog item to show up. One should enter that and submit it and be back to the 1st one. But with order guide the prob is if one selects a value for which it should not show a new catalog item, thn there is no RITM to be created as no items will be there.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-08-2018 11:48 AM
When had a scenario where if a box was checked, a new catalog item (actually a record producer in this case) was opened. I used a script within the UI Policy on the checked field:
function onCondition() {
var url = '/nav_to.do?uri=/com.glideapp.servicecatalog_cat_item_view.do%3Fv%3D1%26sysparm_id%[enter sys id of the catalog item here]%26sysparm_catalog_view%3Dcatalog_default';
alert('A new window will open for entry. When that is complete, please come back to this form ....');
var win = window.open(url, '_blank');
win.focus();
}
This will open a second window with the second catalog item.