SAP OIUH_AFRVTSEVBYQBE Function Module for Function AFRVTSEVBYQBE









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

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



Function OIUH_AFRVTSEVBYQBE 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 'OIUH_AFRVTSEVBYQBE'"Function AFRVTSEVBYQBE
CHANGING
FN_TYPE_CD = "
W_SEV_ST_CD = "
W_SEV_CT_NO = "
W_SEV_PU_NO = "
W_SEV_PU_SEQ_NO = "
W_SEV_PD_CD = "
W_SEV_VL_TYPE_CD = "
W_SEV_SA_DT = "
W_SEV_NWK_NO = "
W_SEV_SUBNWK_NO = "
ROWS_RETURNED = "
W_SEV_PR_NO = "
PMESSAGE = "
W_SEV_DOI_NO = "
W_DI_DI_NM = "
W_SEV_MP_NO = "
W_MP_MP_DE = "
W_SEV_WL_NO = "
W_SEV_WC_NO = "
W_WC_WC_NM = "

TABLES
RESULT_TABLE = "
.



CHANGING Parameters details for OIUH_AFRVTSEVBYQBE

FN_TYPE_CD -

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

W_SEV_ST_CD -

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

W_SEV_CT_NO -

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

W_SEV_PU_NO -

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

W_SEV_PU_SEQ_NO -

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

W_SEV_PD_CD -

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

W_SEV_VL_TYPE_CD -

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

W_SEV_SA_DT -

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

W_SEV_NWK_NO -

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

W_SEV_SUBNWK_NO -

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

ROWS_RETURNED -

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

W_SEV_PR_NO -

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

PMESSAGE -

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

W_SEV_DOI_NO -

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

W_DI_DI_NM -

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

W_SEV_MP_NO -

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

W_MP_MP_DE -

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

W_SEV_WL_NO -

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

W_SEV_WC_NO -

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

W_WC_WC_NM -

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

TABLES Parameters details for OIUH_AFRVTSEVBYQBE

RESULT_TABLE -

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

Copy and paste ABAP code example for OIUH_AFRVTSEVBYQBE 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_fn_type_cd  TYPE C, "   
lt_result_table  TYPE STANDARD TABLE OF OIUH_AFRVTSEVBYQBE, "   
lv_w_sev_st_cd  TYPE C, "   
lv_w_sev_ct_no  TYPE C, "   
lv_w_sev_pu_no  TYPE C, "   
lv_w_sev_pu_seq_no  TYPE C, "   
lv_w_sev_pd_cd  TYPE C, "   
lv_w_sev_vl_type_cd  TYPE C, "   
lv_w_sev_sa_dt  TYPE C, "   
lv_w_sev_nwk_no  TYPE C, "   
lv_w_sev_subnwk_no  TYPE C, "   
lv_rows_returned  TYPE I, "   
lv_w_sev_pr_no  TYPE C, "   
lv_pmessage  TYPE OIUH_PMESSAGE_STR, "   
lv_w_sev_doi_no  TYPE C, "   
lv_w_di_di_nm  TYPE C, "   
lv_w_sev_mp_no  TYPE C, "   
lv_w_mp_mp_de  TYPE C, "   
lv_w_sev_wl_no  TYPE C, "   
lv_w_sev_wc_no  TYPE C, "   
lv_w_wc_wc_nm  TYPE C. "   

  CALL FUNCTION 'OIUH_AFRVTSEVBYQBE'  "Function AFRVTSEVBYQBE
    CHANGING
         FN_TYPE_CD = lv_fn_type_cd
         W_SEV_ST_CD = lv_w_sev_st_cd
         W_SEV_CT_NO = lv_w_sev_ct_no
         W_SEV_PU_NO = lv_w_sev_pu_no
         W_SEV_PU_SEQ_NO = lv_w_sev_pu_seq_no
         W_SEV_PD_CD = lv_w_sev_pd_cd
         W_SEV_VL_TYPE_CD = lv_w_sev_vl_type_cd
         W_SEV_SA_DT = lv_w_sev_sa_dt
         W_SEV_NWK_NO = lv_w_sev_nwk_no
         W_SEV_SUBNWK_NO = lv_w_sev_subnwk_no
         ROWS_RETURNED = lv_rows_returned
         W_SEV_PR_NO = lv_w_sev_pr_no
         PMESSAGE = lv_pmessage
         W_SEV_DOI_NO = lv_w_sev_doi_no
         W_DI_DI_NM = lv_w_di_di_nm
         W_SEV_MP_NO = lv_w_sev_mp_no
         W_MP_MP_DE = lv_w_mp_mp_de
         W_SEV_WL_NO = lv_w_sev_wl_no
         W_SEV_WC_NO = lv_w_sev_wc_no
         W_WC_WC_NM = lv_w_wc_wc_nm
    TABLES
         RESULT_TABLE = lt_result_table
. " OIUH_AFRVTSEVBYQBE




ABAP code using 7.40 inline data declarations to call FM OIUH_AFRVTSEVBYQBE

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!