‎2008 Sep 25 11:29 AM
I want to access the fixed vlaues of domain can some body tell me how can I program it.
thanks
Waseem
‎2008 Sep 25 11:32 AM
hi i think you can get it from the value table for that domain..
‎2008 Sep 25 11:33 AM
‎2008 Sep 25 11:35 AM
‎2008 Sep 25 11:36 AM
hi,
Double post.
ur post has got so many replies.Still u r posting it again.
u can check ur previous post by looking at your questions.
use table DD07T.
‎2008 Sep 25 11:39 AM
‎2008 Sep 25 11:41 AM
Thnank you for the reply
can you please give me sample code
thanks
Waseem
‎2008 Sep 25 11:46 AM
‎2008 Sep 25 11:49 AM
Use this FM ...DD_DOFV_GET
you will get the text also......go to se37 and execute the FM...give the domain name...
‎2008 Sep 25 11:53 AM
‎2008 Sep 25 11:55 AM
if you dont want your id to be deleted dont answer it.
Its duplication of a post already there is warning.
‎2008 Sep 25 11:56 AM
can some body give me please a sample code>
> Hi..,
>
> Find out the domain name and write select query for that..,
>
>
select * from dd07t > into corresponding fields of table ITAB > where domname = 'DOMAIN NAME'.>
> Now itab-ddtext handles the fixed values of that domain.
>
> Thanks,
> naveen.I
Can you please write one FI report for me also?
PS:But i will not give you my Pay.
‎2008 Sep 25 12:05 PM
Thanks a lot for reply.
I have made customizing dialog
I am compare two values
One from a fieldsysmbol and other from the domain fix value
The fieldsymbol value is ASB. This value comes from the domain fix value
if <test> -testvalue = domain fix value
<test>-testvalue have the value ASB
How can I access the domain fix value on right side of if.
thanks
waseem
‎2008 Sep 25 12:04 PM
hi,
you can use DDIF_COMA_GET function module to obtain te fixed values for ur preferrred domain...
CALL FUNCTION 'DDIF_DOMA_GET'
EXPORTING
name = l_domain
langu = sy-langu
TABLES
dd07v_tab = it_domain
EXCEPTIONS
illegal_input = 1
OTHERS = 2.
IF SY-SUBRC <>0.
Message ID sy-msgid TYPE sy-msgty NUMBER sy-msgno WITH sy-msgv1 sy-msgv2 symsgv3 sy-msgv4.
regards,
ginni
‎2008 Sep 25 12:35 PM
DATA: int_values_table TYPE dd07v OCCURS 0 WITH HEADER LINE.
CALL FUNCTION 'GET_DOMAIN_VALUES'
EXPORTING
domname = 'GESCH' " Pass the domain name here
text = 'X'
TABLES
values_tab = int_values_table
EXCEPTIONS
no_values_found = 1
OTHERS = 2.
Table : O/P table VALUES_TAB willl give you domian value .
You can retrieve value from here.
-Siddhi Daftary