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 for Domain

Former Member
0 Likes
612

Hi,

I am working on a report.

Can anyone tell me how to use value table for the domain

5 REPLIES 5
Read only

Former Member
0 Likes
577

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

Read only

SuhaSaha
Product and Topic Expert
Product and Topic Expert
0 Likes
577

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

Read only

Former Member
0 Likes
577

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.

Read only

0 Likes
577

Hi Naga,

what did the online help say that did not answer your question?

Regards,

Clemens

Read only

0 Likes
577

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.