bw_get_process_chain
Retrieve a Process Chain definition including steps, dependencies, and variant details. Disable variant details for a faster structural overview.
Instructions
Read a Process Chain (RSPC) definition — header metadata, scheduling and monitoring settings, all steps (nodes) with type, variant, and last execution status, step dependencies (edges) with branch conditions for DECISION nodes, and inline variant details. By default (include_variant_details=true), automatically fetches and embeds the full variant configuration for each step that has detail available. Steps without variant detail (DTP_LOAD, OR, AND, EXOR, CHAIN) are shown without extra detail — for DTP_LOAD use bw_get_dtp, for CHAIN use bw_get_process_chain recursively. Set include_variant_details=false for a faster structural overview without variant detail. Use bw_search with object_type=PRCH to find chain names first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| chain_name | Yes | Process chain technical name (e.g. "CHAIN_NAME"). Case-insensitive. | |
| format | No | Output format. "text" (default): compact human-readable summary. "raw": full parsed JSON. | |
| include_variant_details | No | If true (default), fetches variant configuration detail for each step automatically and includes it inline. Set to false to skip variant detail fetching for faster response on large chains. |