SAP DD_SHLP_ACT Function Module for









DD_SHLP_ACT is a standard dd shlp act 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 dd shlp act FM, simply by entering the name DD_SHLP_ACT into the relevant SAP transaction such as SE37 or SE38.

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



Function DD_SHLP_ACT 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 'DD_SHLP_ACT'"
EXPORTING
SHLPNAME = "Name of search help to be activated
* ACTMODE = 1 "Type of activation
* ACTIONS = ' ' "
* WITH_SHLP = ' ' "
* WITH_DEP = ' ' "
* DD30V_WA_A = ' ' "
* DD30V_WA_N = ' ' "
* PROTNAME = ' ' "
* PRID = 0 "

IMPORTING
RESULTS = "
RC = "

TABLES
* DD31V_TAB_A = "
* DD31V_TAB_N = "
* DD32P_TAB_A = "
* DD32P_TAB_N = "
* DD33V_TAB_A = "
* DD33V_TAB_N = "
* DCOBJDEP_TAB = "

EXCEPTIONS
PARAMETER_ERROR = 1 ACTOK_FAILURE = 2
.



IMPORTING Parameters details for DD_SHLP_ACT

SHLPNAME - Name of search help to be activated

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

ACTMODE - Type of activation

Data type: DDREFSTRUC-MODE
Default: 1
Optional: Yes
Call by Reference: No ( called with pass by value option)

ACTIONS -

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

WITH_SHLP -

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

WITH_DEP -

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

DD30V_WA_A -

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

DD30V_WA_N -

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

PROTNAME -

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

PRID -

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

EXPORTING Parameters details for DD_SHLP_ACT

RESULTS -

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

RC -

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

TABLES Parameters details for DD_SHLP_ACT

DD31V_TAB_A -

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

DD31V_TAB_N -

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

DD32P_TAB_A -

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

DD32P_TAB_N -

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

DD33V_TAB_A -

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

DD33V_TAB_N -

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

DCOBJDEP_TAB -

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

EXCEPTIONS details

PARAMETER_ERROR -

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

ACTOK_FAILURE -

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

Copy and paste ABAP code example for DD_SHLP_ACT 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_results  TYPE DCSHACTRES, "   
lv_shlpname  TYPE DD30V-SHLPNAME, "   
lt_dd31v_tab_a  TYPE STANDARD TABLE OF DD31V, "   
lv_parameter_error  TYPE DD31V, "   
lv_rc  TYPE SY-SUBRC, "   
lv_actmode  TYPE DDREFSTRUC-MODE, "   1
lt_dd31v_tab_n  TYPE STANDARD TABLE OF DD31V, "   
lv_actok_failure  TYPE DD31V, "   
lv_actions  TYPE DCSHACTDET, "   ' '
lt_dd32p_tab_a  TYPE STANDARD TABLE OF DD32P, "   
lv_with_shlp  TYPE DDREFSTRUC-STATE, "   ' '
lt_dd32p_tab_n  TYPE STANDARD TABLE OF DD32P, "   
lv_with_dep  TYPE DDREFSTRUC-BOOL, "   ' '
lt_dd33v_tab_a  TYPE STANDARD TABLE OF DD33V, "   
lv_dd30v_wa_a  TYPE DD30V, "   ' '
lt_dd33v_tab_n  TYPE STANDARD TABLE OF DD33V, "   
lv_dd30v_wa_n  TYPE DD30V, "   ' '
lt_dcobjdep_tab  TYPE STANDARD TABLE OF DCOBJDEP, "   
lv_protname  TYPE DDPRH-PROTNAME, "   ' '
lv_prid  TYPE SY-TABIX. "   0

  CALL FUNCTION 'DD_SHLP_ACT'  "
    EXPORTING
         SHLPNAME = lv_shlpname
         ACTMODE = lv_actmode
         ACTIONS = lv_actions
         WITH_SHLP = lv_with_shlp
         WITH_DEP = lv_with_dep
         DD30V_WA_A = lv_dd30v_wa_a
         DD30V_WA_N = lv_dd30v_wa_n
         PROTNAME = lv_protname
         PRID = lv_prid
    IMPORTING
         RESULTS = lv_results
         RC = lv_rc
    TABLES
         DD31V_TAB_A = lt_dd31v_tab_a
         DD31V_TAB_N = lt_dd31v_tab_n
         DD32P_TAB_A = lt_dd32p_tab_a
         DD32P_TAB_N = lt_dd32p_tab_n
         DD33V_TAB_A = lt_dd33v_tab_a
         DD33V_TAB_N = lt_dd33v_tab_n
         DCOBJDEP_TAB = lt_dcobjdep_tab
    EXCEPTIONS
        PARAMETER_ERROR = 1
        ACTOK_FAILURE = 2
. " DD_SHLP_ACT




ABAP code using 7.40 inline data declarations to call FM DD_SHLP_ACT

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 SHLPNAME FROM DD30V INTO @DATA(ld_shlpname).
 
 
 
"SELECT single SUBRC FROM SY INTO @DATA(ld_rc).
 
"SELECT single MODE FROM DDREFSTRUC INTO @DATA(ld_actmode).
DATA(ld_actmode) = 1.
 
 
 
DATA(ld_actions) = ' '.
 
 
"SELECT single STATE FROM DDREFSTRUC INTO @DATA(ld_with_shlp).
DATA(ld_with_shlp) = ' '.
 
 
"SELECT single BOOL FROM DDREFSTRUC INTO @DATA(ld_with_dep).
DATA(ld_with_dep) = ' '.
 
 
DATA(ld_dd30v_wa_a) = ' '.
 
 
DATA(ld_dd30v_wa_n) = ' '.
 
 
"SELECT single PROTNAME FROM DDPRH INTO @DATA(ld_protname).
DATA(ld_protname) = ' '.
 
"SELECT single TABIX FROM SY INTO @DATA(ld_prid).
 


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!