- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-08-2020 05:38 PM
We have a requirement to allow customers to add multiple items to one request, aka a shopping cart.
For some reason, this is not supported in the CSM portal, as mentioned here in the doco:
https://docs.servicenow.com/bundle/orlando-customer-service-management/page/product/customer-service...
"Note: The Add to Cart button is not currently supported on the Customer Service Portal or the Consumer Service Portal."
Has anyone else tried to implement this or found a way around it?
Solved! Go to Solution.
- Labels:
-
Customer Service Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-22-2020 10:37 PM
For anyone else wanting an answer this, here's the steps to enable shopping cart on the CSM portal.
1. Edit the ‘CSM SC Catalog Item’ widget.
Change the Server Script from
properties.show_add_cart_button = "false";
to
properties.show_add_cart_button = "true";
2. Ensure page 'sc_cart' is using the V2 version of the SC Shopping Cart widget, not the deprecated one.
3. CSM Header Menu - Set the additional Options 'enable_cart' to true.
4. Create ACLs for sc_cart and sc_cart_item for the role snc_external (copy the snc_internal ACLs).
5. Add roles to widget and Portal page.
Widget: SC Shopping Cart - Add snc_external and snc_internal roles.
Page: sc_cart - Add snc_external and snc_internal roles.
6. Update the re-directing to the CSM Ticket page instead of sc_request page.
This is hard-coded in the Shopping Cart widget. You can either clone the Shopping Cart widget and modify or go down the route I did which is make a new widget that checks if the Request is a child of a case, and if so it redirects to the Case record on the CSM Ticket page.
Add this new widget onto the Request page.
Widget:
Happy CSM Shopping!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-09-2020 03:07 AM
Hi,
Check this KB article,
https://hi.service-now.com/kb_view.do?sysparm_article=KB0551793
I hope it gives you some idea.
Mark my ANSWER as CORRECT and HELPFUL if it works.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-09-2020 04:24 AM
Sorry this is for CSM, not CMS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-09-2020 05:01 AM
Hello Kezza,
Refer below thread it helps you:
Kindly Mark Correct if this solves your issue and also mark Helpful if you find my response worthy!
Best Regards,
Vishakha
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-09-2020 06:17 AM
Unfortunately that's not for the CSM portal