‎2008 May 17 1:16 PM
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...
‎2008 May 17 5:02 PM
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.
‎2008 May 17 8:34 PM
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.
‎2008 May 18 6:40 AM
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
‎2008 Jun 24 8:12 AM