SAP RH_VV_DOCUMENT_CONFIRM Function Module for









RH_VV_DOCUMENT_CONFIRM is a standard rh vv document confirm 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 rh vv document confirm FM, simply by entering the name RH_VV_DOCUMENT_CONFIRM into the relevant SAP transaction such as SE37 or SE38.

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



Function RH_VV_DOCUMENT_CONFIRM 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 'RH_VV_DOCUMENT_CONFIRM'"
EXPORTING
IN_PLVAR = "
IN_EOTYP = "
IN_EVEID = "
IN_EVENT = "Operation
* IN_REFDOCNO = "Reference document
* IN_DOCUMENT = "Original document
* IN_CONTROLLINGAREA = "Controlling area
* IN_CONFIRM_POPUP = 'X' "Confirmation dialog box
* IN_DOCUMENT_RESET = ' ' "Use only with update termination!!

IMPORTING
OUT_MESSAGELEVEL = "Error type with highest occurrence
OUT_STATUS = "
OUT_ORIGINALDOCUMENT = "

TABLES
* OUT_MESSAGES = "Notifications
* OUT_P1001 = "

EXCEPTIONS
DOCUMENT_CHECK_FAILURE = 1 DOCUMENT_NOT_FOUND = 2 ENQUEUE_FAILURE = 3 UPDATE_ERROR = 4 UNEXPECTED_ERROR = 5
.



IMPORTING Parameters details for RH_VV_DOCUMENT_CONFIRM

IN_PLVAR -

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

IN_EOTYP -

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

IN_EVEID -

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

IN_EVENT - Operation

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

IN_REFDOCNO - Reference document

Data type: T77REFDOC-REFDOCNO
Optional: Yes
Call by Reference: No ( called with pass by value option)

IN_DOCUMENT - Original document

Data type: T77REFDOC-DOCUMENT
Optional: Yes
Call by Reference: No ( called with pass by value option)

IN_CONTROLLINGAREA - Controlling area

Data type: T77REFDOC-CONTROLLINGAREA
Optional: Yes
Call by Reference: No ( called with pass by value option)

IN_CONFIRM_POPUP - Confirmation dialog box

Data type: HRVCOST-FLAG_X
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

IN_DOCUMENT_RESET - Use only with update termination!!

Data type: HRVCOST-FLAG_X
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for RH_VV_DOCUMENT_CONFIRM

OUT_MESSAGELEVEL - Error type with highest occurrence

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

OUT_STATUS -

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

OUT_ORIGINALDOCUMENT -

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

TABLES Parameters details for RH_VV_DOCUMENT_CONFIRM

OUT_MESSAGES - Notifications

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

OUT_P1001 -

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

EXCEPTIONS details

DOCUMENT_CHECK_FAILURE - Error during document check

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

DOCUMENT_NOT_FOUND - Document missing

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

ENQUEUE_FAILURE - Locking error

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

UPDATE_ERROR - Error during update

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

UNEXPECTED_ERROR -

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

Copy and paste ABAP code example for RH_VV_DOCUMENT_CONFIRM 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_in_plvar  TYPE T77REFDOC-PLVAR, "   
lt_out_messages  TYPE STANDARD TABLE OF MESG, "   
lv_out_messagelevel  TYPE SY-MSGTY, "   
lv_document_check_failure  TYPE SY, "   
lv_in_eotyp  TYPE T77REFDOC-EOTYP, "   
lt_out_p1001  TYPE STANDARD TABLE OF P1001, "   
lv_out_status  TYPE T77REFDOC-STATUS, "   
lv_document_not_found  TYPE T77REFDOC, "   
lv_in_eveid  TYPE T77REFDOC-EVEID, "   
lv_enqueue_failure  TYPE T77REFDOC, "   
lv_out_originaldocument  TYPE T77REFDOC-DOCUMENT, "   
lv_in_event  TYPE T77REFDOC-EVENT, "   
lv_update_error  TYPE T77REFDOC, "   
lv_in_refdocno  TYPE T77REFDOC-REFDOCNO, "   
lv_unexpected_error  TYPE T77REFDOC, "   
lv_in_document  TYPE T77REFDOC-DOCUMENT, "   
lv_in_controllingarea  TYPE T77REFDOC-CONTROLLINGAREA, "   
lv_in_confirm_popup  TYPE HRVCOST-FLAG_X, "   'X'
lv_in_document_reset  TYPE HRVCOST-FLAG_X. "   SPACE

  CALL FUNCTION 'RH_VV_DOCUMENT_CONFIRM'  "
    EXPORTING
         IN_PLVAR = lv_in_plvar
         IN_EOTYP = lv_in_eotyp
         IN_EVEID = lv_in_eveid
         IN_EVENT = lv_in_event
         IN_REFDOCNO = lv_in_refdocno
         IN_DOCUMENT = lv_in_document
         IN_CONTROLLINGAREA = lv_in_controllingarea
         IN_CONFIRM_POPUP = lv_in_confirm_popup
         IN_DOCUMENT_RESET = lv_in_document_reset
    IMPORTING
         OUT_MESSAGELEVEL = lv_out_messagelevel
         OUT_STATUS = lv_out_status
         OUT_ORIGINALDOCUMENT = lv_out_originaldocument
    TABLES
         OUT_MESSAGES = lt_out_messages
         OUT_P1001 = lt_out_p1001
    EXCEPTIONS
        DOCUMENT_CHECK_FAILURE = 1
        DOCUMENT_NOT_FOUND = 2
        ENQUEUE_FAILURE = 3
        UPDATE_ERROR = 4
        UNEXPECTED_ERROR = 5
. " RH_VV_DOCUMENT_CONFIRM




ABAP code using 7.40 inline data declarations to call FM RH_VV_DOCUMENT_CONFIRM

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.

"SELECT single PLVAR FROM T77REFDOC INTO @DATA(ld_in_plvar).
 
 
"SELECT single MSGTY FROM SY INTO @DATA(ld_out_messagelevel).
 
 
"SELECT single EOTYP FROM T77REFDOC INTO @DATA(ld_in_eotyp).
 
 
"SELECT single STATUS FROM T77REFDOC INTO @DATA(ld_out_status).
 
 
"SELECT single EVEID FROM T77REFDOC INTO @DATA(ld_in_eveid).
 
 
"SELECT single DOCUMENT FROM T77REFDOC INTO @DATA(ld_out_originaldocument).
 
"SELECT single EVENT FROM T77REFDOC INTO @DATA(ld_in_event).
 
 
"SELECT single REFDOCNO FROM T77REFDOC INTO @DATA(ld_in_refdocno).
 
 
"SELECT single DOCUMENT FROM T77REFDOC INTO @DATA(ld_in_document).
 
"SELECT single CONTROLLINGAREA FROM T77REFDOC INTO @DATA(ld_in_controllingarea).
 
"SELECT single FLAG_X FROM HRVCOST INTO @DATA(ld_in_confirm_popup).
DATA(ld_in_confirm_popup) = 'X'.
 
"SELECT single FLAG_X FROM HRVCOST INTO @DATA(ld_in_document_reset).
DATA(ld_in_document_reset) = ' '.
 


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!