- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2022 03:35 AM
Hi Team,
Is it possible to disable the catalog item access from the traditional service catalog backend view and allow the access or request submission only from the portal?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2022 05:25 AM
you can write onSubmit catalog client script which runs for Native and stop the form submission
UI Type - Desktop
Script
function onSubmit(){
alert("You are not allowed to submit from backend");
return false;
}
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2022 05:25 AM
you can write onSubmit catalog client script which runs for Native and stop the form submission
UI Type - Desktop
Script
function onSubmit(){
alert("You are not allowed to submit from backend");
return false;
}
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2023 02:16 AM
Hi Ankur,
Even I have the similar requirement but we don't any of the catalog item to be summitted from backend, we have 400+ catalog items writing catalog client script for induvial catalog item is a very big task. Is there any other way to achieve this?