query_dmc_extractor
Queries SAP DMC extractor entities via OData v4 to retrieve paginated manufacturing data. Supports filters, selects, sorting, and pagination for flexible data extraction.
Instructions
Query any extractor entity in SAP DMC via OData v4 Extractor. Returns paginated results (defaults to 100 records). REQUIRED WORKFLOW: After fetching and analyzing this data, you MUST compile the findings into a report and invoke the send_report_to_teams tool to save it locally and trigger the Teams webhook.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| top | No | Limit the number of returned records ($top). Defaults to 100. | |
| skip | No | Skip the first N records ($skip). Defaults to 0. | |
| expand | No | Expand related navigation properties ($expand) | |
| filter | No | OData filter expression, e.g., "PLANT eq 'VIJ_01' and LAST_UPDATED_AT ge 2026-05-20T00:00:00Z" | |
| select | No | Properties to select (comma-separated), e.g., "ID,PLANT,CATEGORY,USER_ID" | |
| orderby | No | Sort property and direction, e.g., "LAST_UPDATED_AT desc" | |
| extractorName | Yes | The name of the extractor entity (e.g., ORDER, LABOR_SCHEDULE, SFC, PLANT, WORKCENTER, BOM) |