SAP RS_NAVIGATION_PUSH_DDIC Function Module for Stack entry for ABAP/4 Dictionary objects









RS_NAVIGATION_PUSH_DDIC is a standard rs navigation push ddic SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Stack entry for ABAP/4 Dictionary objects 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 rs navigation push ddic FM, simply by entering the name RS_NAVIGATION_PUSH_DDIC into the relevant SAP transaction such as SE37 or SE38.

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



Function RS_NAVIGATION_PUSH_DDIC 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 'RS_NAVIGATION_PUSH_DDIC'"Stack entry for ABAP/4 Dictionary objects
EXPORTING
DDNAME = "
* CALL_DIALOG = ' ' "
* CLASS = ' ' "
DDTYPE = "
* FBTYPE = 'N' "
* FCT = 'S' "
* LOCAL = ' ' "
* PART = ' ' "
* POPUP = ' ' "
* SAVED = 'X' "
* SECNAME = ' ' "
.




Customer Function user exits

Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.
EXIT_SAPLSEDD_001 Exit for ABAP Dictionary

IMPORTING Parameters details for RS_NAVIGATION_PUSH_DDIC

DDNAME -

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

CALL_DIALOG -

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

CLASS -

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

DDTYPE -

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

FBTYPE -

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

FCT -

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

LOCAL -

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

PART -

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

POPUP -

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

SAVED -

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

SECNAME -

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

Copy and paste ABAP code example for RS_NAVIGATION_PUSH_DDIC 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_ddname  TYPE RSDXX-OBJNAME, "   
lv_call_dialog  TYPE RSDXX, "   SPACE
lv_class  TYPE RSDXX, "   SPACE
lv_ddtype  TYPE RSDXX-EUTYPE, "   
lv_fbtype  TYPE RSDXX, "   'N'
lv_fct  TYPE RSDXX, "   'S'
lv_local  TYPE RSDXX, "   SPACE
lv_part  TYPE RSDXX, "   SPACE
lv_popup  TYPE RSDXX, "   SPACE
lv_saved  TYPE RSDXX, "   'X'
lv_secname  TYPE RSDXX. "   SPACE

  CALL FUNCTION 'RS_NAVIGATION_PUSH_DDIC'  "Stack entry for ABAP/4 Dictionary objects
    EXPORTING
         DDNAME = lv_ddname
         CALL_DIALOG = lv_call_dialog
         CLASS = lv_class
         DDTYPE = lv_ddtype
         FBTYPE = lv_fbtype
         FCT = lv_fct
         LOCAL = lv_local
         PART = lv_part
         POPUP = lv_popup
         SAVED = lv_saved
         SECNAME = lv_secname
. " RS_NAVIGATION_PUSH_DDIC




ABAP code using 7.40 inline data declarations to call FM RS_NAVIGATION_PUSH_DDIC

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 OBJNAME FROM RSDXX INTO @DATA(ld_ddname).
 
DATA(ld_call_dialog) = ' '.
 
DATA(ld_class) = ' '.
 
"SELECT single EUTYPE FROM RSDXX INTO @DATA(ld_ddtype).
 
DATA(ld_fbtype) = 'N'.
 
DATA(ld_fct) = 'S'.
 
DATA(ld_local) = ' '.
 
DATA(ld_part) = ' '.
 
DATA(ld_popup) = ' '.
 
DATA(ld_saved) = 'X'.
 
DATA(ld_secname) = ' '.
 


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!