- 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
03-27-2018 07:18 AM
You can do it in following widget.
SC Catalog Item
part of server script.
else if (input && input.action === "order_item") {
data.orderItemModal = $sp.getWidget('widget-modal', {embeddedWidgetId: 'sc-checkout', embeddedWidgetOptions: {cart: {name: input.cart}, action: 'order_now', item: input.itemDetails, requested_for: {id:options.requested_for_id, displayValue:options.requested_for_display}
But, I am curious how you would be performing a checkout or complete an order?
Also this is a OOTB widget ,so am not sure if you would be able to modify it.
Thanks
Harshad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2018 03:25 AM
Hello Harshad,
I need to disable only pop up but not the check out process any ideas is highly appreciated
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2018 02:06 AM
I also have the same requirement but this is a new feature that has come up and is not modifiable so far. The earlier submit button has been deprecated by ServiceNow (which was without Oder Confirmation popup).
ServiceNow is not giving any option to disable the popup.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2018 07:32 AM
Any luck with this?