get_custom_mdo_records
Retrieve records for Managed Data Objects in SAP DMC using OData v4 queries with filtering, property selection, sorting, and pagination controls.
Instructions
Retrieve records for a Managed Data Object (MDO) in SAP DMC via OData v4 with optional OData query parameters.
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. | |
| filter | No | Full OData v4 filter string, e.g., "plant eq 'VIJ_01' and status eq 'ACTIVE'" | |
| select | No | Comma-separated list of properties to select, e.g., "toolId,status,location" | |
| mdoName | Yes | Name of the Managed Data Object (entity set), e.g. ToolList | |
| orderby | No | Property sort order, e.g., "toolId desc" |