MV13AF0K_01 is a standard ABAP Include available within your SAP system (depending on your version and release level). Below is the standard documentation available for this report and a few details of other objects it interacts with such as tables, function modules, includes etc. If you would like to see the full code listing simply enter MV13AF0K_01 into the relevant SAP transaction such as SE38 or SE80
*&-------------------------------* *& INCLUDE MV13AF0K_01 *&-------------------------------*
*&-------------------------------* *& Form tt_insert_deletion *&-------------------------------* * insert deletion line into table time_vake_akt *----------------------------------------------------------------------* FORM TT_INSERT_DELETION TABLES PT_TIME_VAKE_AKT STRUCTURE TIME_VAKE_AKT USING ps_time_vake_akt LIKE time_vake_akt. DATA: lv_ins_index TYPE syindex. FIELD-SYMBOLS: <time_vake_akt> LIKE LINE OF pt_time_vake_akt.
MOVE equ-statedel TO ps_time_vake_akt-xxstate. MOVE equ-procdel TO ps_time_vake_akt-xxprocinfo. MOVE equ-dbdel TO ps_time_vake_akt-xxdbaction. ....See full code listing within your SAP system using transactions such as SE80 and SE38
No INCLUDES are used within this report code!
No SAP database TABLES are accessed within this report code!
No SAP FUNCTION MODULES are executed within this report code!