SAP EML RESPONSES DYN ABAP Statements



Get Example source ABAP code based on a different SAP table
  



response_param, Dynamic Forms of ABAP_EML Statements

ABAP_SYNTAX
... $[FAILED failed_resp$]
$[MAPPED mapped_resp$]
$[REPORTED reported_resp$] ...

What does it do?
Used for RAP responses in the context of dynamic forms of ABAP_EML statements. The operands failed_resp , mapped _resp and reported_resp after the respective ABAP word must be internal tables typed with ABP_BEHV_RESPONSE_TAB. All variants can be used together where possible.
They can be specified for the following dynamic ABAP_EML statements:
MODIFY ENTITIES OPERATIONS
READ ENTITIES OPERATIONS
COMMIT ENTITIES RESPONSES OF
GET PERMISSIONS OPERATIONS
SET LOCKS lock_tab
The internal table can be constructed inline using the declaration operators DATA and FINAL. It contains deep structures of type ABP_BEHV_RESPONSE for each entity for which entries are available in the response. These structures include the following components: ComponentDetailsType
root_nameSpecifies the name of the RAP BO root entity of entity entity_name for which entries are available in the response. ABP_ROOT_ENTITY_NAME
entity_nameSpecifies the entity's name for which entries are available in the response. This can be the root entity or associated and child entities of the root entity. ABP_ENTITY_NAME
entriesInternal table containing the entries for which information is available.REF TO DATA
BEGIN_SECTION HIDDEN



Latest notes:

If an instance is already locked in parallel in the context of a SET LOCKS statement, information with the cause of a failure, IF_ABAP_BHEV-LOCKED, is returned in the FAILED response parameter of SET LOCKS. See the interface IF_ABAP_BEHV.
ABAP_HINT_END
END_SECTION HIDDEN