SAP CNVA_00555_CREATE Function Module for Create Runtime Estimation ID in the Remote System









CNVA_00555_CREATE is a standard cnva 00555 create SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Create Runtime Estimation ID in the Remote System 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 cnva 00555 create FM, simply by entering the name CNVA_00555_CREATE into the relevant SAP transaction such as SE37 or SE38.

Function Group: CNVA_00555
Program Name: SAPLCNVA_00555
Main Program: SAPLCNVA_00555
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function CNVA_00555_CREATE 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 'CNVA_00555_CREATE'"Create Runtime Estimation ID in the Remote System
EXPORTING
LV_ANA_DESCR = "Estimation ID Description
MAX_EST_ID = "Estimation ID
IV_PCLPACKID = "Package Number to Specify CMIS and TDMS Packages
* IV_PACKAGE_ID = "Package ID of converion/deletion package for Runtime Analysis
* IV_PACKAGE_DESCR = "Description of Package ID
IT_PACKAGES = "Table Type for Packid

IMPORTING
ESTIMATION_ID = "Estimation ID
SYSTEM_ID = "R/3 System, name of R/3 System
ERR = "Single-character flag
CLIENT = "Client
RFCUSER = "User name

EXCEPTIONS
NO_DIALOG_AUTH = 1 EXCEED_ID = 2 NO_AUTHORIZATION = 3 ESTID_ACT_INIT_RUNNING = 4 ESTID_ACT_SIM_RUNNING = 5 USER_CANCELLED_ESTID_CREATION = 6
.



IMPORTING Parameters details for CNVA_00555_CREATE

LV_ANA_DESCR - Estimation ID Description

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

MAX_EST_ID - Estimation ID

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

IV_PCLPACKID - Package Number to Specify CMIS and TDMS Packages

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

IV_PACKAGE_ID - Package ID of converion/deletion package for Runtime Analysis

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

IV_PACKAGE_DESCR - Description of Package ID

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

IT_PACKAGES - Table Type for Packid

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

EXPORTING Parameters details for CNVA_00555_CREATE

ESTIMATION_ID - Estimation ID

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

SYSTEM_ID - R/3 System, name of R/3 System

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

ERR - Single-character flag

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

CLIENT - Client

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

RFCUSER - User name

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

EXCEPTIONS details

NO_DIALOG_AUTH - User not authorized to run dialog programs

Data type:
Optional: No
Call by Reference: Yes

EXCEED_ID - Estimation ID exceed the maximum Limit

Data type:
Optional: No
Call by Reference: Yes

NO_AUTHORIZATION - No Authorization

Data type:
Optional: No
Call by Reference: Yes

ESTID_ACT_INIT_RUNNING - INITIALIZE is running with an active Estimation ID

Data type:
Optional: No
Call by Reference: Yes

ESTID_ACT_SIM_RUNNING - SIMULATE is running with an active Estimation ID

Data type:
Optional: No
Call by Reference: Yes

USER_CANCELLED_ESTID_CREATION - User cancelled the creation of new Analysis ID

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for CNVA_00555_CREATE 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_lv_ana_descr  TYPE CNVA_00555_DESCR, "   
lv_estimation_id  TYPE CNVA_00555_ID, "   
lv_no_dialog_auth  TYPE CNVA_00555_ID, "   
lv_exceed_id  TYPE CNVA_00555_ID, "   
lv_system_id  TYPE SYSYSID, "   
lv_max_est_id  TYPE CNVA_00555_ID, "   
lv_err  TYPE CHAR1, "   
lv_iv_pclpackid  TYPE CNV_MBT_PACKID, "   
lv_no_authorization  TYPE CNV_MBT_PACKID, "   
lv_client  TYPE MANDT, "   
lv_iv_package_id  TYPE CNVA_00555_DEF_ID, "   
lv_estid_act_init_running  TYPE CNVA_00555_DEF_ID, "   
lv_rfcuser  TYPE UNAME, "   
lv_iv_package_descr  TYPE CNVA_00555_DEF_ID_TXT, "   
lv_estid_act_sim_running  TYPE CNVA_00555_DEF_ID_TXT, "   
lv_it_packages  TYPE CNVA_00555_T_PACK, "   
lv_user_cancelled_estid_creation  TYPE CNVA_00555_T_PACK. "   

  CALL FUNCTION 'CNVA_00555_CREATE'  "Create Runtime Estimation ID in the Remote System
    EXPORTING
         LV_ANA_DESCR = lv_lv_ana_descr
         MAX_EST_ID = lv_max_est_id
         IV_PCLPACKID = lv_iv_pclpackid
         IV_PACKAGE_ID = lv_iv_package_id
         IV_PACKAGE_DESCR = lv_iv_package_descr
         IT_PACKAGES = lv_it_packages
    IMPORTING
         ESTIMATION_ID = lv_estimation_id
         SYSTEM_ID = lv_system_id
         ERR = lv_err
         CLIENT = lv_client
         RFCUSER = lv_rfcuser
    EXCEPTIONS
        NO_DIALOG_AUTH = 1
        EXCEED_ID = 2
        NO_AUTHORIZATION = 3
        ESTID_ACT_INIT_RUNNING = 4
        ESTID_ACT_SIM_RUNNING = 5
        USER_CANCELLED_ESTID_CREATION = 6
. " CNVA_00555_CREATE




ABAP code using 7.40 inline data declarations to call FM CNVA_00555_CREATE

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!