Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Dialoge

Former Member
0 Kudos

have made customizing dialog

I compare two values

One from a fieldsysmbol and other from the domain fix value

The fieldsymbol value is ASB. This value comes from the domain fix value

if <test> -testvalue = domain fix value

<test>-testvalue have the value ASB

How can I access the domain fix value on right side of if.

thanks

waseem

2 REPLIES 2

Former Member
0 Kudos

Try FM "DOMAIN_VALUE_GET"

former_member203501
Active Contributor
0 Kudos

use this to compare the values..

DATA: int_values_table TYPE dd07v OCCURS 0 WITH HEADER LINE.

CALL FUNCTION 'GET_DOMAIN_VALUES'

EXPORTING

domname = 'GESCH' " Pass the domain name here

text = 'X'

TABLES

values_tab = int_values_table

EXCEPTIONS

no_values_found = 1

OTHERS = 2.