SAP MODIFY ENTITIES LONG ABAP Statements



Get Example source ABAP code based on a different SAP table
  


• OF MODIFY ENTITIES
• ENTITY MODIFY ENTITIES

MODIFY ENTITIES, Long Form

ABAP_SYNTAX
MODIFY ENTITIES OF bdef $[IN LOCAL MODE$| PRIVILEGED$]
ENTITY entity1 operations
$[ENTITY entity2 operations$]
$[...$]
$[response_param$].

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

What does it do?
The long form of the MODIFY statement is used for executing multiple modify operations ( operations) on multiple entities of a RAP BO. However, it can also be used for a single operation on a single RAP BO.
bdef must be a RAP BO root entity followed by a list of operations grouped by individual entities. entity1, entity2, and so on, must be entities contained in the composition tree of the root entity bdef. If specified in the BDEF, alias names should be used for entity1, entity2, and so on. The root entity itself can also be inserted in the position of bdef1 , for example. Each part of the list of operations specified after MODIFY ENTITIES OF bdef has the same syntax as the short form. At least one entry ( ENTITY bdef/entity1/... with an operation) must be specified. The same entity can be specified after ENTITY repeatedly, however, the same operation in that combination is allowed only once.



Latest notes: