What does it do? Handler method > that is used for read operations in RAP>. It must be defined and implemented in a handler class> of an ABAP behavior pool>. The method name meth> can be chosen freely. bdef> is the name or the alias of the BDEF>, assoc> the name of the association, and function> the name of a function. The method parameters can be passed by reference (see REFERENCE>>), except for the predefined parameters failed> and reported>.
What does it do? Handles the read requests in RAP read operations. BDEF requirement for the read operations: The entities to be read from must be declared after the notation define behavior for>>. Method parameters:
IMPORTING>> parameter:
im_par_read>: Includes the entities to be read. It is an internal table of type TYPE TABLE FOR READ IMPORT bdef>>.
CHANGING>> parameters:
res_read>: Mandatory parameter used to store the read result. It must be specified after the ABAP word RESULT > and is an internal table of type TYPE TABLE FOR READ RESULT bdef>>.