No history yet

Item Fundamentals

The Two Kinds of Catalog Items

Every item in a ServiceNow Service Catalog serves a purpose, but not all items are created equal. They fall into two main categories: Standard Catalog Items and Record Producers. Think of it like this: a Standard Item is like ordering a product from an online store, while a Record Producer is like filling out a contact form on a website.

One generates a request for a good or service. The other creates a record to report information or initiate a different kind of process.

Standard Items for Requests

A Standard Catalog Item (from the sc_cat_item table) is your go-to for anything that needs to be fulfilled. When a user orders a new laptop, requests access to a software application, or asks for a new desk phone, you'll use a Standard Item. It's built for the classic e-commerce experience.

A user adds the item to their shopping cart, checks out, and the system generates a Request (REQ) record. This REQ acts as a container for one or more (RITMs). Each RITM has its own fulfillment workflow, often involving one or more Catalog Tasks (SCTASKs) assigned to different teams to get the job done. This structure is perfect for tracking the delivery of tangible goods or services.

Use a Standard Item when the user is asking for something and you need to track its fulfillment and delivery.

Record Producers for Intake

A Record Producer (from the sc_cat_item_producer table) doesn't fulfill a request for a good or service. Instead, it acts as a user-friendly form that creates a record on a different table. It produces a record, hence the name. This is how you provide a simple interface for complex processes without the shopping cart overhead.

For example, you could create a Record Producer titled "Report a System Outage." When a user fills it out, it doesn't create a RITM. Instead, it directly creates an Incident record on the Incident table. The key is the setting. You can point a Record Producer at nearly any table in ServiceNow, making it incredibly versatile. Common uses include creating Incidents, Change Requests, or HR Cases.

FeatureStandard Catalog ItemRecord Producer
PurposeRequest a good or serviceCreate a record on another table
Tablesc_cat_itemsc_cat_item_producer
OutputRequest (REQ) -> Requested Item (RITM) -> Catalog Task (SCTASK)A single record (e.g., Incident, Change)
CartUses the shopping cartBypasses the cart; submits directly
Example"Order a New Laptop""Report a Broken Printer"

Configuring Your Item

When you create a new catalog item, a few initial fields are critical for making it findable and useful.

Name: This is the title of the item displayed in the catalog. It should be clear, concise, and written from the user's perspective. Use action-oriented language like "Request a Guest Wi-Fi Account" instead of just "Guest Wi-Fi."

Catalogs and Category: These fields determine where the item lives. An item must belong to at least one catalog (e.g., "Service Catalog") and one category within that catalog (e.g., "Software" or "Hardware"). Proper categorization is essential for user navigation.

Meta: These are search keywords. Think about what terms a user might type into the search bar to find this item and add them here as a comma-separated list. Include common synonyms or acronyms to improve searchability.

Lesson image

You also need to control who can see and use the item. This is managed through the Availability settings. You can make an item available to specific users, groups, roles, companies, or locations. If you leave these fields blank, the item is visible to everyone.

This is useful for items like a "Request New Executive Laptop Model," which should only be visible to users with an executive role, or location-specific services that are only available at certain office sites.

Choosing the right item type is the first step in building a user-friendly and effective Service Catalog. Use Standard Items for fulfillable requests and Record Producers for everything else.