Get Example source ABAP code based on a different SAP table
ABAP_EML - fields_tab Internal table that is typed with the required BDEF derived type (TYPE TABLE FOR ...) containing specific components for the communication between a RAP BO provider and RAP BO consumer. The components are determined by the context in which the internal table is used, i. e. the use and number of the components of the internal table to be specified, for example, for a delete or create operation differ. See the details of the type (TYPE TABLE FOR) and components ( Components of Derived Types) in the respective documentation. The internal table can be constructed in an operand position using constructor expressions, for example with the value operator ( VALUE) and other constructor operators to fill the internal table with instances as input parameters after the respective keyword (for example, FROM).
Latest notes: If a field of a parent or child entity is marked as readonly in the BDEF, it cannot be changed and assigned a new value with any of the modify operations. A modification can only be done using the addition IN LOCAL MODE . See more details in the documentation for IN LOCAL MODE. NON_V5_HINTS ABAP_HINT_END
ABAP_EXAMPLE_VX5 The following code example shows an internal table that is explicitly declared with a BDEF derived type. It is then used in a MODIFY statement (assuming that create_root contains values). This is also true for the second example. Yet, the internal table following the statement CREATE SET FIELDS WITH is declared inline using the value operator. ... DATA create_root TYPE TABLE FOR CREATE demo_managed_root.
MODIFY ENTITY demo_managed_root CREATE SET FIELDS WITH create_root.