SAP OData URL Builder
Build SAP OData query URLs interactively with $select, $expand, $filter, $orderby, $top, $skip, and $format parameters. Everything runs in your browser — no data is sent to any server.
/sap/opu/odata/sap/ZMY_SERVICE_SRV/SalesOrderSet?$select=SalesOrderID%2CCustomerName%2CTotalAmount&$filter=TotalAmount%20gt%201000&$orderby=TotalAmount%20desc&$top=10&$format=jsonDecoded (human-readable)
/sap/opu/odata/sap/ZMY_SERVICE_SRV/SalesOrderSet?$select=SalesOrderID,CustomerName,TotalAmount&$filter=TotalAmount gt 1000&$orderby=TotalAmount desc&$top=10&$format=jsonCommon $filter operators: eq, ne, gt, ge, lt, le, and, or, not, startswith(), substringof(), tolower()
OData V2 uses substringof('text',Field), V4 uses contains(Field,'text')
