bw_list_requests
List recent load requests of an InfoProvider from the runtime request monitor, with request status, record counts, timestamps, and internal request TSN for further analysis.
Instructions
List the recent load requests of an InfoProvider from the runtime request monitor, with decoded request status, record counts and timestamps. Returns one entry per request including the internal request TSN, which is the input for bw_get_request. Read-only. Use bw_search to find the target technical name first. Performance: listing cost scales with the number of returned rows because each row is enriched on the backend (a per-row cross-reference read). top bounds the result set; created_from and status only help by returning fewer rows, not by making a row cheaper. For providers with long load histories, use a narrow created_from window or a small top.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| top | No | Upper cap on the number of requests to return (default 3). Each returned row triggers an expensive per-row backend read, so keep this small; raise it only when needed. | |
| status | No | Comma-separated request status codes to include (default "N,GG,GR,YG,RR,YR,RG,U,Y,X"). | |
| target | Yes | Target InfoProvider technical name (e.g. "OBJECT_NAME"). Case-insensitive. | |
| storage | No | Comma-separated storage area codes (default "AQ,AX,AT"). | |
| target_type | No | Target object type (default "ADSO"). | |
| created_from | No | Optional server-side lower time bound, ISO 8601 with milliseconds and Z (24 chars, e.g. "YYYY-MM-DDTHH:MM:SS.000Z"). Returns only requests created at or after this time (open upper bound = now). Narrows the result set, which reduces per-row backend enrichment cost. Recommended for providers with long load histories. |