SAP FM_ARC_FI_UPDATE_ITEMS Function Module for
FM_ARC_FI_UPDATE_ITEMS is a standard fm arc fi update items SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for fm arc fi update items FM, simply by entering the name FM_ARC_FI_UPDATE_ITEMS into the relevant SAP transaction such as SE37 or SE38.
Function Group: FMAR
Program Name: SAPLFMAR
Main Program:
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FM_ARC_FI_UPDATE_ITEMS pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'FM_ARC_FI_UPDATE_ITEMS'".
EXPORTING
* I_LOG = ' ' "
* I_TEST = 'X' "
I_FUNCTION = "
TABLES
T_FMIFIHD = "
T_PAYRC = "
T_KBLK_USER = "
T_PAYKO = "
T_PAYCT = "
T_PAYOI = "
T_PAYOA = "
T_PAYOH = "
T_DOCUMENTS = "
T_FMIFIIT = "
* T_FMCFSIF = "
T_FMCCFD = "
T_FMUDBSEGH = "
T_FMUDBSEGP = "
T_FMUDBSEGS = "
T_PAYRQ = "
T_PAYBU = "
IMPORTING Parameters details for FM_ARC_FI_UPDATE_ITEMS
I_LOG -
Data type: BOOLE-BOOLEDefault: SPACE
Optional: No
Call by Reference: Yes
I_TEST -
Data type: BOOLE-BOOLEDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_FUNCTION -
Data type: COptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for FM_ARC_FI_UPDATE_ITEMS
T_FMIFIHD -
Data type: FMIFIHDOptional: No
Call by Reference: No ( called with pass by value option)
T_PAYRC -
Data type: PAYRCOptional: No
Call by Reference: Yes
T_KBLK_USER -
Data type: KBLK_USEROptional: No
Call by Reference: Yes
T_PAYKO -
Data type: PAYKOOptional: No
Call by Reference: Yes
T_PAYCT -
Data type: PAYCTOptional: No
Call by Reference: Yes
T_PAYOI -
Data type: PAYOIOptional: No
Call by Reference: Yes
T_PAYOA -
Data type: PAYOAOptional: No
Call by Reference: Yes
T_PAYOH -
Data type: PAYOHOptional: No
Call by Reference: Yes
T_DOCUMENTS -
Data type: FMAR_DOC_FI_EXCLOptional: No
Call by Reference: Yes
T_FMIFIIT -
Data type: FMIFIITOptional: No
Call by Reference: No ( called with pass by value option)
T_FMCFSIF -
Data type: FMCFSIFOptional: Yes
Call by Reference: Yes
T_FMCCFD -
Data type: FMCCFDOptional: No
Call by Reference: Yes
T_FMUDBSEGH -
Data type: FMUDBSEGHOptional: No
Call by Reference: No ( called with pass by value option)
T_FMUDBSEGP -
Data type: FMUDBSEGPOptional: No
Call by Reference: No ( called with pass by value option)
T_FMUDBSEGS -
Data type: FMUDBSEGSOptional: No
Call by Reference: Yes
T_PAYRQ -
Data type: PAYRQOptional: No
Call by Reference: Yes
T_PAYBU -
Data type: PAYBUOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for FM_ARC_FI_UPDATE_ITEMS Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than 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 newer method of declaring data variables on the fly. 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), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_i_log | TYPE BOOLE-BOOLE, " SPACE | |||
| lt_t_fmifihd | TYPE STANDARD TABLE OF FMIFIHD, " | |||
| lt_t_payrc | TYPE STANDARD TABLE OF PAYRC, " | |||
| lt_t_kblk_user | TYPE STANDARD TABLE OF KBLK_USER, " | |||
| lt_t_payko | TYPE STANDARD TABLE OF PAYKO, " | |||
| lt_t_payct | TYPE STANDARD TABLE OF PAYCT, " | |||
| lt_t_payoi | TYPE STANDARD TABLE OF PAYOI, " | |||
| lt_t_payoa | TYPE STANDARD TABLE OF PAYOA, " | |||
| lt_t_payoh | TYPE STANDARD TABLE OF PAYOH, " | |||
| lt_t_documents | TYPE STANDARD TABLE OF FMAR_DOC_FI_EXCL, " | |||
| lv_i_test | TYPE BOOLE-BOOLE, " 'X' | |||
| lt_t_fmifiit | TYPE STANDARD TABLE OF FMIFIIT, " | |||
| lt_t_fmcfsif | TYPE STANDARD TABLE OF FMCFSIF, " | |||
| lv_i_function | TYPE C, " | |||
| lt_t_fmccfd | TYPE STANDARD TABLE OF FMCCFD, " | |||
| lt_t_fmudbsegh | TYPE STANDARD TABLE OF FMUDBSEGH, " | |||
| lt_t_fmudbsegp | TYPE STANDARD TABLE OF FMUDBSEGP, " | |||
| lt_t_fmudbsegs | TYPE STANDARD TABLE OF FMUDBSEGS, " | |||
| lt_t_payrq | TYPE STANDARD TABLE OF PAYRQ, " | |||
| lt_t_paybu | TYPE STANDARD TABLE OF PAYBU. " |
|   CALL FUNCTION 'FM_ARC_FI_UPDATE_ITEMS' " |
| EXPORTING | ||
| I_LOG | = lv_i_log | |
| I_TEST | = lv_i_test | |
| I_FUNCTION | = lv_i_function | |
| TABLES | ||
| T_FMIFIHD | = lt_t_fmifihd | |
| T_PAYRC | = lt_t_payrc | |
| T_KBLK_USER | = lt_t_kblk_user | |
| T_PAYKO | = lt_t_payko | |
| T_PAYCT | = lt_t_payct | |
| T_PAYOI | = lt_t_payoi | |
| T_PAYOA | = lt_t_payoa | |
| T_PAYOH | = lt_t_payoh | |
| T_DOCUMENTS | = lt_t_documents | |
| T_FMIFIIT | = lt_t_fmifiit | |
| T_FMCFSIF | = lt_t_fmcfsif | |
| T_FMCCFD | = lt_t_fmccfd | |
| T_FMUDBSEGH | = lt_t_fmudbsegh | |
| T_FMUDBSEGP | = lt_t_fmudbsegp | |
| T_FMUDBSEGS | = lt_t_fmudbsegs | |
| T_PAYRQ | = lt_t_payrq | |
| T_PAYBU | = lt_t_paybu | |
| . " FM_ARC_FI_UPDATE_ITEMS | ||
ABAP code using 7.40 inline data declarations to call FM FM_ARC_FI_UPDATE_ITEMS
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| "SELECT single BOOLE FROM BOOLE INTO @DATA(ld_i_log). | ||||
| DATA(ld_i_log) | = ' '. | |||
| "SELECT single BOOLE FROM BOOLE INTO @DATA(ld_i_test). | ||||
| DATA(ld_i_test) | = 'X'. | |||
Search for further information about these or an SAP related objects