SAP FAGL_CREATE_OIM_LINES Function Module for OIM lines in a separated document









FAGL_CREATE_OIM_LINES is a standard fagl create oim lines SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for OIM lines in a separated document processing and below is the pattern details for this FM, 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 fagl create oim lines FM, simply by entering the name FAGL_CREATE_OIM_LINES into the relevant SAP transaction such as SE37 or SE38.

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



Function FAGL_CREATE_OIM_LINES 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 'FAGL_CREATE_OIM_LINES'"OIM lines in a separated document
EXPORTING
* IT_APP_ITEM_TAB = "
* I_SUBSEQUENT = ' ' "General Flag
* IT_ACCHD = "Table Type: Interface to Accounting: Header Information
* IT_ACCIT = "Accounting Interface: Item Information
* IT_ACCCR = "Accounting interface: Currency information
* IT_ACCIT_EXT = "Table for ACCIT_EXTENSION
* IT_AUSZ_CLR = "Assign Clearing Item to Cleared Items
* IT_AUSZ_CLR_ASGMT = "Table for Ausz_clr_asgmt
* IT_CURTP_TAB = "
* I_ACCHD = "
.



IMPORTING Parameters details for FAGL_CREATE_OIM_LINES

IT_APP_ITEM_TAB -

Data type: GLT0_ACCIT_EX_TAB
Optional: Yes
Call by Reference: Yes

I_SUBSEQUENT - General Flag

Data type: FLAG
Default: SPACE
Optional: Yes
Call by Reference: Yes

IT_ACCHD - Table Type: Interface to Accounting: Header Information

Data type: ACCHD_T
Optional: Yes
Call by Reference: Yes

IT_ACCIT - Accounting Interface: Item Information

Data type: ACCIT_T
Optional: Yes
Call by Reference: Yes

IT_ACCCR - Accounting interface: Currency information

Data type: ACCCR_T
Optional: Yes
Call by Reference: Yes

IT_ACCIT_EXT - Table for ACCIT_EXTENSION

Data type: FAGL_T_ACCIT_EXTENSION
Optional: Yes
Call by Reference: Yes

IT_AUSZ_CLR - Assign Clearing Item to Cleared Items

Data type: TT_AUSZ_CLR
Optional: Yes
Call by Reference: Yes

IT_AUSZ_CLR_ASGMT - Table for Ausz_clr_asgmt

Data type: AUSZ_CLR_ASGMT_T
Optional: Yes
Call by Reference: Yes

IT_CURTP_TAB -

Data type: GLT0_CURTP_TAB
Optional: Yes
Call by Reference: Yes

I_ACCHD -

Data type: GLT0_ACCHD_EX
Optional: Yes
Call by Reference: Yes

Copy and paste ABAP code example for FAGL_CREATE_OIM_LINES 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_it_app_item_tab  TYPE GLT0_ACCIT_EX_TAB, "   
lv_i_subsequent  TYPE FLAG, "   SPACE
lv_it_acchd  TYPE ACCHD_T, "   
lv_it_accit  TYPE ACCIT_T, "   
lv_it_acccr  TYPE ACCCR_T, "   
lv_it_accit_ext  TYPE FAGL_T_ACCIT_EXTENSION, "   
lv_it_ausz_clr  TYPE TT_AUSZ_CLR, "   
lv_it_ausz_clr_asgmt  TYPE AUSZ_CLR_ASGMT_T, "   
lv_it_curtp_tab  TYPE GLT0_CURTP_TAB, "   
lv_i_acchd  TYPE GLT0_ACCHD_EX. "   

  CALL FUNCTION 'FAGL_CREATE_OIM_LINES'  "OIM lines in a separated document
    EXPORTING
         IT_APP_ITEM_TAB = lv_it_app_item_tab
         I_SUBSEQUENT = lv_i_subsequent
         IT_ACCHD = lv_it_acchd
         IT_ACCIT = lv_it_accit
         IT_ACCCR = lv_it_acccr
         IT_ACCIT_EXT = lv_it_accit_ext
         IT_AUSZ_CLR = lv_it_ausz_clr
         IT_AUSZ_CLR_ASGMT = lv_it_ausz_clr_asgmt
         IT_CURTP_TAB = lv_it_curtp_tab
         I_ACCHD = lv_i_acchd
. " FAGL_CREATE_OIM_LINES




ABAP code using 7.40 inline data declarations to call FM FAGL_CREATE_OIM_LINES

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.

 
DATA(ld_i_subsequent) = ' '.
 
 
 
 
 
 
 
 
 


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!