SAP Function Modules

ISU_COPA_GENERAL_DATA_CHECK SAP Function module - INTERNAL: Global Checks for CO-PA Update







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

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


Pattern for FM ISU_COPA_GENERAL_DATA_CHECK - ISU COPA GENERAL DATA CHECK





CALL FUNCTION 'ISU_COPA_GENERAL_DATA_CHECK' "INTERNAL: Global Checks for CO-PA Update
  EXPORTING
    x_bukrs =                   " t001-bukrs
*   x_date = SY-DATUM           " sy-datum
  IMPORTING
    y_erkrs =                   " tkeb-erkrs    Operating Concern
    y_kokrs =                   " tka01-kokrs   Controlling Area
    y_xstatist_update =         " boole-boole
* TABLES
*   ty_te760 =                  " te760
  EXCEPTIONS
    NOT_ERKRS_ACTIVE = 1        "
    GENERAL_FAULT = 2           "               General Error
    .  "  ISU_COPA_GENERAL_DATA_CHECK

ABAP code example for Function Module ISU_COPA_GENERAL_DATA_CHECK





The ABAP code below is a full code listing to execute function module ISU_COPA_GENERAL_DATA_CHECK 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_y_erkrs  TYPE TKEB-ERKRS ,
ld_y_kokrs  TYPE TKA01-KOKRS ,
ld_y_xstatist_update  TYPE BOOLE-BOOLE ,
it_ty_te760  TYPE STANDARD TABLE OF TE760,"TABLES PARAM
wa_ty_te760  LIKE LINE OF it_ty_te760 .


SELECT single BUKRS
FROM T001
INTO @DATA(ld_x_bukrs).

DATA(ld_x_date) = '20210129'.

"populate fields of struture and append to itab
append wa_ty_te760 to it_ty_te760. . CALL FUNCTION 'ISU_COPA_GENERAL_DATA_CHECK' EXPORTING x_bukrs = ld_x_bukrs * x_date = ld_x_date IMPORTING y_erkrs = ld_y_erkrs y_kokrs = ld_y_kokrs y_xstatist_update = ld_y_xstatist_update * TABLES * ty_te760 = it_ty_te760 EXCEPTIONS NOT_ERKRS_ACTIVE = 1 GENERAL_FAULT = 2 . " ISU_COPA_GENERAL_DATA_CHECK
IF SY-SUBRC EQ 0. "All OK ELSEIF SY-SUBRC EQ 1. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 2. "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_y_erkrs  TYPE TKEB-ERKRS ,
ld_x_bukrs  TYPE T001-BUKRS ,
it_ty_te760  TYPE STANDARD TABLE OF TE760 ,
wa_ty_te760  LIKE LINE OF it_ty_te760,
ld_y_kokrs  TYPE TKA01-KOKRS ,
ld_x_date  TYPE SY-DATUM ,
ld_y_xstatist_update  TYPE BOOLE-BOOLE .


SELECT single BUKRS
FROM T001
INTO ld_x_bukrs.


"populate fields of struture and append to itab
append wa_ty_te760 to it_ty_te760.
ld_x_date = '20210129'.

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