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: 

DOMAIN - Value range

Former Member
0 Kudos

Hi,

I would like to know in which table , a domains corresponding "value range(fixed values of a domain)" is storing.

Thanks,

Jey

1 ACCEPTED SOLUTION

raymond_giuseppi
Active Contributor
0 Kudos

Tables are

DD07L R/3 DD: values for the domains

DD07T DD: Texts for Domain Fixed Values (Language-Dependent)

or use database view

DD07V View on fixed values and domain texts

Attention, there can be a table of value for a domain

Check at DD01L-ENTITYTAB, if not initial, this is the table of values (which may have a text table)

So better use of function modules :

DD_DOMVALUE_TEXT_GET DD: Read interface for the text of a single domain fixed val

DD_DOMVALUES_GET DD external: External interface for reading the domain fixed

DOMAIN_VALUE_GET

Regards

3 REPLIES 3

Former Member
0 Kudos

Hi Jey,

They will be maintained at Domain level, not stored in any table. DD07D is the structure which will work as interface to bring the domain level fixed values to the screen.

Reward Points if this helps,

Satish

raymond_giuseppi
Active Contributor
0 Kudos

Tables are

DD07L R/3 DD: values for the domains

DD07T DD: Texts for Domain Fixed Values (Language-Dependent)

or use database view

DD07V View on fixed values and domain texts

Attention, there can be a table of value for a domain

Check at DD01L-ENTITYTAB, if not initial, this is the table of values (which may have a text table)

So better use of function modules :

DD_DOMVALUE_TEXT_GET DD: Read interface for the text of a single domain fixed val

DD_DOMVALUES_GET DD external: External interface for reading the domain fixed

DOMAIN_VALUE_GET

Regards

Former Member
0 Kudos

Hi jey,

the table in which domain's corresponding fixed value and value range are stored is DD07D.

DD07D-DOMVALUE is the field in which fixed value is stored..and

DD07D-DOMVALUE_L

DD07D-DOMVALUE_H are respective fields for range values..

u can find it by selecting the row in value range tab,and pressing F1->technical characteristics..

I believe u r satisfied with the answer.reward is its true..

thanx.