Catalog item
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-09-2024 11:21 PM
Hi Team,
Can anyone help me please!!!
When end user opened the item in backend in service catalog page that respective URL need to redirect to portal with same sys id.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-09-2024 11:28 PM
Hello @Vinya Jakkula
You can write an onload catalog client script in the catalog item and set the applies to desktop and runs only in catalog item, not RITM or SCTASK. and in script you can write window.open() with portal URL.
Thank you,
Ali
Thank you,
Ali

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-09-2024 11:35 PM
Hello @Vinya Jakkula
You can create a onload client script on the catalog item, set the applies to desktop and check only catalog item and Target record is not checked. Now in script you can write window.location to redirect to portal.
Example script:
Thank you,
Ali
Thank you,
Ali
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-09-2024 11:32 PM
create client script.
function onLoad(){
try{
if(window == null){
// portal view so allow
}
}
catch(ex){
// native
alert('You are not allowed to submit from native');
return false;
}
}
Thanks
dgarad