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
863

how can i get the short discription for domain

can any body help me

1 ACCEPTED SOLUTION
Read only

former_member799868
Participant
0 Likes
835

SELECT DDTXT FROM DD01T WHERE DOMNAME = 'DOMINE NAME' AND DDLANGUAGE = 'E'.

how can i get the short discription for domain

can any body help me

6 REPLIES 6
Read only

Former Member
0 Likes
835

Hi shaik

Domain is the possible value of the field in the table.

Example

Field Domain (nomally it 's in the Data element)

Name John, Max, Jim

That mean Field "Name" you can input data only three value. John,Max or Jim.

Regards

Wiboon

Read only

former_member188827
Active Contributor
0 Likes
835

data ztext(60).

select ddtext into ztext from dd01t WHERE domname = 'MATNR' AND ddlanguage = 'E'.

ENDSELECT.

WRITE / ztext.

Note:always give domain name in upper case..

plz reward points if dis helps

Read only

Former Member
0 Likes
835

hi,

Domain: they set of Attributes such as data type , length , possible value range & etc

You can get in table dd01t

Just write a select query passing the domain name..

rewards if useful,

regards,

nazeer

Read only

former_member799868
Participant
0 Likes
836

SELECT DDTXT FROM DD01T WHERE DOMNAME = 'DOMINE NAME' AND DDLANGUAGE = 'E'.

Read only

Former Member
0 Likes
835

hi,

goto se11 -> in domain textbox give domain name and it will display all values of that domain such as

1. name [short,medium,long]

2. data element

if helpful reward some points.

with regards,

suresh aluri.

Read only

Former Member
0 Likes
835

Hello,

<b>Data elements</b> ideally use domains to define their technical properties. On

<b>domains,</b> however, an ABAP program cannot gain access for typing data objects.

As a rule, data elements get their data types from <b>domains.</b> This data type can also be derived from an integrated type.

The <b>domains</b> are used for the central management of the technical properties of data objects. The domains cannot be used directly in programs, tables, etc. The data type <b>'Data element' </b> is used here as a bridge from the technical properties to the different data types / data objects.

Reward if helpful,

Regards,

LIJO