SAP Function Modules

AC_CLR_FB05_ADAPTER SAP Function module







AC_CLR_FB05_ADAPTER 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 AC_CLR_FB05_ADAPTER into the relevant SAP transaction such as SE37 or SE80.

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


Pattern for FM AC_CLR_FB05_ADAPTER - AC CLR FB05 ADAPTER





CALL FUNCTION 'AC_CLR_FB05_ADAPTER' "
* EXPORTING
*   i_process = 'EINGZAHL'      " auglv
  IMPORTING
    e_belnr =                   " belnr_d
    e_bukrs =                   " bukrs
    e_gjahr =                   " gjahr
  TABLES
    t_bkpf =                    " bkpf
    t_bseg =                    " bseg
    t_rfops =                   " rfops
*   t_rsgtab =                  " irsgtab
  EXCEPTIONS
    INVALID_INPUT = 1           "
    .  "  AC_CLR_FB05_ADAPTER

ABAP code example for Function Module AC_CLR_FB05_ADAPTER





The ABAP code below is a full code listing to execute function module AC_CLR_FB05_ADAPTER 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:
ld_e_belnr  TYPE BELNR_D ,
ld_e_bukrs  TYPE BUKRS ,
ld_e_gjahr  TYPE GJAHR ,
it_t_bkpf  TYPE STANDARD TABLE OF BKPF,"TABLES PARAM
wa_t_bkpf  LIKE LINE OF it_t_bkpf ,
it_t_bseg  TYPE STANDARD TABLE OF BSEG,"TABLES PARAM
wa_t_bseg  LIKE LINE OF it_t_bseg ,
it_t_rfops  TYPE STANDARD TABLE OF RFOPS,"TABLES PARAM
wa_t_rfops  LIKE LINE OF it_t_rfops ,
it_t_rsgtab  TYPE STANDARD TABLE OF IRSGTAB,"TABLES PARAM
wa_t_rsgtab  LIKE LINE OF it_t_rsgtab .

DATA(ld_i_process) = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_t_bkpf to it_t_bkpf.

"populate fields of struture and append to itab
append wa_t_bseg to it_t_bseg.

"populate fields of struture and append to itab
append wa_t_rfops to it_t_rfops.

"populate fields of struture and append to itab
append wa_t_rsgtab to it_t_rsgtab. . CALL FUNCTION 'AC_CLR_FB05_ADAPTER' * EXPORTING * i_process = ld_i_process IMPORTING e_belnr = ld_e_belnr e_bukrs = ld_e_bukrs e_gjahr = ld_e_gjahr TABLES t_bkpf = it_t_bkpf t_bseg = it_t_bseg t_rfops = it_t_rfops * t_rsgtab = it_t_rsgtab EXCEPTIONS INVALID_INPUT = 1 . " AC_CLR_FB05_ADAPTER
IF SY-SUBRC EQ 0. "All OK ELSEIF SY-SUBRC EQ 1. "Exception "Add code for exception here 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:
ld_e_belnr  TYPE BELNR_D ,
ld_i_process  TYPE AUGLV ,
it_t_bkpf  TYPE STANDARD TABLE OF BKPF ,
wa_t_bkpf  LIKE LINE OF it_t_bkpf,
ld_e_bukrs  TYPE BUKRS ,
it_t_bseg  TYPE STANDARD TABLE OF BSEG ,
wa_t_bseg  LIKE LINE OF it_t_bseg,
ld_e_gjahr  TYPE GJAHR ,
it_t_rfops  TYPE STANDARD TABLE OF RFOPS ,
wa_t_rfops  LIKE LINE OF it_t_rfops,
it_t_rsgtab  TYPE STANDARD TABLE OF IRSGTAB ,
wa_t_rsgtab  LIKE LINE OF it_t_rsgtab.

ld_i_process = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_t_bkpf to it_t_bkpf.

"populate fields of struture and append to itab
append wa_t_bseg to it_t_bseg.

"populate fields of struture and append to itab
append wa_t_rfops to it_t_rfops.

"populate fields of struture and append to itab
append wa_t_rsgtab to it_t_rsgtab.

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 AC_CLR_FB05_ADAPTER or its description.