Stock rules
Summarize
Summary of Stock rules
Stock rules in ServiceNow define criteria to manage inventory replenishment automatically. When the inventory of a specific asset in a stockroom reaches a set threshold, the system triggers actions such as transferring stock from another stockroom or ordering from a vendor. This automation helps maintain optimal stock levels by monitoring total asset counts and initiating restocking processes accordingly.
Show less
Key Features
- Restocking Options:
- Email notifications are sent to the stockroom manager when inventory hits the threshold. These emails can be customized for timing, recipients, and content.
- Automatic creation of tasks for stockroom managers or, if Procurement is enabled, purchase orders and line items.
- Automatic generation of transfer orders to move stock between stockrooms.
- Stock Rule Runner Job:
- Runs daily to check inventory levels against stock rules and triggers appropriate workflows.
- Prevents duplicates by tracking ongoing restocking activities through the
pendingdeliveryflag. - Behavior depends on system properties and activated plugins, affecting whether requests are automatically submitted or require manual approval.
- System Properties Impact:
glide.sc.checkout.twostepcontrols automatic submission of catalog requests. If set to false, requests are submitted automatically; if true, manual submission is needed, affecting automation flow.
- Stock Rule Types and Outcomes:
- Stockroom type: Auto-creates transfer orders for replenishment between stockrooms; avoids duplicates if transfer is in progress.
- Vendor type: With Procurement plugin enabled, creates purchase orders and line items to replenish stock from vendors; requires
procurementuserrole for access. - Vendor or Service Catalog type: With Hardware Asset Management app installed, submits Service Catalog requests for stock replenishment, enabling review and approval by stockroom managers; uses
pendingdeliveryflag to track request status.
Practical Guidance for ServiceNow Customers
- Ensure the
pendingdeliveryflag is reset tofalseafter processing stock rules to enable accurate and timely restocking without duplication. - Activate the Procurement plugin and/or Hardware Asset Management application to leverage purchase order creation or Service Catalog request automation fully.
- Customize email notifications to keep stockroom managers informed and responsive to inventory changes.
- Understand the impact of system properties on request submission workflows to align restocking processes with organizational approval policies.
- Assign appropriate roles (like
procurementuser) to relevant users to access purchase order functionalities.
Stock rules are defined criteria stating that when the inventory of a particular asset in a particular stockroom reaches a specified threshold, a certain number should either be transferred from another stockroom or ordered from a vendor.
For example, a specific model of computer keyboard reaches an inventory of 10 in a particular stockroom and, because a stock rule is in place, a transfer order is automatically created to transfer 50 from a different stockroom. Because there can be multiple assets of a model within a stockroom, stock rules enable you to check all assets fitting the criteria and view a total count.
There are two restocking options:
- Email notifications can be sent to the stockroom manager (specified in the Manager field on the stockroom record) through the Asset Restocking email action when the inventory of a
particular asset in the stockroom reaches a specified threshold. You can customize this email notification by updating the details in the following tabs:
- When to send: Set the conditions under which the email should be triggered.
- Who will receive: Specify the recipients of the email.
- What it will contain: Define the content and information included in the email.
- A transfer order can be generated automatically to restock the item from another stockroom.
Stock Rule Runner job
By default, the glide.sc.checkout.twostep system property that's set to false, results in the automatic submission of requests when items are added to the Service Catalog cart. Also, with this setting of the system property, the Stock Rule Runner job triggers the creation of tasks, purchase orders, transfer orders, and Service Catalog requests.
If the value of the glide.sc.checkout.twostep system property is set to true, then the CartJS API adds items to the cart but the requests aren't submitted automatically. Instead, the request submission requires additional actions to be performed, affecting the automatic flow of the Stock Rule Runner job.
The pending_delivery is used to indicate whether a stock rule is awaiting fulfillment or delivery. The pending_delivery can be set to any of the following values:
- When this flag is set to true, the stock rule is in progress, and the system doesn't generate duplicate tasks or orders for the same item.
- When this flag is set to false, the system reprocesses the stock rule and triggers the creation of tasks and orders again.
Based on the Stock rule type and the plugin activated on your ServiceNow instance, the Stock Rule Runner job creates purchase orders, transfer orders, Service Catalog requests, or tasks.
If the Procurement plugin and the Hardware Asset Management application aren't activated, the Stock Rule Runner job creates a task instead of a purchase order or a Service Catalog request. This task prompts the stockroom manager to take the necessary actions to replenish the inventory.
| Stock rule type | Orders/Requests created |
|---|---|
| Stockroom | A transfer order is created automatically when the inventory in a stockroom reaches the threshold set by the stock rule. The transfer order is created to transfer stock from another stockroom to replenish the inventory. Note: If a transfer order is already in progress, then additional transfer orders aren't created. |
| Vendor | When the Procurement plugin (com.snc.procurement) is activated, a purchase order and corresponding purchase order line items are created. Purchase orders and purchase order line items are created when the inventory in a stockroom reaches the defined threshold and needs replenishment directly from the vendor. Note: You must have a procurement_user role to access the purchase order and purchase order line
item. |
| Vendor or Service Catalog | When the Hardware Asset Management application is installed and the stock rule is set to Vendor or Service Catalog, then note the following points:
|