SAP READ ENTITY SHORT ABAP Statements



Get Example source ABAP code based on a different SAP table
  


• ENTITY READ ENTITY

READ ENTITY, Short Form

ABAP_SYNTAX
READ ENTITY $[IN LOCAL MODE $|PRIVILEGED$] entity operations $[response_param$].

ABAP Addition
1 ... IN LOCAL MODE ...
2 ... PRIVILEGED ...
3 ... response_param.

What does it do?
The short form of the READ statement is used for read operations (operations) from a single RAP BO entity only. The entity name (entity) can be specified directly, that is, reading from a child entity can also be done directly and not via the root entity of a RAP BO. In this case, entity must be the full entity name and cannot be an alias name because the context of a RAP BO is unknown. It is possible to include all three read options in one operation per entity entity: read operation, read-by-association operation and an operation executing a function, but only one of each kind within the same READ ENTITY statement.

ABAP Addition

What does it do?