SAP CAT_SIMULATE_DYNPRO Function Module for









CAT_SIMULATE_DYNPRO is a standard cat simulate dynpro 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 cat simulate dynpro FM, simply by entering the name CAT_SIMULATE_DYNPRO into the relevant SAP transaction such as SE37 or SE38.

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



Function CAT_SIMULATE_DYNPRO 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 'CAT_SIMULATE_DYNPRO'"
EXPORTING
MPOOL = "
* FUNC_STATUS = '' "
* GENERATE_ONLY = ' ' "
* OWN_STATUS_TITLE = ' ' "
* GENERATE_AS_SUBSCREEN = ' ' "
* GENERATE_AND_HOLD = ' ' "
* MAINTAIN_MODE = ' ' "
DYNNR = "
* DYNPROINDEX = 0 "
* DYNPROSTOTAL = 0 "
* CATTTYP = 'C' "
* RFCDESTINATION = ' ' "
* DISPLAY_ONLY = ' ' "
* SUBSCRDEF = ' ' "
* PAR_FIELDS_ONLY = ' ' "

IMPORTING
OKCODE = "Selected Function
GEN_MPOOL = "
GEN_DYNNR = "

TABLES
FIELDDATA = "
PARAMLIST = "

EXCEPTIONS
NO_DYNPRO = 1 DYNPRO_NOT_FOUND = 2 GEN_ERROR = 3 ENQ_ERROR = 4 SUBSCR_ERROR = 5
.



IMPORTING Parameters details for CAT_SIMULATE_DYNPRO

MPOOL -

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

FUNC_STATUS -

Data type: RSCAT-SD_ABF
Default: ''
Optional: Yes
Call by Reference: No ( called with pass by value option)

GENERATE_ONLY -

Data type: CATF-INAKS
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

OWN_STATUS_TITLE -

Data type: CATF-INAKS
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

GENERATE_AS_SUBSCREEN -

Data type: CATF-INAKS
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

GENERATE_AND_HOLD -

Data type: CATF-INAKS
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

MAINTAIN_MODE -

Data type: CATF-INAKS
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

DYNNR -

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

DYNPROINDEX -

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

DYNPROSTOTAL -

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

CATTTYP -

Data type: CATA-ATYP
Default: 'C'
Optional: Yes
Call by Reference: No ( called with pass by value option)

RFCDESTINATION -

Data type: RSCAT-RFCDEST
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

DISPLAY_ONLY -

Data type: CATF-INAKS
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

SUBSCRDEF -

Data type: CATF-INAKS
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

PAR_FIELDS_ONLY -

Data type: CATF-INAKS
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for CAT_SIMULATE_DYNPRO

OKCODE - Selected Function

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

GEN_MPOOL -

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

GEN_DYNNR -

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

TABLES Parameters details for CAT_SIMULATE_DYNPRO

FIELDDATA -

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

PARAMLIST -

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

EXCEPTIONS details

NO_DYNPRO - No screen specified

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

DYNPRO_NOT_FOUND -

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

GEN_ERROR - Error During Generation

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

ENQ_ERROR -

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

SUBSCR_ERROR -

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

Copy and paste ABAP code example for CAT_SIMULATE_DYNPRO 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_mpool  TYPE CATF-MPOOL, "   
lv_okcode  TYPE SY-UCOMM, "   
lt_fielddata  TYPE STANDARD TABLE OF BDCDATA, "   
lv_no_dynpro  TYPE BDCDATA, "   
lv_func_status  TYPE RSCAT-SD_ABF, "   ''
lv_generate_only  TYPE CATF-INAKS, "   SPACE
lv_own_status_title  TYPE CATF-INAKS, "   SPACE
lv_generate_as_subscreen  TYPE CATF-INAKS, "   SPACE
lv_generate_and_hold  TYPE CATF-INAKS, "   SPACE
lv_maintain_mode  TYPE CATF-INAKS, "   SPACE
lv_dynnr  TYPE CATF-DYNNR, "   
lv_gen_mpool  TYPE CATF-MPOOL, "   
lt_paramlist  TYPE STANDARD TABLE OF CATP, "   
lv_dynpro_not_found  TYPE CATP, "   
lv_gen_dynnr  TYPE CATF-DYNNR, "   
lv_gen_error  TYPE CATF, "   
lv_dynproindex  TYPE CATF-LFDNR, "   0
lv_enq_error  TYPE CATF, "   
lv_dynprostotal  TYPE CATF-LFDNR, "   0
lv_catttyp  TYPE CATA-ATYP, "   'C'
lv_subscr_error  TYPE CATA, "   
lv_rfcdestination  TYPE RSCAT-RFCDEST, "   SPACE
lv_display_only  TYPE CATF-INAKS, "   SPACE
lv_subscrdef  TYPE CATF-INAKS, "   SPACE
lv_par_fields_only  TYPE CATF-INAKS. "   SPACE

  CALL FUNCTION 'CAT_SIMULATE_DYNPRO'  "
    EXPORTING
         MPOOL = lv_mpool
         FUNC_STATUS = lv_func_status
         GENERATE_ONLY = lv_generate_only
         OWN_STATUS_TITLE = lv_own_status_title
         GENERATE_AS_SUBSCREEN = lv_generate_as_subscreen
         GENERATE_AND_HOLD = lv_generate_and_hold
         MAINTAIN_MODE = lv_maintain_mode
         DYNNR = lv_dynnr
         DYNPROINDEX = lv_dynproindex
         DYNPROSTOTAL = lv_dynprostotal
         CATTTYP = lv_catttyp
         RFCDESTINATION = lv_rfcdestination
         DISPLAY_ONLY = lv_display_only
         SUBSCRDEF = lv_subscrdef
         PAR_FIELDS_ONLY = lv_par_fields_only
    IMPORTING
         OKCODE = lv_okcode
         GEN_MPOOL = lv_gen_mpool
         GEN_DYNNR = lv_gen_dynnr
    TABLES
         FIELDDATA = lt_fielddata
         PARAMLIST = lt_paramlist
    EXCEPTIONS
        NO_DYNPRO = 1
        DYNPRO_NOT_FOUND = 2
        GEN_ERROR = 3
        ENQ_ERROR = 4
        SUBSCR_ERROR = 5
. " CAT_SIMULATE_DYNPRO




ABAP code using 7.40 inline data declarations to call FM CAT_SIMULATE_DYNPRO

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 MPOOL FROM CATF INTO @DATA(ld_mpool).
 
"SELECT single UCOMM FROM SY INTO @DATA(ld_okcode).
 
 
 
"SELECT single SD_ABF FROM RSCAT INTO @DATA(ld_func_status).
DATA(ld_func_status) = ''.
 
"SELECT single INAKS FROM CATF INTO @DATA(ld_generate_only).
DATA(ld_generate_only) = ' '.
 
"SELECT single INAKS FROM CATF INTO @DATA(ld_own_status_title).
DATA(ld_own_status_title) = ' '.
 
"SELECT single INAKS FROM CATF INTO @DATA(ld_generate_as_subscreen).
DATA(ld_generate_as_subscreen) = ' '.
 
"SELECT single INAKS FROM CATF INTO @DATA(ld_generate_and_hold).
DATA(ld_generate_and_hold) = ' '.
 
"SELECT single INAKS FROM CATF INTO @DATA(ld_maintain_mode).
DATA(ld_maintain_mode) = ' '.
 
"SELECT single DYNNR FROM CATF INTO @DATA(ld_dynnr).
 
"SELECT single MPOOL FROM CATF INTO @DATA(ld_gen_mpool).
 
 
 
"SELECT single DYNNR FROM CATF INTO @DATA(ld_gen_dynnr).
 
 
"SELECT single LFDNR FROM CATF INTO @DATA(ld_dynproindex).
 
 
"SELECT single LFDNR FROM CATF INTO @DATA(ld_dynprostotal).
 
"SELECT single ATYP FROM CATA INTO @DATA(ld_catttyp).
DATA(ld_catttyp) = 'C'.
 
 
"SELECT single RFCDEST FROM RSCAT INTO @DATA(ld_rfcdestination).
DATA(ld_rfcdestination) = ' '.
 
"SELECT single INAKS FROM CATF INTO @DATA(ld_display_only).
DATA(ld_display_only) = ' '.
 
"SELECT single INAKS FROM CATF INTO @DATA(ld_subscrdef).
DATA(ld_subscrdef) = ' '.
 
"SELECT single INAKS FROM CATF INTO @DATA(ld_par_fields_only).
DATA(ld_par_fields_only) = ' '.
 


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!