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

Value Range

Former Member
0 Likes
692

Hi All,

can any one tell me where the value ranges values and description will be stored( in which these will be stored)

How can we find the table in which value range values will get stored.

example : in Domain STATV

In value range tab will get these below:

Not Relevant

A Not yet processed

B Partially processed

C Completely processed

Thanks in Advance,

~Teena

4 REPLIES 4
Read only

former_member150733
Contributor
0 Likes
587

You can use the Function Module :

DOMAIN_VALUE_GET

or

GET_DOMAIN_VALUES

example:

CALL FUNCTION 'DOMAIN_VALUE_GET'

EXPORTING

I_DOMNAME = 'STATV'

I_DOMVALUE = 'A' " or it can be B or C

IMPORTING

E_DDTEXT = wrk_val

  • EXCEPTIONS

  • NOT_EXIST = 1

  • OTHERS = 2

.

IF SY-SUBRC <> 0.

  • MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO

  • WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

ENDIF.

YOu will get the value in wrk_val

<i>Pls reward useful answers</i>

Read only

Former Member
0 Likes
587

Hello,

<b>GET_DOMAIN_VALUES</b>

Vasanth

Read only

Former Member
0 Likes
587

In table DD07V, value ranges for all domain are stored..

Only those values are stored here for which single values table is maintained... not for value table entries..

Reward if helpful..

Regards

Prax

Read only

Former Member
0 Likes
587

hi Teena,

chk the table <b> DD07L</b>