ABAP Addition 1 ... IN LOCAL MODE ... 2 ... PRIVILEGED ... 3 ... response_param.
What does it do? The dynamic version of the MODIFY ENTITIES statement executes multiple modify operations for multiple RAP BOs in one MODIFY statement. op_tab must be a table of type ABP_BEHV_CHANGES_TAB. This table has specific components: ComponentDetails opIt is a mandatory component specifying the operation to be executed. It can be set with the defined constants, for example, op-m-create, of interface IF_ABAP_BEHV or just the predefined value for the operation in the interface, for example 'C' for a create operation (op = 'C'). entity_name It is a mandatory component and specifies the name of the BO entity for which the operation is executed. The name must be provided using capital letters. sub_nameOptional component. It is only relevant for specifying association names in case of create-by-association operations or for actions. The name must be provided using capital letters. In case of create-by-association operations, when using the constant if_abap_behv=>op-m-create_ba, the alias name for the association must be provided in uppercase. instancesIt is a mandatory component specifying the instances in an internal table. The table is a reference variable with static type DATA. requestIt is an optional component specifying an internal table for requests. The table is a reference variable with static type DATA. resultsIt is an optional component storing results of an action. The table is a reference variable with static type DATA.