SAP Function Modules

SBIC_MESSURE_TRANSFER SAP Function module







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

Associated Function Group: SBIC
Released Date: Not Released
Processing type: Remote-Enabled
remote enabled module settings


Pattern for FM SBIC_MESSURE_TRANSFER - SBIC MESSURE TRANSFER





CALL FUNCTION 'SBIC_MESSURE_TRANSFER' "
* TABLES
*   i_t_langu =                 " rslangusel
*   e_t_t006 =                  " rst006
*   e_t_t006a =                 " rst006a
*   e_t_t006b =                 " rst006b
*   e_t_t006c =                 " rst006c
*   e_t_t006d =                 " rst006d
*   e_t_t006i =                 " rst006i
*   e_t_t006j =                 " rst006j
*   e_t_t006t =                 " rst006t
    .  "  SBIC_MESSURE_TRANSFER

ABAP code example for Function Module SBIC_MESSURE_TRANSFER





The ABAP code below is a full code listing to execute function module SBIC_MESSURE_TRANSFER 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_i_t_langu  TYPE STANDARD TABLE OF RSLANGUSEL,"TABLES PARAM
wa_i_t_langu  LIKE LINE OF it_i_t_langu ,
it_e_t_t006  TYPE STANDARD TABLE OF RST006,"TABLES PARAM
wa_e_t_t006  LIKE LINE OF it_e_t_t006 ,
it_e_t_t006a  TYPE STANDARD TABLE OF RST006A,"TABLES PARAM
wa_e_t_t006a  LIKE LINE OF it_e_t_t006a ,
it_e_t_t006b  TYPE STANDARD TABLE OF RST006B,"TABLES PARAM
wa_e_t_t006b  LIKE LINE OF it_e_t_t006b ,
it_e_t_t006c  TYPE STANDARD TABLE OF RST006C,"TABLES PARAM
wa_e_t_t006c  LIKE LINE OF it_e_t_t006c ,
it_e_t_t006d  TYPE STANDARD TABLE OF RST006D,"TABLES PARAM
wa_e_t_t006d  LIKE LINE OF it_e_t_t006d ,
it_e_t_t006i  TYPE STANDARD TABLE OF RST006I,"TABLES PARAM
wa_e_t_t006i  LIKE LINE OF it_e_t_t006i ,
it_e_t_t006j  TYPE STANDARD TABLE OF RST006J,"TABLES PARAM
wa_e_t_t006j  LIKE LINE OF it_e_t_t006j ,
it_e_t_t006t  TYPE STANDARD TABLE OF RST006T,"TABLES PARAM
wa_e_t_t006t  LIKE LINE OF it_e_t_t006t .


"populate fields of struture and append to itab
append wa_i_t_langu to it_i_t_langu.

"populate fields of struture and append to itab
append wa_e_t_t006 to it_e_t_t006.

"populate fields of struture and append to itab
append wa_e_t_t006a to it_e_t_t006a.

"populate fields of struture and append to itab
append wa_e_t_t006b to it_e_t_t006b.

"populate fields of struture and append to itab
append wa_e_t_t006c to it_e_t_t006c.

"populate fields of struture and append to itab
append wa_e_t_t006d to it_e_t_t006d.

"populate fields of struture and append to itab
append wa_e_t_t006i to it_e_t_t006i.

"populate fields of struture and append to itab
append wa_e_t_t006j to it_e_t_t006j.

"populate fields of struture and append to itab
append wa_e_t_t006t to it_e_t_t006t. . CALL FUNCTION 'SBIC_MESSURE_TRANSFER' * TABLES * i_t_langu = it_i_t_langu * e_t_t006 = it_e_t_t006 * e_t_t006a = it_e_t_t006a * e_t_t006b = it_e_t_t006b * e_t_t006c = it_e_t_t006c * e_t_t006d = it_e_t_t006d * e_t_t006i = it_e_t_t006i * e_t_t006j = it_e_t_t006j * e_t_t006t = it_e_t_t006t . " SBIC_MESSURE_TRANSFER
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_i_t_langu  TYPE STANDARD TABLE OF RSLANGUSEL ,
wa_i_t_langu  LIKE LINE OF it_i_t_langu,
it_e_t_t006  TYPE STANDARD TABLE OF RST006 ,
wa_e_t_t006  LIKE LINE OF it_e_t_t006,
it_e_t_t006a  TYPE STANDARD TABLE OF RST006A ,
wa_e_t_t006a  LIKE LINE OF it_e_t_t006a,
it_e_t_t006b  TYPE STANDARD TABLE OF RST006B ,
wa_e_t_t006b  LIKE LINE OF it_e_t_t006b,
it_e_t_t006c  TYPE STANDARD TABLE OF RST006C ,
wa_e_t_t006c  LIKE LINE OF it_e_t_t006c,
it_e_t_t006d  TYPE STANDARD TABLE OF RST006D ,
wa_e_t_t006d  LIKE LINE OF it_e_t_t006d,
it_e_t_t006i  TYPE STANDARD TABLE OF RST006I ,
wa_e_t_t006i  LIKE LINE OF it_e_t_t006i,
it_e_t_t006j  TYPE STANDARD TABLE OF RST006J ,
wa_e_t_t006j  LIKE LINE OF it_e_t_t006j,
it_e_t_t006t  TYPE STANDARD TABLE OF RST006T ,
wa_e_t_t006t  LIKE LINE OF it_e_t_t006t.


"populate fields of struture and append to itab
append wa_i_t_langu to it_i_t_langu.

"populate fields of struture and append to itab
append wa_e_t_t006 to it_e_t_t006.

"populate fields of struture and append to itab
append wa_e_t_t006a to it_e_t_t006a.

"populate fields of struture and append to itab
append wa_e_t_t006b to it_e_t_t006b.

"populate fields of struture and append to itab
append wa_e_t_t006c to it_e_t_t006c.

"populate fields of struture and append to itab
append wa_e_t_t006d to it_e_t_t006d.

"populate fields of struture and append to itab
append wa_e_t_t006i to it_e_t_t006i.

"populate fields of struture and append to itab
append wa_e_t_t006j to it_e_t_t006j.

"populate fields of struture and append to itab
append wa_e_t_t006t to it_e_t_t006t.

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