SAP Function Modules

ISU_EVENT_1190_AR SAP Function module







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

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


Pattern for FM ISU_EVENT_1190_AR - ISU EVENT 1190 AR





CALL FUNCTION 'ISU_EVENT_1190_AR' "
  EXPORTING
    i_fkkko =                   " fkkko
*   i_augrd =                   " fkkop-augrd
*   i_process =                 " c
*   i_callid = ' '              "
    i_cancel =                  "
* TABLES
*   it_fkkop =                  " fkkop
*   it_fkkopk =                 " fkkopk
*   it_fkkopw =                 " fkkopw
*   it_fkkcl =                  " fkkcl
*   it_fkkrap =                 " dfkkrap
*   it_fkkextdoc =              " dfkkextdoc
*   it_fkkextdoc_cancel =       " dfkkextdoc
*   it_messa =                  " fimsg
    .  "  ISU_EVENT_1190_AR

ABAP code example for Function Module ISU_EVENT_1190_AR





The ABAP code below is a full code listing to execute function module ISU_EVENT_1190_AR 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_it_fkkop  TYPE STANDARD TABLE OF FKKOP,"TABLES PARAM
wa_it_fkkop  LIKE LINE OF it_it_fkkop ,
it_it_fkkopk  TYPE STANDARD TABLE OF FKKOPK,"TABLES PARAM
wa_it_fkkopk  LIKE LINE OF it_it_fkkopk ,
it_it_fkkopw  TYPE STANDARD TABLE OF FKKOPW,"TABLES PARAM
wa_it_fkkopw  LIKE LINE OF it_it_fkkopw ,
it_it_fkkcl  TYPE STANDARD TABLE OF FKKCL,"TABLES PARAM
wa_it_fkkcl  LIKE LINE OF it_it_fkkcl ,
it_it_fkkrap  TYPE STANDARD TABLE OF DFKKRAP,"TABLES PARAM
wa_it_fkkrap  LIKE LINE OF it_it_fkkrap ,
it_it_fkkextdoc  TYPE STANDARD TABLE OF DFKKEXTDOC,"TABLES PARAM
wa_it_fkkextdoc  LIKE LINE OF it_it_fkkextdoc ,
it_it_fkkextdoc_cancel  TYPE STANDARD TABLE OF DFKKEXTDOC,"TABLES PARAM
wa_it_fkkextdoc_cancel  LIKE LINE OF it_it_fkkextdoc_cancel ,
it_it_messa  TYPE STANDARD TABLE OF FIMSG,"TABLES PARAM
wa_it_messa  LIKE LINE OF it_it_messa .

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

DATA(ld_i_augrd) = some text here
DATA(ld_i_process) = 'Check type of data required'.
DATA(ld_i_callid) = 'some text here'.
DATA(ld_i_cancel) = 'some text here'.

"populate fields of struture and append to itab
append wa_it_fkkop to it_it_fkkop.

"populate fields of struture and append to itab
append wa_it_fkkopk to it_it_fkkopk.

"populate fields of struture and append to itab
append wa_it_fkkopw to it_it_fkkopw.

"populate fields of struture and append to itab
append wa_it_fkkcl to it_it_fkkcl.

"populate fields of struture and append to itab
append wa_it_fkkrap to it_it_fkkrap.

"populate fields of struture and append to itab
append wa_it_fkkextdoc to it_it_fkkextdoc.

"populate fields of struture and append to itab
append wa_it_fkkextdoc_cancel to it_it_fkkextdoc_cancel.

"populate fields of struture and append to itab
append wa_it_messa to it_it_messa. . CALL FUNCTION 'ISU_EVENT_1190_AR' EXPORTING i_fkkko = ld_i_fkkko * i_augrd = ld_i_augrd * i_process = ld_i_process * i_callid = ld_i_callid i_cancel = ld_i_cancel * TABLES * it_fkkop = it_it_fkkop * it_fkkopk = it_it_fkkopk * it_fkkopw = it_it_fkkopw * it_fkkcl = it_it_fkkcl * it_fkkrap = it_it_fkkrap * it_fkkextdoc = it_it_fkkextdoc * it_fkkextdoc_cancel = it_it_fkkextdoc_cancel * it_messa = it_it_messa . " ISU_EVENT_1190_AR
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:
ld_i_fkkko  TYPE FKKKO ,
it_it_fkkop  TYPE STANDARD TABLE OF FKKOP ,
wa_it_fkkop  LIKE LINE OF it_it_fkkop,
ld_i_augrd  TYPE FKKOP-AUGRD ,
it_it_fkkopk  TYPE STANDARD TABLE OF FKKOPK ,
wa_it_fkkopk  LIKE LINE OF it_it_fkkopk,
ld_i_process  TYPE C ,
it_it_fkkopw  TYPE STANDARD TABLE OF FKKOPW ,
wa_it_fkkopw  LIKE LINE OF it_it_fkkopw,
ld_i_callid  TYPE STRING ,
it_it_fkkcl  TYPE STANDARD TABLE OF FKKCL ,
wa_it_fkkcl  LIKE LINE OF it_it_fkkcl,
ld_i_cancel  TYPE STRING ,
it_it_fkkrap  TYPE STANDARD TABLE OF DFKKRAP ,
wa_it_fkkrap  LIKE LINE OF it_it_fkkrap,
it_it_fkkextdoc  TYPE STANDARD TABLE OF DFKKEXTDOC ,
wa_it_fkkextdoc  LIKE LINE OF it_it_fkkextdoc,
it_it_fkkextdoc_cancel  TYPE STANDARD TABLE OF DFKKEXTDOC ,
wa_it_fkkextdoc_cancel  LIKE LINE OF it_it_fkkextdoc_cancel,
it_it_messa  TYPE STANDARD TABLE OF FIMSG ,
wa_it_messa  LIKE LINE OF it_it_messa.

ld_i_fkkko = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_it_fkkop to it_it_fkkop.

ld_i_augrd = some text here

"populate fields of struture and append to itab
append wa_it_fkkopk to it_it_fkkopk.
ld_i_process = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_it_fkkopw to it_it_fkkopw.
ld_i_callid = 'some text here'.

"populate fields of struture and append to itab
append wa_it_fkkcl to it_it_fkkcl.
ld_i_cancel = 'some text here'.

"populate fields of struture and append to itab
append wa_it_fkkrap to it_it_fkkrap.

"populate fields of struture and append to itab
append wa_it_fkkextdoc to it_it_fkkextdoc.

"populate fields of struture and append to itab
append wa_it_fkkextdoc_cancel to it_it_fkkextdoc_cancel.

"populate fields of struture and append to itab
append wa_it_messa to it_it_messa.

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