We've updated the ServiceNow Community Code of Conduct, adding guidelines around AI usage, professionalism, and content violations. Read more

Limit Quantity to 2 on the order guide for specific catalog item

Harika Thota
Tera Guru

Hi ,

 

I want to limit quantity to 2 on the order guide for specific catalog item.

HarikaThota_0-1770758290527.png

 

Thanks in Advance!

Harika

 

8 REPLIES 8

Nayan ArchX
Tera Guru

Catalog Client Scripts

https://www.servicenow.com/docs/en-US/bundle/utah-servicenow-platform/page/product/service-catalog-m...

 

Order Guide Architecture

https://www.servicenow.com/docs/en-US/bundle/utah-it-service-management/page/product/service-catalog...

 

f you just want to display message (not block submit):

👉 Service Catalog → Catalog UI Policies

But UI Policy alone cannot stop submit — only client script can.

Official doc:

https://www.servicenow.com/docs/en-US/bundle/utah-servicenow-platform/page/product/service-catalog-m...

 

Best Practice (Enterprise)

ServiceNow architects typically:

  • Use Catalog Client Script for hard validation

  • Keep Order Guides generic

  • Apply logic at Item level

This keeps Order Guides reusable.

 

If my response has resolved your query, please consider giving it a thumbs up ‌‌ and marking it as the correct answer‌‌!

 

Thanks

Nayan Patel

IT ServiceNow Consult, ServiceNow ArchX

If my response has resolved your query, please mark it Helpful by giving it a thumbs up and Accept the Solution

Tanushree Maiti
Giga Sage

Please refer this links, see if it helps you:

 

https://www.servicenow.com/community/itsm-forum/how-to-set-quantity-in-shopping-cart-of-item-based-o...

Please mark this response as Helpful & Accept it as solution if it assisted you with your question.
Regards
Tanushree Maiti
ServiceNow Technical Architect
Linkedin:

yashkamde
Kilo Sage

Hello @Harika Thota ,

 

We have one method in client script :

g_cart.setQuantity(2);

 

This will automatically set the quantity mentioned :

Screenshot 2026-02-11 095202.pngScreenshot 2026-02-11 095324.png

 

 

If my response helped mark as helpful and accept the solution.

Hi Yashkamde,

 

I tried this. it gave me javascript browser error.