SAP Function Modules

FM_CHANGE_AA_DOCFM_READ_CO SAP Function module







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

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


Pattern for FM FM_CHANGE_AA_DOCFM_READ_CO - FM CHANGE AA DOCFM READ CO





CALL FUNCTION 'FM_CHANGE_AA_DOCFM_READ_CO' "
  EXPORTING
    i_abgjr =                   " fmcha1-abgjr  Fiscal year from which this entry is valid
    i_bsgjr =                   " fmcha1-bsgjr  Fiscal year from which this entry is valid
  IMPORTING
    e_t_return =                " fm_t_oireturn  FM: Return Parameter for Commitment Documents
  TABLES
    t_fmzuch =                  " fmzuch
    t_fmcha1 =                  " fmcha1
*   t_wrttp =                   " range_c2
  EXCEPTIONS
    GENERAL_ERRORS = 1          "
    .  "  FM_CHANGE_AA_DOCFM_READ_CO

ABAP code example for Function Module FM_CHANGE_AA_DOCFM_READ_CO





The ABAP code below is a full code listing to execute function module FM_CHANGE_AA_DOCFM_READ_CO 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_t_return  TYPE FM_T_OIRETURN ,
it_t_fmzuch  TYPE STANDARD TABLE OF FMZUCH,"TABLES PARAM
wa_t_fmzuch  LIKE LINE OF it_t_fmzuch ,
it_t_fmcha1  TYPE STANDARD TABLE OF FMCHA1,"TABLES PARAM
wa_t_fmcha1  LIKE LINE OF it_t_fmcha1 ,
it_t_wrttp  TYPE STANDARD TABLE OF RANGE_C2,"TABLES PARAM
wa_t_wrttp  LIKE LINE OF it_t_wrttp .


SELECT single ABGJR
FROM FMCHA1
INTO @DATA(ld_i_abgjr).


SELECT single BSGJR
FROM FMCHA1
INTO @DATA(ld_i_bsgjr).


"populate fields of struture and append to itab
append wa_t_fmzuch to it_t_fmzuch.

"populate fields of struture and append to itab
append wa_t_fmcha1 to it_t_fmcha1.

"populate fields of struture and append to itab
append wa_t_wrttp to it_t_wrttp. . CALL FUNCTION 'FM_CHANGE_AA_DOCFM_READ_CO' EXPORTING i_abgjr = ld_i_abgjr i_bsgjr = ld_i_bsgjr IMPORTING e_t_return = ld_e_t_return TABLES t_fmzuch = it_t_fmzuch t_fmcha1 = it_t_fmcha1 * t_wrttp = it_t_wrttp EXCEPTIONS GENERAL_ERRORS = 1 . " FM_CHANGE_AA_DOCFM_READ_CO
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_t_return  TYPE FM_T_OIRETURN ,
ld_i_abgjr  TYPE FMCHA1-ABGJR ,
it_t_fmzuch  TYPE STANDARD TABLE OF FMZUCH ,
wa_t_fmzuch  LIKE LINE OF it_t_fmzuch,
ld_i_bsgjr  TYPE FMCHA1-BSGJR ,
it_t_fmcha1  TYPE STANDARD TABLE OF FMCHA1 ,
wa_t_fmcha1  LIKE LINE OF it_t_fmcha1,
it_t_wrttp  TYPE STANDARD TABLE OF RANGE_C2 ,
wa_t_wrttp  LIKE LINE OF it_t_wrttp.


SELECT single ABGJR
FROM FMCHA1
INTO ld_i_abgjr.


"populate fields of struture and append to itab
append wa_t_fmzuch to it_t_fmzuch.

SELECT single BSGJR
FROM FMCHA1
INTO ld_i_bsgjr.


"populate fields of struture and append to itab
append wa_t_fmcha1 to it_t_fmcha1.

"populate fields of struture and append to itab
append wa_t_wrttp to it_t_wrttp.

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