SAP OIUOW_ORF_PROCESS_FUNDS_DIALOG Function Module for OIUOW_ORF Process RH all









OIUOW_ORF_PROCESS_FUNDS_DIALOG is a standard oiuow orf process funds dialog SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for OIUOW_ORF Process RH all 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 oiuow orf process funds dialog FM, simply by entering the name OIUOW_ORF_PROCESS_FUNDS_DIALOG into the relevant SAP transaction such as SE37 or SE38.

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



Function OIUOW_ORF_PROCESS_FUNDS_DIALOG 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 'OIUOW_ORF_PROCESS_FUNDS_DIALOG'"OIUOW_ORF Process RH all
EXPORTING
* P_WITH_DOI = C_TRUE "Single-character flag
P_OW_TABLES_EMPTY_AT_CALL = "Single-character flag
* FU_PRO = 'X' "Single-character flag
* P_JEP = ' ' "JE Purge (X=Inline purge)
* P_JE_POST = ' ' "JE Post to FI (X = yes, ' ' = no)

TABLES
PT_RH = "Funds
PT_RD = "ROIUT2_LOAD_RTD_TAB
* PT_RETURN = "Return parameter
* PT_CONTROL = "JE Purge candidates

EXCEPTIONS
ERROR_IN_FUNDS_PROCESSING = 1
.



IMPORTING Parameters details for OIUOW_ORF_PROCESS_FUNDS_DIALOG

P_WITH_DOI - Single-character flag

Data type: CHAR1
Default: C_TRUE
Optional: Yes
Call by Reference: Yes

P_OW_TABLES_EMPTY_AT_CALL - Single-character flag

Data type: CHAR1
Optional: No
Call by Reference: Yes

FU_PRO - Single-character flag

Data type: CHAR1
Default: 'X'
Optional: Yes
Call by Reference: Yes

P_JEP - JE Purge (X=Inline purge)

Data type: CHAR1
Default: ' '
Optional: Yes
Call by Reference: Yes

P_JE_POST - JE Post to FI (X = yes, ' ' = no)

Data type: CHAR1
Default: ' '
Optional: Yes
Call by Reference: Yes

TABLES Parameters details for OIUOW_ORF_PROCESS_FUNDS_DIALOG

PT_RH - Funds

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

PT_RD - ROIUT2_LOAD_RTD_TAB

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

PT_RETURN - Return parameter

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

PT_CONTROL - JE Purge candidates

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

EXCEPTIONS details

ERROR_IN_FUNDS_PROCESSING - error_in_funds_processing

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

Copy and paste ABAP code example for OIUOW_ORF_PROCESS_FUNDS_DIALOG 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:
lt_pt_rh  TYPE STANDARD TABLE OF OIUOW_RTCH, "   
lv_p_with_doi  TYPE CHAR1, "   C_TRUE
lv_error_in_funds_processing  TYPE CHAR1, "   
lt_pt_rd  TYPE STANDARD TABLE OF OIUOW_RTD, "   
lv_p_ow_tables_empty_at_call  TYPE CHAR1, "   
lv_fu_pro  TYPE CHAR1, "   'X'
lt_pt_return  TYPE STANDARD TABLE OF BAPIRET2, "   
lv_p_jep  TYPE CHAR1, "   ' '
lt_pt_control  TYPE STANDARD TABLE OF OIUT2_INT_FDN, "   
lv_p_je_post  TYPE CHAR1. "   ' '

  CALL FUNCTION 'OIUOW_ORF_PROCESS_FUNDS_DIALOG'  "OIUOW_ORF Process RH all
    EXPORTING
         P_WITH_DOI = lv_p_with_doi
         P_OW_TABLES_EMPTY_AT_CALL = lv_p_ow_tables_empty_at_call
         FU_PRO = lv_fu_pro
         P_JEP = lv_p_jep
         P_JE_POST = lv_p_je_post
    TABLES
         PT_RH = lt_pt_rh
         PT_RD = lt_pt_rd
         PT_RETURN = lt_pt_return
         PT_CONTROL = lt_pt_control
    EXCEPTIONS
        ERROR_IN_FUNDS_PROCESSING = 1
. " OIUOW_ORF_PROCESS_FUNDS_DIALOG




ABAP code using 7.40 inline data declarations to call FM OIUOW_ORF_PROCESS_FUNDS_DIALOG

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_p_with_doi) = C_TRUE.
 
 
 
 
DATA(ld_fu_pro) = 'X'.
 
 
DATA(ld_p_jep) = ' '.
 
 
DATA(ld_p_je_post) = ' '.
 


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!