SAP DMUDS_SELECT_PARAMS Function Module for NOTRANSL: Dokument-Selektionsparameter in Pufferleiste verwalten









DMUDS_SELECT_PARAMS is a standard dmuds select params SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Dokument-Selektionsparameter in Pufferleiste verwalten 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 dmuds select params FM, simply by entering the name DMUDS_SELECT_PARAMS into the relevant SAP transaction such as SE37 or SE38.

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



Function DMUDS_SELECT_PARAMS 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 'DMUDS_SELECT_PARAMS'"NOTRANSL: Dokument-Selektionsparameter in Pufferleiste verwalten
EXPORTING
* IM_SET_FL = 'X' "Generic Type
* IM_SINGLEFILEFLG = "Generic Type
* IM_INPUT_DYNPRO_FL = "Generic Type
* IM_READ_USE_CUST_FL = "Generic Type
* IM_DMUFLG = "Generic Type
* IM_DOC_TYPE = '*' "Document Type
* IM_DOC_VERSION = '*' "Document Status
* IM_DOC_STATUS = '*' "Document Status
* IM_DOC_APPLICATION = '*' "Application
* IM_DOC_APPLICATIONS = "Workstation Applications

IMPORTING
EX_DMUFLG = "Generic Type
EX_DOC_TYPE = "Document Type
EX_DOC_VERSION = "Document Status
EX_DOC_STATUS = "Document Status
EX_DOC_APPLICATION = "Application
EX_DOC_APPLICATIONS = "Workstation Applications
EX_SINGLEFILEFLG = "Generic Type
.



IMPORTING Parameters details for DMUDS_SELECT_PARAMS

IM_SET_FL - Generic Type

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

IM_SINGLEFILEFLG - Generic Type

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

IM_INPUT_DYNPRO_FL - Generic Type

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

IM_READ_USE_CUST_FL - Generic Type

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

IM_DMUFLG - Generic Type

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

IM_DOC_TYPE - Document Type

Data type: DRAW-DOKAR
Default: '*'
Optional: Yes
Call by Reference: No ( called with pass by value option)

IM_DOC_VERSION - Document Status

Data type: DRAW-DOKVR
Default: '*'
Optional: Yes
Call by Reference: No ( called with pass by value option)

IM_DOC_STATUS - Document Status

Data type: DRAW-DOKST
Default: '*'
Optional: Yes
Call by Reference: No ( called with pass by value option)

IM_DOC_APPLICATION - Application

Data type: DRAW-DAPPL
Default: '*'
Optional: Yes
Call by Reference: No ( called with pass by value option)

IM_DOC_APPLICATIONS - Workstation Applications

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

EXPORTING Parameters details for DMUDS_SELECT_PARAMS

EX_DMUFLG - Generic Type

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

EX_DOC_TYPE - Document Type

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

EX_DOC_VERSION - Document Status

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

EX_DOC_STATUS - Document Status

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

EX_DOC_APPLICATION - Application

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

EX_DOC_APPLICATIONS - Workstation Applications

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

EX_SINGLEFILEFLG - Generic Type

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

Copy and paste ABAP code example for DMUDS_SELECT_PARAMS 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_ex_dmuflg  TYPE C, "   
lv_im_set_fl  TYPE C, "   'X'
lv_im_singlefileflg  TYPE C, "   
lv_ex_doc_type  TYPE DRAW-DOKAR, "   
lv_im_input_dynpro_fl  TYPE C, "   
lv_ex_doc_version  TYPE DRAW-DOKST, "   
lv_im_read_use_cust_fl  TYPE C, "   
lv_im_dmuflg  TYPE C, "   
lv_ex_doc_status  TYPE DRAW-DOKST, "   
lv_im_doc_type  TYPE DRAW-DOKAR, "   '*'
lv_ex_doc_application  TYPE DRAW-DAPPL, "   
lv_im_doc_version  TYPE DRAW-DOKVR, "   '*'
lv_ex_doc_applications  TYPE DMUT_DOC_SEARCH_APPLS_TAB, "   
lv_im_doc_status  TYPE DRAW-DOKST, "   '*'
lv_ex_singlefileflg  TYPE C, "   
lv_im_doc_application  TYPE DRAW-DAPPL, "   '*'
lv_im_doc_applications  TYPE DMUT_DOC_SEARCH_APPLS_TAB. "   

  CALL FUNCTION 'DMUDS_SELECT_PARAMS'  "NOTRANSL: Dokument-Selektionsparameter in Pufferleiste verwalten
    EXPORTING
         IM_SET_FL = lv_im_set_fl
         IM_SINGLEFILEFLG = lv_im_singlefileflg
         IM_INPUT_DYNPRO_FL = lv_im_input_dynpro_fl
         IM_READ_USE_CUST_FL = lv_im_read_use_cust_fl
         IM_DMUFLG = lv_im_dmuflg
         IM_DOC_TYPE = lv_im_doc_type
         IM_DOC_VERSION = lv_im_doc_version
         IM_DOC_STATUS = lv_im_doc_status
         IM_DOC_APPLICATION = lv_im_doc_application
         IM_DOC_APPLICATIONS = lv_im_doc_applications
    IMPORTING
         EX_DMUFLG = lv_ex_dmuflg
         EX_DOC_TYPE = lv_ex_doc_type
         EX_DOC_VERSION = lv_ex_doc_version
         EX_DOC_STATUS = lv_ex_doc_status
         EX_DOC_APPLICATION = lv_ex_doc_application
         EX_DOC_APPLICATIONS = lv_ex_doc_applications
         EX_SINGLEFILEFLG = lv_ex_singlefileflg
. " DMUDS_SELECT_PARAMS




ABAP code using 7.40 inline data declarations to call FM DMUDS_SELECT_PARAMS

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.

 
DATA(ld_im_set_fl) = 'X'.
 
 
"SELECT single DOKAR FROM DRAW INTO @DATA(ld_ex_doc_type).
 
 
"SELECT single DOKST FROM DRAW INTO @DATA(ld_ex_doc_version).
 
 
 
"SELECT single DOKST FROM DRAW INTO @DATA(ld_ex_doc_status).
 
"SELECT single DOKAR FROM DRAW INTO @DATA(ld_im_doc_type).
DATA(ld_im_doc_type) = '*'.
 
"SELECT single DAPPL FROM DRAW INTO @DATA(ld_ex_doc_application).
 
"SELECT single DOKVR FROM DRAW INTO @DATA(ld_im_doc_version).
DATA(ld_im_doc_version) = '*'.
 
 
"SELECT single DOKST FROM DRAW INTO @DATA(ld_im_doc_status).
DATA(ld_im_doc_status) = '*'.
 
 
"SELECT single DAPPL FROM DRAW INTO @DATA(ld_im_doc_application).
DATA(ld_im_doc_application) = '*'.
 
 


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!