SAP CNV_10996_FIND_STEPFORM_TABLE Function Module for









CNV_10996_FIND_STEPFORM_TABLE is a standard cnv 10996 find stepform table 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 cnv 10996 find stepform table FM, simply by entering the name CNV_10996_FIND_STEPFORM_TABLE into the relevant SAP transaction such as SE37 or SE38.

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



Function CNV_10996_FIND_STEPFORM_TABLE 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 'CNV_10996_FIND_STEPFORM_TABLE'"
EXPORTING
* MANDT = SY-MANDT "
* PACKID = 00000 "
* TABNAME = "
* TIMESTEP = 'BC' "
* CONVTYPE = 'F' "
STEPNUM = "

IMPORTING
FORMROUT = "

TABLES
* I_CNVSTEPS = "
* I_CNVSTPARS = "
* I_DFIES = "
* O_FORMS = "
* O_PARAMS = "

EXCEPTIONS
NO_ROUTINE = 1 PARAM_V = 2
.



IMPORTING Parameters details for CNV_10996_FIND_STEPFORM_TABLE

MANDT -

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

PACKID -

Data type: CNVPACK-PACKID
Default: 00000
Optional: Yes
Call by Reference: No ( called with pass by value option)

TABNAME -

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

TIMESTEP -

Data type: CNVSTEPS-TIMESTEP
Default: 'BC'
Optional: Yes
Call by Reference: No ( called with pass by value option)

CONVTYPE -

Data type: CNVSTEPS-CONVTYPE
Default: 'F'
Optional: Yes
Call by Reference: No ( called with pass by value option)

STEPNUM -

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

EXPORTING Parameters details for CNV_10996_FIND_STEPFORM_TABLE

FORMROUT -

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

TABLES Parameters details for CNV_10996_FIND_STEPFORM_TABLE

I_CNVSTEPS -

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

I_CNVSTPARS -

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

I_DFIES -

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

O_FORMS -

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

O_PARAMS -

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

EXCEPTIONS details

NO_ROUTINE -

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

PARAM_V -

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

Copy and paste ABAP code example for CNV_10996_FIND_STEPFORM_TABLE 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_mandt  TYPE SY-MANDT, "   SY-MANDT
lv_formrout  TYPE CNVFIELDS-CONVFUNC, "   
lt_i_cnvsteps  TYPE STANDARD TABLE OF CNVSTEPS, "   
lv_no_routine  TYPE CNVSTEPS, "   
lv_packid  TYPE CNVPACK-PACKID, "   00000
lv_param_v  TYPE CNVPACK, "   
lt_i_cnvstpars  TYPE STANDARD TABLE OF CNVSTPARS, "   
lt_i_dfies  TYPE STANDARD TABLE OF DFIES, "   
lv_tabname  TYPE DD02L-TABNAME, "   
lt_o_forms  TYPE STANDARD TABLE OF CNVFORMS, "   
lv_timestep  TYPE CNVSTEPS-TIMESTEP, "   'BC'
lv_convtype  TYPE CNVSTEPS-CONVTYPE, "   'F'
lt_o_params  TYPE STANDARD TABLE OF CNVPARAMS, "   
lv_stepnum  TYPE CNVSTEPS-STEPNUM. "   

  CALL FUNCTION 'CNV_10996_FIND_STEPFORM_TABLE'  "
    EXPORTING
         MANDT = lv_mandt
         PACKID = lv_packid
         TABNAME = lv_tabname
         TIMESTEP = lv_timestep
         CONVTYPE = lv_convtype
         STEPNUM = lv_stepnum
    IMPORTING
         FORMROUT = lv_formrout
    TABLES
         I_CNVSTEPS = lt_i_cnvsteps
         I_CNVSTPARS = lt_i_cnvstpars
         I_DFIES = lt_i_dfies
         O_FORMS = lt_o_forms
         O_PARAMS = lt_o_params
    EXCEPTIONS
        NO_ROUTINE = 1
        PARAM_V = 2
. " CNV_10996_FIND_STEPFORM_TABLE




ABAP code using 7.40 inline data declarations to call FM CNV_10996_FIND_STEPFORM_TABLE

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 MANDT FROM SY INTO @DATA(ld_mandt).
DATA(ld_mandt) = SY-MANDT.
 
"SELECT single CONVFUNC FROM CNVFIELDS INTO @DATA(ld_formrout).
 
 
 
"SELECT single PACKID FROM CNVPACK INTO @DATA(ld_packid).
DATA(ld_packid) = 00000.
 
 
 
 
"SELECT single TABNAME FROM DD02L INTO @DATA(ld_tabname).
 
 
"SELECT single TIMESTEP FROM CNVSTEPS INTO @DATA(ld_timestep).
DATA(ld_timestep) = 'BC'.
 
"SELECT single CONVTYPE FROM CNVSTEPS INTO @DATA(ld_convtype).
DATA(ld_convtype) = 'F'.
 
 
"SELECT single STEPNUM FROM CNVSTEPS INTO @DATA(ld_stepnum).
 


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!