SAP OIURV_REJECT_SELECTION Function Module for Rejection Selection Process









OIURV_REJECT_SELECTION is a standard oiurv reject selection SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Rejection Selection Process 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 oiurv reject selection FM, simply by entering the name OIURV_REJECT_SELECTION into the relevant SAP transaction such as SE37 or SE38.

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



Function OIURV_REJECT_SELECTION 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 'OIURV_REJECT_SELECTION'"Rejection Selection Process
TABLES
P_REJECT_TB = "Rejected Valuation Transactions
P_VLTXNS_TB = "Valuation Transactions Level 1 - Vltxns
P_PROC_REJECT_TB = "Rejected Valuation Transactions
P_OIU_RV_VLXAS_TB = "Valuation Cross Reference Association
P_OIU_RV_VCRWI_TB = "Valuation Cross Reference Working Interest
P_FRML_TB = "Valuation Formula Id
P_VLRVS_TB = "Valuation Reversal Notificaton

EXCEPTIONS
IO_ERROR = 1
.



TABLES Parameters details for OIURV_REJECT_SELECTION

P_REJECT_TB - Rejected Valuation Transactions

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

P_VLTXNS_TB - Valuation Transactions Level 1 - Vltxns

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

P_PROC_REJECT_TB - Rejected Valuation Transactions

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

P_OIU_RV_VLXAS_TB - Valuation Cross Reference Association

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

P_OIU_RV_VCRWI_TB - Valuation Cross Reference Working Interest

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

P_FRML_TB - Valuation Formula Id

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

P_VLRVS_TB - Valuation Reversal Notificaton

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

EXCEPTIONS details

IO_ERROR - Fatal Error

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

Copy and paste ABAP code example for OIURV_REJECT_SELECTION 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_io_error  TYPE STRING, "   
lt_p_reject_tb  TYPE STANDARD TABLE OF OIU_RV_RVT, "   
lt_p_vltxns_tb  TYPE STANDARD TABLE OF OIURV_DOC_DTL_BK, "   
lt_p_proc_reject_tb  TYPE STANDARD TABLE OF OIU_RV_RVT, "   
lt_p_oiu_rv_vlxas_tb  TYPE STANDARD TABLE OF OIU_RV_VLXAS, "   
lt_p_oiu_rv_vcrwi_tb  TYPE STANDARD TABLE OF OIU_RV_VCRWI, "   
lt_p_frml_tb  TYPE STANDARD TABLE OF OIU_RV_FRML, "   
lt_p_vlrvs_tb  TYPE STANDARD TABLE OF OIURV_DOC_DTL_RV. "   

  CALL FUNCTION 'OIURV_REJECT_SELECTION'  "Rejection Selection Process
    TABLES
         P_REJECT_TB = lt_p_reject_tb
         P_VLTXNS_TB = lt_p_vltxns_tb
         P_PROC_REJECT_TB = lt_p_proc_reject_tb
         P_OIU_RV_VLXAS_TB = lt_p_oiu_rv_vlxas_tb
         P_OIU_RV_VCRWI_TB = lt_p_oiu_rv_vcrwi_tb
         P_FRML_TB = lt_p_frml_tb
         P_VLRVS_TB = lt_p_vlrvs_tb
    EXCEPTIONS
        IO_ERROR = 1
. " OIURV_REJECT_SELECTION




ABAP code using 7.40 inline data declarations to call FM OIURV_REJECT_SELECTION

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.

 
 
 
 
 
 
 
 


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!