SAP UA_INV_PROCESS_ONLINE Function Module for
UA_INV_PROCESS_ONLINE is a standard ua inv process online 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 ua inv process online FM, simply by entering the name UA_INV_PROCESS_ONLINE into the relevant SAP transaction such as SE37 or SE38.
Function Group: UA_INV_PARALLEL_PROCESS
Program Name: SAPLUA_INV_PARALLEL_PROCESS
Main Program: SAPLUA_INV_PARALLEL_PROCESS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function UA_INV_PROCESS_ONLINE 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 'UA_INV_PROCESS_ONLINE'".
EXPORTING
ID_ACC_DATABASIS = "Data Basis
* ID_NO_PACKAGING = ' ' "General Indicator
* ID_PARALLEL = ' ' "General Indicator
* ID_SERVERGROUP = ' ' "RFC server group for parallel processing
ID_PROGRAM = "ABAP Program Name
ID_LAYOUT = "Layout
IT_SEL = "Selection Table with Field Names
IT_SEL_TABS = "Selection Tables
IT_PERSEL = "Selection Table with Field Names
IT_CHARSEL = "Selection Table with Field Names
* ID_NUMBER_OBJ_PER_PACKET = 100 "
ID_APPL_CLOSING = "
IT_ID = "FIN Object and Package for External Packaging
IT_TYPENAME = "Table with Object Type Names
* ID_SCHEDMAN_KEY = "Key Fields in the Table for the Schedule Manager Monitor
* I_ABGRIR = ' ' "
IT_ACC_SYSTEM = "Accounting System
* ID_TESTRUN = 'X' "General Indicator
* ID_DIALOG = ' ' "General Indicator
* IS_HELP_FLAGS = ' ' "
* ID_DETAILED_LIST = ' ' "General Indicator
* ID_BASIC_LIST = 'X' "General Indicator
* ID_SAVE_LIST = ' ' "General Indicator
IMPORTING
ED_SCHEDMAN_EXT_BL = "Unstructured Data for Starting Extracts
ED_SCHEDMAN_EXT_DL = "Unstructured Data for Starting Extracts
ET_SCHEDMAN_SPOOL = "Table Type for Schedman_spool
ED_LOG_HANDLE = "Application Log: Log Handle
IMPORTING Parameters details for UA_INV_PROCESS_ONLINE
ID_ACC_DATABASIS - Data Basis
Data type: ACC_DATABASISOptional: No
Call by Reference: Yes
ID_NO_PACKAGING - General Indicator
Data type: FLAGDefault: ' '
Optional: Yes
Call by Reference: Yes
ID_PARALLEL - General Indicator
Data type: FLAGDefault: ' '
Optional: Yes
Call by Reference: Yes
ID_SERVERGROUP - RFC server group for parallel processing
Data type: RFCGRDefault: ' '
Optional: Yes
Call by Reference: Yes
ID_PROGRAM - ABAP Program Name
Data type: PROGNAMEOptional: No
Call by Reference: Yes
ID_LAYOUT - Layout
Data type: SLIS_VARIOptional: No
Call by Reference: Yes
IT_SEL - Selection Table with Field Names
Data type: FINB_SEL_TABOptional: No
Call by Reference: Yes
IT_SEL_TABS - Selection Tables
Data type: FINB_SEL_TABSOptional: No
Call by Reference: Yes
IT_PERSEL - Selection Table with Field Names
Data type: FINB_SEL_TABOptional: No
Call by Reference: Yes
IT_CHARSEL - Selection Table with Field Names
Data type: FINB_SEL_TABOptional: No
Call by Reference: Yes
ID_NUMBER_OBJ_PER_PACKET -
Data type: IDefault: 100
Optional: Yes
Call by Reference: Yes
ID_APPL_CLOSING -
Data type: CHAR20Optional: No
Call by Reference: Yes
IT_ID - FIN Object and Package for External Packaging
Data type: UAI_T_ID_PACKAGEOptional: No
Call by Reference: Yes
IT_TYPENAME - Table with Object Type Names
Data type: UAI_T_CLOSING_FOBJ_TYPEOptional: No
Call by Reference: Yes
ID_SCHEDMAN_KEY - Key Fields in the Table for the Schedule Manager Monitor
Data type: SCHEDMAN_KEYOptional: Yes
Call by Reference: Yes
I_ABGRIR -
Data type: BOOLE_DDefault: ' '
Optional: Yes
Call by Reference: Yes
IT_ACC_SYSTEM - Accounting System
Data type: FIN_TS_ACC_SYSTEMOptional: No
Call by Reference: Yes
ID_TESTRUN - General Indicator
Data type: FLAGDefault: 'X'
Optional: Yes
Call by Reference: Yes
ID_DIALOG - General Indicator
Data type: FLAGDefault: ' '
Optional: Yes
Call by Reference: Yes
IS_HELP_FLAGS -
Data type:Default: ' '
Optional: Yes
Call by Reference: Yes
ID_DETAILED_LIST - General Indicator
Data type: FLAGDefault: ' '
Optional: Yes
Call by Reference: Yes
ID_BASIC_LIST - General Indicator
Data type: FLAGDefault: 'X'
Optional: Yes
Call by Reference: Yes
ID_SAVE_LIST - General Indicator
Data type: FLAGDefault: ' '
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for UA_INV_PROCESS_ONLINE
ED_SCHEDMAN_EXT_BL - Unstructured Data for Starting Extracts
Data type: SCHEDMAN_EXTOptional: No
Call by Reference: Yes
ED_SCHEDMAN_EXT_DL - Unstructured Data for Starting Extracts
Data type: SCHEDMAN_EXTOptional: No
Call by Reference: Yes
ET_SCHEDMAN_SPOOL - Table Type for Schedman_spool
Data type: UAI_T_CLOSING_SCHEDMAN_SPOOLOptional: No
Call by Reference: Yes
ED_LOG_HANDLE - Application Log: Log Handle
Data type: BALLOGHNDLOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for UA_INV_PROCESS_ONLINE 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_id_acc_databasis | TYPE ACC_DATABASIS, " | |||
| lv_ed_schedman_ext_bl | TYPE SCHEDMAN_EXT, " | |||
| lv_id_no_packaging | TYPE FLAG, " ' ' | |||
| lv_id_parallel | TYPE FLAG, " ' ' | |||
| lv_id_servergroup | TYPE RFCGR, " ' ' | |||
| lv_id_program | TYPE PROGNAME, " | |||
| lv_id_layout | TYPE SLIS_VARI, " | |||
| lv_it_sel | TYPE FINB_SEL_TAB, " | |||
| lv_it_sel_tabs | TYPE FINB_SEL_TABS, " | |||
| lv_it_persel | TYPE FINB_SEL_TAB, " | |||
| lv_it_charsel | TYPE FINB_SEL_TAB, " | |||
| lv_id_number_obj_per_packet | TYPE I, " 100 | |||
| lv_id_appl_closing | TYPE CHAR20, " | |||
| lv_ed_schedman_ext_dl | TYPE SCHEDMAN_EXT, " | |||
| lv_it_id | TYPE UAI_T_ID_PACKAGE, " | |||
| lv_it_typename | TYPE UAI_T_CLOSING_FOBJ_TYPE, " | |||
| lv_id_schedman_key | TYPE SCHEDMAN_KEY, " | |||
| lv_i_abgrir | TYPE BOOLE_D, " ' ' | |||
| lv_it_acc_system | TYPE FIN_TS_ACC_SYSTEM, " | |||
| lv_et_schedman_spool | TYPE UAI_T_CLOSING_SCHEDMAN_SPOOL, " | |||
| lv_id_testrun | TYPE FLAG, " 'X' | |||
| lv_ed_log_handle | TYPE BALLOGHNDL, " | |||
| lv_id_dialog | TYPE FLAG, " ' ' | |||
| lv_is_help_flags | TYPE FLAG, " ' ' | |||
| lv_id_detailed_list | TYPE FLAG, " ' ' | |||
| lv_id_basic_list | TYPE FLAG, " 'X' | |||
| lv_id_save_list | TYPE FLAG. " ' ' |
|   CALL FUNCTION 'UA_INV_PROCESS_ONLINE' " |
| EXPORTING | ||
| ID_ACC_DATABASIS | = lv_id_acc_databasis | |
| ID_NO_PACKAGING | = lv_id_no_packaging | |
| ID_PARALLEL | = lv_id_parallel | |
| ID_SERVERGROUP | = lv_id_servergroup | |
| ID_PROGRAM | = lv_id_program | |
| ID_LAYOUT | = lv_id_layout | |
| IT_SEL | = lv_it_sel | |
| IT_SEL_TABS | = lv_it_sel_tabs | |
| IT_PERSEL | = lv_it_persel | |
| IT_CHARSEL | = lv_it_charsel | |
| ID_NUMBER_OBJ_PER_PACKET | = lv_id_number_obj_per_packet | |
| ID_APPL_CLOSING | = lv_id_appl_closing | |
| IT_ID | = lv_it_id | |
| IT_TYPENAME | = lv_it_typename | |
| ID_SCHEDMAN_KEY | = lv_id_schedman_key | |
| I_ABGRIR | = lv_i_abgrir | |
| IT_ACC_SYSTEM | = lv_it_acc_system | |
| ID_TESTRUN | = lv_id_testrun | |
| ID_DIALOG | = lv_id_dialog | |
| IS_HELP_FLAGS | = lv_is_help_flags | |
| ID_DETAILED_LIST | = lv_id_detailed_list | |
| ID_BASIC_LIST | = lv_id_basic_list | |
| ID_SAVE_LIST | = lv_id_save_list | |
| IMPORTING | ||
| ED_SCHEDMAN_EXT_BL | = lv_ed_schedman_ext_bl | |
| ED_SCHEDMAN_EXT_DL | = lv_ed_schedman_ext_dl | |
| ET_SCHEDMAN_SPOOL | = lv_et_schedman_spool | |
| ED_LOG_HANDLE | = lv_ed_log_handle | |
| . " UA_INV_PROCESS_ONLINE | ||
ABAP code using 7.40 inline data declarations to call FM UA_INV_PROCESS_ONLINE
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_id_no_packaging) | = ' '. | |||
| DATA(ld_id_parallel) | = ' '. | |||
| DATA(ld_id_servergroup) | = ' '. | |||
| DATA(ld_id_number_obj_per_packet) | = 100. | |||
| DATA(ld_i_abgrir) | = ' '. | |||
| DATA(ld_id_testrun) | = 'X'. | |||
| DATA(ld_id_dialog) | = ' '. | |||
| DATA(ld_is_help_flags) | = ' '. | |||
| DATA(ld_id_detailed_list) | = ' '. | |||
| DATA(ld_id_basic_list) | = 'X'. | |||
| DATA(ld_id_save_list) | = ' '. | |||
Search for further information about these or an SAP related objects