cancel
Showing results for 
Search instead for 
Did you mean: 

domain

Former Member
0 Kudos

is there any function module for Domain. If i pass short discription of domain to function module, can i get domain name?

ex- if i pass Plant to FM, i wann domain WERKS

is it available in SAP.

Please tell me.................

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi Shuba Rao,

There is no Function module to get when we pass the Domine Description.

if we pass the Domain Name we can get the Domain Description.

DD_DOMA_INNER_ACT

DD_DTEL_GET

DD_DTEL_INNER_ACT

DD_DTEL_SET_GET

DD_TYPE_NTAB_GEN

MASTER_IDOC_CREATE_DD01L

Thanks,

Nelson

Reward points if Helpfull.

former_member194198
Active Participant
0 Kudos

Write a select to do it.

data : w_domname type dd02t-domname.

Select domname

into w_domname

from dd02t

where ddlanguage = sy-langu

and ddtext = 'Plant'.

endselect.

This will give you the domain name.

Cheers

Richard

PS don't forget to award points for helpful suggestions.

Message was edited by:

Richard Tucker

Former Member
0 Kudos

HI,

Go for the F4 help and make use of that.

Regards,

-->Suresh

Former Member
0 Kudos

Hai,

If you want Domain name for a given short description <b>try like this</b>:

Go to SE11>Place yhe cursor at Domain Box>Press F4-->Press Information Sysetm.

There Type Short Description like:

If the text is about Gl Account, Type l accon

Anf then Press Enter.

Then you get all the Domains related to your text.

<b>This type of search help in all aspects(Data Elements,FMs,Reports...any)</b>

Hope this helps you a lot.

Reward points if it helps you.

<b>Reward points if it helps you.</b>

Regds,

Rama chary.Pammi

Former Member
0 Kudos

thanks

but i want function module for this........so that i can call that easily