| name | catalog-items |
| description | Build ServiceNow Service Catalog items, variables, variable sets, catalog client scripts, record producers, and order guides with reference qualifiers and dynamic pricing. |
| license | Apache-2.0 |
| compatibility | Designed for Snow-Code and ServiceNow development |
| metadata | {"author":"serac","version":"1.0.0","category":"servicenow"} |
| tools | ["snow_create_catalog_item","snow_create_catalog_variable","snow_create_variable","snow_query_table","snow_artifact_manage"] |
Service Catalog Development for ServiceNow
The Service Catalog allows users to request services and items through a self-service portal.
Catalog Components
| Component | Purpose | Example |
|---|
| Catalog | Container for categories | IT Service Catalog |
| Category | Group of items | Hardware, Software |
| Item | Requestable service | New Laptop Request |
| Variable | Form field on item | Laptop Model dropdown |
| Variable Set | Reusable variable group | User Details |
| Producer | Creates records directly | Report an Incident |
| Order Guide | Multi-item wizard | New Employee Setup |
Catalog Item Structure
Catalog Item: Request New Laptop
├── Variables
│ ├── laptop_model (Reference: cmdb_model)
│ ├── reason (Multi-line text)
│ └── urgency (Choice: Low, Medium, High)
├── Variable Sets
│ └── Delivery Information (Address, Contact)
├── Catalog Client Scripts
│ ├── onLoad: Set defaults
│ └── onChange: Update price
├── Workflows/Flows
│ └── Laptop Approval Flow
└── Fulfillment
└── Creates Task for IT
Variable Types
| Type | Use Case | Example |
|---|
| Single Line Text | Short input | Employee ID |
| Multi Line Text | Long input | Business Justification |
| Select Box | Single choice | Priority |
| Check Box | Yes/No | Express Delivery |
| Reference | Link to table | Requested For |
| Date | Date picker | Needed By Date |
| Lookup Select Box | Filtered reference | Model by Category |
| List Collector | Multiple selections | CC Recipients |
| Container Start/End | Visual grouping | Hardware Options |
| Macro | Custom widget | Cost Calculator |
Creating Catalog Variables
Basic Variable
snow_create_variable({
cat_item: "<catalog item sys_id>",
name: "laptop_model",
question_text: "Laptop Model",
type: "reference",
mandatory: true,
order: 100,
})
snow_record_manage({
action: "update",
table: "item_option_new",
sys_id: "<variable sys_id>",
data: { reference: "cmdb_model", reference_qual: "category=computer" },
})
Variable with Dynamic Default
javascript: gs.getUserID()
Variable with Reference Qualifier
active=true^type=it
javascript: 'active=true^manager=' + gs.getUserID()
javascript: 'u_department=' + current.variables.department
Catalog Client Scripts
Set Defaults onLoad
function onLoad() {
g_form.setValue("urgency", "low")
if (!g_user.hasRole("catalog_admin")) {
g_form.setDisplay("cost_center", false)
}
var tomorrow = new GlideDateTime()
tomorrow.addDays(1)
g_form.setValue("needed_by", tomorrow.getDate().getValue())
}
Dynamic Pricing onChange
function onChange(control, oldValue, newValue, isLoading) {
if (isLoading) return
var ga = new GlideAjax("CatalogUtils")
ga.addParam("sysparm_name", "getModelPrice")
ga.addParam("sysparm_model", newValue)
ga.getXMLAnswer(function (price) {
g_form.setValue("item_price", price)
updateTotal()
})
}
function updateTotal() {
var price = parseFloat(g_form.getValue("item_price")) || 0
var quantity = parseInt(g_form.getValue("quantity")) || 1
g_form.setValue("total_cost", (price * quantity).toFixed(2))
}
Validation onSubmit
function onSubmit() {
var cost = parseFloat(g_form.getValue("total_cost"))
var justification = g_form.getValue("business_justification")
if (cost > 1000 && !justification) {
g_form.showFieldMsg("business_justification", "Required for items over $1000", "error")
return false
}
var neededBy = g_form.getValue("needed_by")
var today = new GlideDateTime().getDate().getValue()
if (neededBy < today) {
g_form.showFieldMsg("needed_by", "Date must be in the future", "error")
return false
}
return true
}
Variable Sets
Creating Reusable Variable Sets
Variable Set: User Contact Information
├── contact_name (Single Line Text)
├── contact_email (Email)
├── contact_phone (Single Line Text)
└── preferred_contact (Choice: Email, Phone, Either)
Use in multiple catalog items:
- New Laptop Request
- Software Installation
- Network Access Request
Accessing Variable Set Values
var ritm = current
var contactEmail = ritm.variables.contact_email
var preferredContact = ritm.variables.preferred_contact
Catalog Workflows/Flows
Approval Pattern
Flow Trigger: sc_req_item created
├── If: Total cost > $5000
│ └── Request Approval: Department Manager
│ └── If: Rejected
│ └── Update: RITM state = Closed Incomplete
├── If: Total cost > $25000
│ └── Request Approval: VP
├── Create: Catalog Task for Fulfillment
└── Wait: Task completion
Fulfillment Script
var ritm = current
var inc = new GlideRecord("incident")
inc.initialize()
inc.setValue("short_description", ritm.short_description)
inc.setValue("description", ritm.description)
inc.setValue("caller_id", ritm.request.requested_for)
inc.setValue("category", ritm.variables.category)
inc.setValue("priority", ritm.variables.urgency)
inc.insert()
ritm.setValue("u_fulfillment_record", inc.getUniqueValue())
ritm.update()
Record Producers
Creating Incidents via Catalog
current.short_description = producer.short_description
current.description = producer.description
current.caller_id = gs.getUserID()
current.category = producer.category
current.subcategory = producer.subcategory
current.priority = producer.urgency == "urgent" ? "2" : "3"
if (producer.category == "network") {
current.assignment_group.setDisplayValue("Network Support")
} else {
current.assignment_group.setDisplayValue("Service Desk")
}
Order Guides
Multi-Step Request Wizard
Order Guide: New Employee Onboarding
├── Step 1: Employee Information
│ └── Variable Set: Employee Details
├── Step 2: Hardware Selection
│ ├── Catalog Item: Laptop
│ ├── Catalog Item: Monitor
│ └── Catalog Item: Peripherals
├── Step 3: Software Requests
│ └── Rule: Show software based on department
├── Step 4: Access Requests
│ └── Cascade Variable: Copy employee info
└── Submit: Creates multiple RITMs
Order Guide Rule
function rule(item, guide_variables) {
var dept = guide_variables.department
if (item.name == "Engineering Software Suite") {
return dept == "engineering"
}
if (item.name == "Financial Tools") {
return dept == "finance"
}
return true
}
Pricing & Approvals
Dynamic Pricing
var basePrice = parseFloat(current.price) || 0
var quantity = parseInt(current.variables.quantity) || 1
var expedited = current.variables.expedited == "true"
var total = basePrice * quantity
if (expedited) {
total *= 1.5
}
current.recurring_price = 0
current.price = total
Approval Rules
Approval Definition: High-Value Purchases
Condition: total_cost > 5000
Approver: requested_for.manager
Wait for: Approval
Rejection action: Cancel request
Best Practices
- Variable Naming - Use descriptive, lowercase names (no spaces)
- Variable Sets - Reuse common variable groups
- Reference Qualifiers - Filter to relevant records only
- Client Scripts - Minimize server calls (use GlideAjax sparingly)
- Fulfillment - Create tasks, don't complete directly
- Testing - Test as different user roles
- Mobile - Test catalog items on mobile/tablet
- Documentation - Add help text to variables