Request Management architecture
Summarize
Summary of Request Management Architecture
Request Management facilitates the processing and fulfillment of catalog item requests within IT Service Management. It begins with the Service Catalog, where requests trigger the management process through entries in the Catalog Item table. The system does not support record producers for generating request management objects.
Show less
Key Features
- Hierarchy Structure: Requests are organized in a hierarchy with records generated in the Requested Item, Request, and Catalog Task tables.
- Variable Management: Variables are linked only to the Requested Item table; they are not supported for extended tables.
- Cart Management: Two scenarios exist based on how catalog items are requested: directly without a cart or through a cart checkout process.
Key Outcomes
When a catalog item is requested:
- A temporary cart is created for direct requests, and variables are saved accordingly.
- For cart requests, the default cart checks out all items, repeating variable updates for each item added.
- Order guides utilize temporary or default carts depending on the number of steps.
Understanding this architecture enables ServiceNow customers to effectively manage and fulfill requests, ensuring streamlined operations and accurate data handling.
Request Management allows catalog items to be requested and fulfilled based on defined flows.
Request Management hierarchy
Service Catalog is the starting point of the request management process. The request management process is triggered only when a catalog item from the Catalog Item [sc_cat_item] table is requested.
When a user submits a request for a catalog item, records are generated in the following hierarchy.
- The data model does not support a record producer generating request management objects
such as request, request item, and catalog task. Hence, do not use a record producer to
insert records in the following request management tables or their extensions:
- Request [sc_request]
- Request Item [sc_req_item]
- Catalog Task [sc_task]
- Do not write business rules with the
beforetrigger for the following tables:- Request [sc_request]
- Request Item [sc_req_item]
- Cart [sc_cart]
- Cart Item [sc_cart_item]
Request management process
- Catalog item is ordered directly without adding it to the cart
- When a catalog item is ordered or requested directly without adding it to the cart, the
following steps are performed:
- A temporary cart, sc_cart, is created.
- The catalog item along with the variables (values entered by the user) is added to the temporary cart as a record in the Cart Item [sc_cart_item] table.
- The variables are saved in the Options [sc_item_option] and Variable Ownership [sc_item_option_mtom] tables.
- The temporary cart is checked out by performing these steps.
- A record in the Request [sc_request] table is initialized but not committed in the database.
- A record in Request Item [sc_req_item] table is initialized but not committed in the database.
- The request reference for the Request Item [sc_req_item] table record is updated with the Request [sc_request] table record.
- The variables record in the Options [sc_item_option] and Variable Ownership [sc_item_option_mtom] tables are updated based on the Request Item [sc_req_item] table record.
- The Request Item [sc_req_item] table record is committed in the database.
- The Request [sc_request] table record is committed in the database.
- Request is submitted after adding the item to the cart
- If a catalog item is added to the cart and the request is submitted using the checkout
process, the default cart is checked out.
All steps mentioned in the preceding scenario, Catalog item is ordered directly without adding it to the cart, are applicable. However, if multiple catalog items are added to the cart, step b to step e are repeated for each item.
- Request is submitted using an order guide
- For a two-step order guide checkout, the temporary cart is used for all items. For a
three-step order guide checkout, the default cart is used for the items.
All steps mentioned in the preceding scenario, Catalog item is ordered directly without adding it to the cart, are applicable.