SAP Function Modules

RHAD_GET_BUFFER_PLOG_TAB_DIALG SAP Function module







RHAD_GET_BUFFER_PLOG_TAB_DIALG is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.

See here to view full function module documentation and code listing, simply by entering the name RHAD_GET_BUFFER_PLOG_TAB_DIALG into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: RHAD
Released Date: Not Released
Processing type: Normal fucntion module
Normal function module settings


Pattern for FM RHAD_GET_BUFFER_PLOG_TAB_DIALG - RHAD GET BUFFER PLOG TAB DIALG





CALL FUNCTION 'RHAD_GET_BUFFER_PLOG_TAB_DIALG' "
  TABLES
    buffer_tab =                " hrbuffer      BUFFER
    plog_tab_tab =              " hrdbtab       PLOG_TAB
*   tb_buffer_tab =             " hrtbuffer     TB_BUFFER
*   tb_plog_tab_tab =           " hrtbuffer     TB_PLOG_TAB
*   buffo_tab =                 " p1000
    .  "  RHAD_GET_BUFFER_PLOG_TAB_DIALG

ABAP code example for Function Module RHAD_GET_BUFFER_PLOG_TAB_DIALG





The ABAP code below is a full code listing to execute function module RHAD_GET_BUFFER_PLOG_TAB_DIALG including all data declarations. The code uses the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the original method of declaring data variables up front. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8).

DATA:
it_buffer_tab  TYPE STANDARD TABLE OF HRBUFFER,"TABLES PARAM
wa_buffer_tab  LIKE LINE OF it_buffer_tab ,
it_plog_tab_tab  TYPE STANDARD TABLE OF HRDBTAB,"TABLES PARAM
wa_plog_tab_tab  LIKE LINE OF it_plog_tab_tab ,
it_tb_buffer_tab  TYPE STANDARD TABLE OF HRTBUFFER,"TABLES PARAM
wa_tb_buffer_tab  LIKE LINE OF it_tb_buffer_tab ,
it_tb_plog_tab_tab  TYPE STANDARD TABLE OF HRTBUFFER,"TABLES PARAM
wa_tb_plog_tab_tab  LIKE LINE OF it_tb_plog_tab_tab ,
it_buffo_tab  TYPE STANDARD TABLE OF P1000,"TABLES PARAM
wa_buffo_tab  LIKE LINE OF it_buffo_tab .


"populate fields of struture and append to itab
append wa_buffer_tab to it_buffer_tab.

"populate fields of struture and append to itab
append wa_plog_tab_tab to it_plog_tab_tab.

"populate fields of struture and append to itab
append wa_tb_buffer_tab to it_tb_buffer_tab.

"populate fields of struture and append to itab
append wa_tb_plog_tab_tab to it_tb_plog_tab_tab.

"populate fields of struture and append to itab
append wa_buffo_tab to it_buffo_tab. . CALL FUNCTION 'RHAD_GET_BUFFER_PLOG_TAB_DIALG' TABLES buffer_tab = it_buffer_tab plog_tab_tab = it_plog_tab_tab * tb_buffer_tab = it_tb_buffer_tab * tb_plog_tab_tab = it_tb_plog_tab_tab * buffo_tab = it_buffo_tab . " RHAD_GET_BUFFER_PLOG_TAB_DIALG
IF SY-SUBRC EQ 0. "All OK ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.

DATA:
it_buffer_tab  TYPE STANDARD TABLE OF HRBUFFER ,
wa_buffer_tab  LIKE LINE OF it_buffer_tab,
it_plog_tab_tab  TYPE STANDARD TABLE OF HRDBTAB ,
wa_plog_tab_tab  LIKE LINE OF it_plog_tab_tab,
it_tb_buffer_tab  TYPE STANDARD TABLE OF HRTBUFFER ,
wa_tb_buffer_tab  LIKE LINE OF it_tb_buffer_tab,
it_tb_plog_tab_tab  TYPE STANDARD TABLE OF HRTBUFFER ,
wa_tb_plog_tab_tab  LIKE LINE OF it_tb_plog_tab_tab,
it_buffo_tab  TYPE STANDARD TABLE OF P1000 ,
wa_buffo_tab  LIKE LINE OF it_buffo_tab.


"populate fields of struture and append to itab
append wa_buffer_tab to it_buffer_tab.

"populate fields of struture and append to itab
append wa_plog_tab_tab to it_plog_tab_tab.

"populate fields of struture and append to itab
append wa_tb_buffer_tab to it_tb_buffer_tab.

"populate fields of struture and append to itab
append wa_tb_plog_tab_tab to it_tb_plog_tab_tab.

"populate fields of struture and append to itab
append wa_buffo_tab to it_buffo_tab.

Contribute (Add Comments)

Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name RHAD_GET_BUFFER_PLOG_TAB_DIALG or its description.