SAP Function Modules

FILA_ITEMS_PROCESS SAP Function module







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

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


Pattern for FM FILA_ITEMS_PROCESS - FILA ITEMS PROCESS





CALL FUNCTION 'FILA_ITEMS_PROCESS' "
* EXPORTING
*   id_component = 'FILA'       " fila_component  Application Component
*   id_bukrs =                  " bukrs         Company Code
*   id_objid =                  " fila_objid    Object Number
*   id_subid =                  " fila_subid    Subobject Number
*   id_event =                  " fila_event    UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
*   id_tmstamp =                " timestamp     UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
*   id_status = 1               " fila_status
*   if_testrun =                " sy-datar
*   if_dialogcall =             " sy-datar
*   if_trace =                  " sy-datar
    .  "  FILA_ITEMS_PROCESS

ABAP code example for Function Module FILA_ITEMS_PROCESS





The ABAP code below is a full code listing to execute function module FILA_ITEMS_PROCESS 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_id_component) = 'Check type of data required'.
DATA(ld_id_bukrs) = 'Check type of data required'.
DATA(ld_id_objid) = 'Check type of data required'.
DATA(ld_id_subid) = 'Check type of data required'.
DATA(ld_id_event) = 'Check type of data required'.
DATA(ld_id_tmstamp) = 'Check type of data required'.
DATA(ld_id_status) = 'Check type of data required'.
DATA(ld_if_testrun) = 'some text here'.
DATA(ld_if_dialogcall) = 'some text here'.
DATA(ld_if_trace) = 'some text here'. . CALL FUNCTION 'FILA_ITEMS_PROCESS' * EXPORTING * id_component = ld_id_component * id_bukrs = ld_id_bukrs * id_objid = ld_id_objid * id_subid = ld_id_subid * id_event = ld_id_event * id_tmstamp = ld_id_tmstamp * id_status = ld_id_status * if_testrun = ld_if_testrun * if_dialogcall = ld_if_dialogcall * if_trace = ld_if_trace . " FILA_ITEMS_PROCESS
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_id_component  TYPE FILA_COMPONENT ,
ld_id_bukrs  TYPE BUKRS ,
ld_id_objid  TYPE FILA_OBJID ,
ld_id_subid  TYPE FILA_SUBID ,
ld_id_event  TYPE FILA_EVENT ,
ld_id_tmstamp  TYPE TIMESTAMP ,
ld_id_status  TYPE FILA_STATUS ,
ld_if_testrun  TYPE SY-DATAR ,
ld_if_dialogcall  TYPE SY-DATAR ,
ld_if_trace  TYPE SY-DATAR .

ld_id_component = 'some text here'.
ld_id_bukrs = 'some text here'.
ld_id_objid = 'some text here'.
ld_id_subid = 'some text here'.
ld_id_event = 'some text here'.
ld_id_tmstamp = 'some text here'.
ld_id_status = 'some text here'.
ld_if_testrun = 'some text here'.
ld_if_dialogcall = 'some text here'.
ld_if_trace = 'some text here'.

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