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

describe

Former Member
0 Likes
643

what is use ,purpose,syntax of the keyword 'describe'.

what is use ,purpose,syntax of the keyword 'describe'.

5 REPLIES 5
Read only

Former Member
0 Likes
619

describe is used to describe the attributes of a field or a table.

describe table itab lines v_lines

this gives the number of lines in an internal table into v_lines.

Read only

Former Member
0 Likes
619

Hi,

<b>Describe Table</b> use to define

the various additions enable you to determine the table type, the number of currently filled rows and the initial memory requirement.

but it also use with field and to find distance between two fields.

u can use application help (<b>In SE38 ctrl + F8</b> ).

Hope it is helpful to u.

Read only

Former Member
0 Likes
619

Try the ABAP F1 help for DESCRIBE.

You will get everything you want to know.

Thanks, Ankur

Read only

Former Member
0 Likes
619

Hi,

This statement determines several properties of the data object <b>dobj</b> and assigns them to the specified variables.

Like if you use, this command for a field, Say DESCRIBE FIELD dobj with certain additions, It will store several properties of dobj in certain variables.

You can also use, DESCRIBE for tables and internal variables.

Reward if useful,

Ankur

Read only

Former Member
0 Likes
619

hi,

This statement determines some properties of the internal table itab and assigns them to the specified variables.

Reward with points if helpful.