SAP SHOW_DOMAIN_VALUES Function Module for NOTRANSL: Ermitteln von Direktwerten von Domänen (für Listanzeigen ...)









SHOW_DOMAIN_VALUES is a standard show domain values 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: Ermitteln von Direktwerten von Domänen (für Listanzeigen ...) 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 show domain values FM, simply by entering the name SHOW_DOMAIN_VALUES into the relevant SAP transaction such as SE37 or SE38.

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



Function SHOW_DOMAIN_VALUES 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 'SHOW_DOMAIN_VALUES'"NOTRANSL: Ermitteln von Direktwerten von Domänen (für Listanzeigen ...)
EXPORTING
DOMAIN = "Domain name
* LANGU = 'D' "Language
* VALUE = ' ' "Domain value (default)

IMPORTING
DTEXT = "Value description

TABLES
* DTEXT_TABLE = "Obsolete

EXCEPTIONS
UNDEFINED_DOMAIN = 1
.



IMPORTING Parameters details for SHOW_DOMAIN_VALUES

DOMAIN - Domain name

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

LANGU - Language

Data type: DD07T-DDLANGUAGE
Default: 'D'
Optional: Yes
Call by Reference: No ( called with pass by value option)

VALUE - Domain value (default)

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

EXPORTING Parameters details for SHOW_DOMAIN_VALUES

DTEXT - Value description

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

TABLES Parameters details for SHOW_DOMAIN_VALUES

DTEXT_TABLE - Obsolete

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

EXCEPTIONS details

UNDEFINED_DOMAIN -

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

Copy and paste ABAP code example for SHOW_DOMAIN_VALUES 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_dtext  TYPE DD07T-DDTEXT, "   
lv_domain  TYPE DD07T-DOMNAME, "   
lt_dtext_table  TYPE STANDARD TABLE OF DD07V, "   
lv_undefined_domain  TYPE DD07V, "   
lv_langu  TYPE DD07T-DDLANGUAGE, "   'D'
lv_value  TYPE DD07V-DOMVALUE_L. "   SPACE

  CALL FUNCTION 'SHOW_DOMAIN_VALUES'  "NOTRANSL: Ermitteln von Direktwerten von Domänen (für Listanzeigen ...)
    EXPORTING
         DOMAIN = lv_domain
         LANGU = lv_langu
         VALUE = lv_value
    IMPORTING
         DTEXT = lv_dtext
    TABLES
         DTEXT_TABLE = lt_dtext_table
    EXCEPTIONS
        UNDEFINED_DOMAIN = 1
. " SHOW_DOMAIN_VALUES




ABAP code using 7.40 inline data declarations to call FM SHOW_DOMAIN_VALUES

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 DDTEXT FROM DD07T INTO @DATA(ld_dtext).
 
"SELECT single DOMNAME FROM DD07T INTO @DATA(ld_domain).
 
 
 
"SELECT single DDLANGUAGE FROM DD07T INTO @DATA(ld_langu).
DATA(ld_langu) = 'D'.
 
"SELECT single DOMVALUE_L FROM DD07V INTO @DATA(ld_value).
DATA(ld_value) = ' '.
 


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!