SAP ABAP

SAP OData Services Transaction codes

The four important SAP Transaction codes for ODATA Service /nSEGW –> This Transaction is used to create an OData service in the Backend. /n/IWFND/MAINT_SERVICE –> Register the OData service in the frontend. /n/IWFND/GW_CLIENT –> Execute the HTTP Method in the frontend. /n/IWFND/ERROR_LOG –> To view the Error logs in the OData Service.

What are the different query option in ODATA-URL

The OData URL can be modified to represent the corresponding results. It provides various Filter options $Filter: It is like the WHERE condition. The below URL in the browser returns the products with the price less than 100. https://services.OData.org/v3/OData/OData.svc/Products?$filter=Price lt 100     $Select: It is used to display only the respective columns of the table. https://services.OData.org/v3/OData/OData.svc/Products?$select=ID,Categories …

What are the different query option in ODATA-URL Read More »