ABAP

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 »

What is the difference between data reference and object reference in SAP ABAP

PARAMETER DATA OBJECT DEFINITION DATA lr_ref TYPE REF TO data. DATA lr_object TYPE REF TO object. CREATION CREATE DATA lr_ref TYPE REF TO (‘ZIF_INSTANCE’). CREATE OBJECT lr_object TYPE (‘ZCL_CLASS’). DEREFERENCE It can be dereferenced. The object or any value can be assigned to dereferenced reference variable.lr_ref->* = lr_object Object references cannot be dereferenced. This notation

What is the difference between data reference and object reference in SAP ABAP Read More »

How does OData service works

OData services works through entity sets and entities. Data is represented in the form of Tables. Tables are referred as Entity sets and the lines of record are referred as entities. The Data is accessed through the following OData methods. These OData methods are referred as CRUD methods. OData Method Http Method Description and its

How does OData service works Read More »