SAP FI_ICCF_POST_HEADER Function Module for









FI_ICCF_POST_HEADER is a standard fi iccf post header 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 fi iccf post header FM, simply by entering the name FI_ICCF_POST_HEADER into the relevant SAP transaction such as SE37 or SE38.

Function Group: F044
Program Name: SAPLF044
Main Program: SAPLF044
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function FI_ICCF_POST_HEADER 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 'FI_ICCF_POST_HEADER'"
EXPORTING
I_LOGSYS = "Logical system of sender
I_AWTYP = "
I_AWORG = "
I_KOKRS = "
I_COFI_F_CUR = "
I_KTOPL = "
* I_MESS_SHOW = 'X' "
* I_FLG_REVERSE = ' ' "
* I_FLG_TEST = 'X' "X: Test Run

EXCEPTIONS
ERROR_OCCURED = 1
.



IMPORTING Parameters details for FI_ICCF_POST_HEADER

I_LOGSYS - Logical system of sender

Data type: T000-LOGSYS
Optional: No
Call by Reference: No ( called with pass by value option)

I_AWTYP -

Data type: BKPF-AWTYP
Optional: No
Call by Reference: No ( called with pass by value option)

I_AWORG -

Data type: ACCHD-AWORG
Optional: No
Call by Reference: No ( called with pass by value option)

I_KOKRS -

Data type: ACCIT-KOKRS
Optional: No
Call by Reference: No ( called with pass by value option)

I_COFI_F_CUR -

Data type: COFI_F_CUR
Optional: No
Call by Reference: No ( called with pass by value option)

I_KTOPL -

Data type: SKA1-KTOPL
Optional: No
Call by Reference: No ( called with pass by value option)

I_MESS_SHOW -

Data type:
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_FLG_REVERSE -

Data type:
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_FLG_TEST - X: Test Run

Data type:
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

ERROR_OCCURED - General Error

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for FI_ICCF_POST_HEADER 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_logsys  TYPE T000-LOGSYS, "   
lv_error_occured  TYPE T000, "   
lv_i_awtyp  TYPE BKPF-AWTYP, "   
lv_i_aworg  TYPE ACCHD-AWORG, "   
lv_i_kokrs  TYPE ACCIT-KOKRS, "   
lv_i_cofi_f_cur  TYPE COFI_F_CUR, "   
lv_i_ktopl  TYPE SKA1-KTOPL, "   
lv_i_mess_show  TYPE SKA1, "   'X'
lv_i_flg_reverse  TYPE SKA1, "   ' '
lv_i_flg_test  TYPE SKA1. "   'X'

  CALL FUNCTION 'FI_ICCF_POST_HEADER'  "
    EXPORTING
         I_LOGSYS = lv_i_logsys
         I_AWTYP = lv_i_awtyp
         I_AWORG = lv_i_aworg
         I_KOKRS = lv_i_kokrs
         I_COFI_F_CUR = lv_i_cofi_f_cur
         I_KTOPL = lv_i_ktopl
         I_MESS_SHOW = lv_i_mess_show
         I_FLG_REVERSE = lv_i_flg_reverse
         I_FLG_TEST = lv_i_flg_test
    EXCEPTIONS
        ERROR_OCCURED = 1
. " FI_ICCF_POST_HEADER




ABAP code using 7.40 inline data declarations to call FM FI_ICCF_POST_HEADER

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 LOGSYS FROM T000 INTO @DATA(ld_i_logsys).
 
 
"SELECT single AWTYP FROM BKPF INTO @DATA(ld_i_awtyp).
 
"SELECT single AWORG FROM ACCHD INTO @DATA(ld_i_aworg).
 
"SELECT single KOKRS FROM ACCIT INTO @DATA(ld_i_kokrs).
 
 
"SELECT single KTOPL FROM SKA1 INTO @DATA(ld_i_ktopl).
 
DATA(ld_i_mess_show) = 'X'.
 
DATA(ld_i_flg_reverse) = ' '.
 
DATA(ld_i_flg_test) = 'X'.
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!