SAP DERIVED TYPES OWN ABAP Statements



Get Example source ABAP code based on a different SAP table
  


• %own ABAP_BDEF_DER_TYP_COMP

%own

ABAP_USE
%own is a component group in BDEF derived types. The component group is contained in the REPORTED RAP response parameter and summarizes all available RAP BO entities defined in the BDEF.
Type
The subcomponents of %own are internal tables of type TYPE TABLE FOR REPORTED LATE.
Where used
TYPE RESPONSE FOR REPORTED LATE

ABAP_FURTHER_INFO
See more details on message handling in the Development Guide for the ABAP RESTful Application Programming Model, section Messages.

ABAP_EXAMPLE_VX5
The following source code section taken from the BP_DEMO_MANAGED_ROOT_REPORTED=CCIMP of the global class of the behavior pool BP_DEMO_MANAGED_ROOT_REPORTED demonstrates the component %own in the context of a method implementation for a validation that checks field values of RAP BO instances before saving. See the executable program for this example further down.
METH BP_DEMO_MANAGED_ROOT_REPORTED(CCIMP)=>VALIDATENUM
ABAP_EXAMPLE_END

ABAP_EXAMPLE_ABEXA
The example Example for Message-Related BDEF Derived Type Components demonstrates the use of various BDEF derived type components including %own with a managed RAP BO.
ABAP_EXAMPLE_END

Return to menu