SAP CV210_CONV2KPRO_DATA_GET Function Module for NOTRANSL: Daten für Migration nach KPRO lesen









CV210_CONV2KPRO_DATA_GET is a standard cv210 conv2kpro data get 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: Daten für Migration nach KPRO lesen 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 cv210 conv2kpro data get FM, simply by entering the name CV210_CONV2KPRO_DATA_GET into the relevant SAP transaction such as SE37 or SE38.

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



Function CV210_CONV2KPRO_DATA_GET 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 'CV210_CONV2KPRO_DATA_GET'"NOTRANSL: Daten für Migration nach KPRO lesen
EXPORTING
PS_DRAW = "Document Info Record
* PF_CONV_AUDITS = 'X' "Generic Type

TABLES
PTX_FILE = "Originals in DMS
PTX_DOC2LOIO = "DVS: Link table DVS Key <-> LOIO-ID
.



IMPORTING Parameters details for CV210_CONV2KPRO_DATA_GET

PS_DRAW - Document Info Record

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

PF_CONV_AUDITS - Generic Type

Data type: C
Default: 'X'
Optional: No
Call by Reference: Yes

TABLES Parameters details for CV210_CONV2KPRO_DATA_GET

PTX_FILE - Originals in DMS

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

PTX_DOC2LOIO - DVS: Link table DVS Key <-> LOIO-ID

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

Copy and paste ABAP code example for CV210_CONV2KPRO_DATA_GET 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_ps_draw  TYPE DRAW, "   
lt_ptx_file  TYPE STANDARD TABLE OF DMS_TBL_FILE, "   
lt_ptx_doc2loio  TYPE STANDARD TABLE OF DMS_DOC2LOIO, "   
lv_pf_conv_audits  TYPE C. "   'X'

  CALL FUNCTION 'CV210_CONV2KPRO_DATA_GET'  "NOTRANSL: Daten für Migration nach KPRO lesen
    EXPORTING
         PS_DRAW = lv_ps_draw
         PF_CONV_AUDITS = lv_pf_conv_audits
    TABLES
         PTX_FILE = lt_ptx_file
         PTX_DOC2LOIO = lt_ptx_doc2loio
. " CV210_CONV2KPRO_DATA_GET




ABAP code using 7.40 inline data declarations to call FM CV210_CONV2KPRO_DATA_GET

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.

 
 
 
DATA(ld_pf_conv_audits) = 'X'.
 


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!