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

Domain

Former Member
0 Likes
1,904

I want to access the fixed vlaues of domain can some body tell me how can I program it.

thanks

Waseem

14 REPLIES 14
Read only

former_member203501
Active Contributor
0 Likes
1,869

hi i think you can get it from the value table for that domain..

Read only

Former Member
0 Likes
1,869

Hello,

Use the FM GET_DOMAIN_VALUES.

CHeers,

Vasanth

Read only

Former Member
0 Likes
1,869

hi,

use FM DD_DOMVALUES_GET

Thanks,

Omkar

Read only

GauthamV
Active Contributor
0 Likes
1,869

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.

Read only

Former Member
0 Likes
1,869

FM : GET_DOMAIN_VALUES

-Siddhi daftary

Read only

0 Likes
1,869

Thnank you for the reply

can you please give me sample code

thanks

Waseem

Read only

Former Member
0 Likes
1,869

This message was moderated.

Read only

0 Likes
1,869

Use this FM ...DD_DOFV_GET

you will get the text also......go to se37 and execute the FM...give the domain name...

Read only

0 Likes
1,869

This message was moderated.

Read only

0 Likes
1,869

if you dont want your id to be deleted dont answer it.

Its duplication of a post already there is warning.

Read only

0 Likes
1,869
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.

Read only

0 Likes
1,869

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

Read only

Former Member
0 Likes
1,869

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

Read only

Former Member
0 Likes
1,869

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