- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2018 05:49 AM
Hello All,
How can we hide "Order confirmation pop up" for a particular catalog item in Service Portal?
Please find the screen shot below
Solved! Go to Solution.
- Labels:
-
Service Portal Development
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2018 08:39 AM
Correct solution is below go to sys_properties table and make "glide.sc.sp.twostep" = false if not existing create a new property with the same name
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2018 12:01 AM
Hi,
Try to bypass this condition in getOne() funtion in client script of sc catalog item widget.
if ($scope.data.sys_properties.twostep && $scope.data.sc_cat_item.sys_class_name != "sc_cat_item_producer"){
...
}
i just used
$scope.data.sys_properties.twostep = false;
if ($scope.data.sys_properties.twostep && $scope.data.sc_cat_item.sys_class_name != "sc_cat_item_producer"){
...
}
its working for me. hope it helps..

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2019 02:15 PM
This worked to disable the 'Order Confirmation popup' for just one particular catalog item on Service Portal.
(Instance is on London Patch 4 HotFix 2 release)
After cloning the SC Catalog Item V2 widget, on the Client Controller script under function "getOne()" just added the following line of code:
$scope.data.sys_properties.twostep = false; //added this line to avoid the Order Confirmation popup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2018 08:39 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2019 07:57 AM
Go to System Properties -> Service Catalog, and remove the tick from the property Show order confirmation popup in checkout process.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2019 01:57 PM
This seems to be the easiest fix.....thanks!