Application Development and Automation 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: 
Read only

Dialoge

Former Member
0 Likes
584

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

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
Read only

Former Member
0 Likes
546

Try FM "DOMAIN_VALUE_GET"

Read only

former_member203501
Active Contributor
0 Likes
546

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.