SAP LSO_VV_DOCUMENT_CHECK Function Module for
LSO_VV_DOCUMENT_CHECK is a standard lso vv document check 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 lso vv document check FM, simply by entering the name LSO_VV_DOCUMENT_CHECK into the relevant SAP transaction such as SE37 or SE38.
Function Group: LSO_RHVV
Program Name: SAPLLSO_RHVV
Main Program: SAPLLSO_RHVV
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function LSO_VV_DOCUMENT_CHECK 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 'LSO_VV_DOCUMENT_CHECK'".
EXPORTING
IN_PLVAR = "
IN_EOTYP = "
IN_EVEID = "
IN_EVENT = "
* IN_REFDOCNO = "
* IN_DOCUMENT = "
* IN_CONTROLLINGAREA = "
IMPORTING
OUT_ORIGINALDOCUMENT = "
OUT_DOCUMENT_CANCELLED = "
EXCEPTIONS
DOCUMENT_NOT_FOUND = 1 UNEXPECTED_ERROR = 2
IMPORTING Parameters details for LSO_VV_DOCUMENT_CHECK
IN_PLVAR -
Data type: T77REFDOC-PLVAROptional: No
Call by Reference: No ( called with pass by value option)
IN_EOTYP -
Data type: T77REFDOC-EOTYPOptional: No
Call by Reference: No ( called with pass by value option)
IN_EVEID -
Data type: T77REFDOC-EVEIDOptional: No
Call by Reference: No ( called with pass by value option)
IN_EVENT -
Data type: T77REFDOC-EVENTOptional: No
Call by Reference: No ( called with pass by value option)
IN_REFDOCNO -
Data type: T77REFDOC-REFDOCNOOptional: Yes
Call by Reference: No ( called with pass by value option)
IN_DOCUMENT -
Data type: T77REFDOC-DOCUMENTOptional: Yes
Call by Reference: No ( called with pass by value option)
IN_CONTROLLINGAREA -
Data type: T77REFDOC-CONTROLLINGAREAOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for LSO_VV_DOCUMENT_CHECK
OUT_ORIGINALDOCUMENT -
Data type: T77REFDOC-DOCUMENTOptional: No
Call by Reference: No ( called with pass by value option)
OUT_DOCUMENT_CANCELLED -
Data type: HRVCOST-FLAG_XOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
DOCUMENT_NOT_FOUND -
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 LSO_VV_DOCUMENT_CHECK 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, " | |||
| lv_document_not_found | TYPE T77REFDOC, " | |||
| lv_out_originaldocument | TYPE T77REFDOC-DOCUMENT, " | |||
| lv_in_eotyp | TYPE T77REFDOC-EOTYP, " | |||
| lv_unexpected_error | TYPE T77REFDOC, " | |||
| lv_out_document_cancelled | TYPE HRVCOST-FLAG_X, " | |||
| lv_in_eveid | TYPE T77REFDOC-EVEID, " | |||
| lv_in_event | TYPE T77REFDOC-EVENT, " | |||
| lv_in_refdocno | TYPE T77REFDOC-REFDOCNO, " | |||
| lv_in_document | TYPE T77REFDOC-DOCUMENT, " | |||
| lv_in_controllingarea | TYPE T77REFDOC-CONTROLLINGAREA. " |
|   CALL FUNCTION 'LSO_VV_DOCUMENT_CHECK' " |
| 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 | |
| IMPORTING | ||
| OUT_ORIGINALDOCUMENT | = lv_out_originaldocument | |
| OUT_DOCUMENT_CANCELLED | = lv_out_document_cancelled | |
| EXCEPTIONS | ||
| DOCUMENT_NOT_FOUND = 1 | ||
| UNEXPECTED_ERROR = 2 | ||
| . " LSO_VV_DOCUMENT_CHECK | ||
ABAP code using 7.40 inline data declarations to call FM LSO_VV_DOCUMENT_CHECK
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 DOCUMENT FROM T77REFDOC INTO @DATA(ld_out_originaldocument). | ||||
| "SELECT single EOTYP FROM T77REFDOC INTO @DATA(ld_in_eotyp). | ||||
| "SELECT single FLAG_X FROM HRVCOST INTO @DATA(ld_out_document_cancelled). | ||||
| "SELECT single EVEID FROM T77REFDOC INTO @DATA(ld_in_eveid). | ||||
| "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). | ||||
Search for further information about these or an SAP related objects