SAP CONV_RFC_DOC_CHECKOUTVIEW Function Module for NOTRANSL: Wrapper for CONV_DOC_CHECKOUTVIEW
CONV_RFC_DOC_CHECKOUTVIEW is a standard conv rfc doc checkoutview SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Wrapper for CONV_DOC_CHECKOUTVIEW 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 conv rfc doc checkoutview FM, simply by entering the name CONV_RFC_DOC_CHECKOUTVIEW into the relevant SAP transaction such as SE37 or SE38.
Function Group: CONV_RFC
Program Name: SAPLCONV_RFC
Main Program: SAPLCONV_RFC
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CONV_RFC_DOC_CHECKOUTVIEW 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 'CONV_RFC_DOC_CHECKOUTVIEW'"NOTRANSL: Wrapper for CONV_DOC_CHECKOUTVIEW.
EXPORTING
I_DOKAR = "Document Type
I_DOKNR = "Document Number
I_DOKVR = "Document Version
I_DOKTL = "Document Part
I_KPRO_USE = "Document Storage via Knowledge Provider
I_DCTYPE = "Name of Data Carrier
IS_API_CONTROL = "DMS: Control for APIS
I_CONVERTER = "Information About Access to Installed Converter
CHANGING
C_DONE = "Checkbox
CS_MESSAGE = "Log Interface Messages
CT_FILES = "DMS - Originals
EXCEPTIONS
ERROR = 1
IMPORTING Parameters details for CONV_RFC_DOC_CHECKOUTVIEW
I_DOKAR - Document Type
Data type: DOKAROptional: No
Call by Reference: Yes
I_DOKNR - Document Number
Data type: DOKNROptional: No
Call by Reference: Yes
I_DOKVR - Document Version
Data type: DOKVROptional: No
Call by Reference: Yes
I_DOKTL - Document Part
Data type: DOKTL_DOptional: No
Call by Reference: Yes
I_KPRO_USE - Document Storage via Knowledge Provider
Data type: TDWA-KPRO_USEOptional: No
Call by Reference: Yes
I_DCTYPE - Name of Data Carrier
Data type: DRAW-DTTRGOptional: No
Call by Reference: Yes
IS_API_CONTROL - DMS: Control for APIS
Data type: CVAPI_API_CONTROLOptional: No
Call by Reference: Yes
I_CONVERTER - Information About Access to Installed Converter
Data type: CONVERTEROptional: No
Call by Reference: Yes
CHANGING Parameters details for CONV_RFC_DOC_CHECKOUTVIEW
C_DONE - Checkbox
Data type: XFELDOptional: No
Call by Reference: Yes
CS_MESSAGE - Log Interface Messages
Data type: MESSAGESOptional: No
Call by Reference: Yes
CT_FILES - DMS - Originals
Data type: CVAPI_TBL_DOC_FILESOptional: No
Call by Reference: Yes
EXCEPTIONS details
ERROR - Error occurred
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for CONV_RFC_DOC_CHECKOUTVIEW 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_error | TYPE STRING, " | |||
| lv_c_done | TYPE XFELD, " | |||
| lv_i_dokar | TYPE DOKAR, " | |||
| lv_i_doknr | TYPE DOKNR, " | |||
| lv_cs_message | TYPE MESSAGES, " | |||
| lv_i_dokvr | TYPE DOKVR, " | |||
| lv_ct_files | TYPE CVAPI_TBL_DOC_FILES, " | |||
| lv_i_doktl | TYPE DOKTL_D, " | |||
| lv_i_kpro_use | TYPE TDWA-KPRO_USE, " | |||
| lv_i_dctype | TYPE DRAW-DTTRG, " | |||
| lv_is_api_control | TYPE CVAPI_API_CONTROL, " | |||
| lv_i_converter | TYPE CONVERTER. " |
|   CALL FUNCTION 'CONV_RFC_DOC_CHECKOUTVIEW' "NOTRANSL: Wrapper for CONV_DOC_CHECKOUTVIEW |
| EXPORTING | ||
| I_DOKAR | = lv_i_dokar | |
| I_DOKNR | = lv_i_doknr | |
| I_DOKVR | = lv_i_dokvr | |
| I_DOKTL | = lv_i_doktl | |
| I_KPRO_USE | = lv_i_kpro_use | |
| I_DCTYPE | = lv_i_dctype | |
| IS_API_CONTROL | = lv_is_api_control | |
| I_CONVERTER | = lv_i_converter | |
| CHANGING | ||
| C_DONE | = lv_c_done | |
| CS_MESSAGE | = lv_cs_message | |
| CT_FILES | = lv_ct_files | |
| EXCEPTIONS | ||
| ERROR = 1 | ||
| . " CONV_RFC_DOC_CHECKOUTVIEW | ||
ABAP code using 7.40 inline data declarations to call FM CONV_RFC_DOC_CHECKOUTVIEW
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 KPRO_USE FROM TDWA INTO @DATA(ld_i_kpro_use). | ||||
| "SELECT single DTTRG FROM DRAW INTO @DATA(ld_i_dctype). | ||||
Search for further information about these or an SAP related objects