‎2009 Oct 09 2:39 PM
Hi,
I am working on a report.
Can anyone tell me how to use value table for the domain
‎2009 Oct 09 2:42 PM
Hi,
You can double click on the domain and go to value range tab.
There you can see the value table attached to a particular field.
You can attach it to the report.
Regards,
Subhashini
‎2009 Oct 09 2:44 PM
Hello,
Please be specific about your requirement. Your statement is too ambiguos & hence less replies.
If you really want to quality response plz restate your problem.
BR,
Suhas
‎2009 Oct 09 2:55 PM
Hi,
Actually I have created the Domain.
In value range tab, I wanted to increase the size of the field but it is not possible.
So I am thinking to use the Value range table.
‎2009 Oct 09 3:32 PM
Hi Naga,
what did the online help say that did not answer your question?
Regards,
Clemens
‎2009 Oct 10 12:15 PM
Hi Naga,
Please try the below code. You can find the DOMAIN range value in it_txt
TABLES DD07V.
DATA it_txt like dd07v occurs 0 with header line.
call function 'GET_DOMAIN_VALUES'
EXPORTING
domname = 'Z_XXX' "Your DOMAIN defined name
TABLES
values_tab = it_txt
EXCEPTIONS
no_values_found = 1
others = 2.