SAP MODIFY ENTITY SHORT ABAP Statements



Get Example source ABAP code based on a different SAP table
  


• ENTITY MODIFY ENTITY

MODIFY ENTITY, Short Form

ABAP_SYNTAX
MODIFY 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 MODIFY statement is used to perform transactional modify operations ( operations ) for a single RAP BO node.
entity can be any node of the RAP BO when the statement is used within the implementation class. If the statement is used outside of the implementation class, entity can only be the RAP BO root entity. entity must be the full entity name and cannot be an alias name. It is also possible to specify any node of the RAP BO following the root entity name and : MODIFY ENTITY root_entity bdef_node1 ...
MODIFY ENTITY root_entity bdef_node2 ...
...
bdef_node1, bdef_node2, and so on, must be the alias names if provided in the BDEF. Otherwise, the full names must be inserted.
Multiple operations can be inserted for operations within a single MODIFY statement.



Latest notes: