Show TOC

The Request ObjectLocate this document in the navigation structure

The request object defines the access to a server resource by specifying an OData service and an entity set.

A request object has the following format:

<id>"
  "service" : "
{
  "type" : "request",    // optional
  "id" : "<service root>",
  "entitySet" : "<entity set name>",
  "selectProperties" : [ "<property name>"* ],
}

The properties used in the request object denote the following:

Property

Description

id

Unique ID of type string.

service

Path to OData service root.

The service root is defined by an absolute path on the OData server according to the following pattern: <service root>: ".../odata/<odata-service-document>"

The request { and its entity set name are absolute to the service root, which starts after the server and port information: [protocol]://[server]:[port]/<service root>

entitySet

Entity set that corresponds to the SAP HANA view.

selectProperties

Set of property names.

The selected properties determine which properties of the entity are contained in the server response. Therefore, they also determine the analytical processing of the request on the server.