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 table

Former Member
0 Likes
591

I have domain name BSTTYP and its having Value range...

How to find its Table... value table ... ?

when i see its contain in value table below domain its blank.

i.e value table is blank..

from where i will find it..

Point is assurd...

4 REPLIES 4
Read only

Sm1tje
Active Contributor
0 Likes
523

When I look at this domain, it only has FIXED values and no value range.

When I look at the search help in the tables where this data element (from domain) is used, I only get the fixed values. There is no value table assigned to this domain.

Read only

Former Member
0 Likes
523

i have replied answer in ABAP general forum..

here it is:

Hi Monica,

I think you need those values in your ABAP object. I debugged for a while and found that domain single values are stored in table:DD07L.

Pass DOMNAME = BSTTYP and you will get single values defined for this domain.

I hope this helps,

Ags.

Read only

Former Member
0 Likes
523

Hi,

Look at tables DD07L (values) and DD07T (texts).

Or

Try using this function module to get the values.

{code

report zTest_0001.

data: idd07v type table of dd07v with header line.

start-of-selection.

call function 'DD_DOMVALUES_GET'

exporting

domname = 'STATV''

text = 'X'

langu = sy-langu

tables

dd07v_tab = idd07v

exceptions

wrong_textflag = 1

others = 2.

loop at idd07v.

write:/ idd07v-domvalue_l, idd07v-ddtext.

endloop.

code}

Regards,

Kiran Sure

Read only

Former Member
0 Likes
523

Thanks to all , Kale...