cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

create Internal Table through SE11

Former Member
0 Likes
2,489

Dear a::

Can I create an Internal Table through SE11 and use in my report ? How ?

Thanks & Regards

Vinayak Deosthali.

View Entire Topic
Former Member
0 Likes

hi vinayak,

u can't create an internal table using se11..But u can create structures using se11 and use those structures in ur report..

in se11 use datatype radio button to create structures and use the same..

<b>Internal tables</b> are structured data types provided by ABAP/4.

They cannot be accessed outside the program environment.

<b>Purpose of internal tables</b>

Internal tables are used to reorganize the contents of database tables according to the needs of your program

Internal tables are used to perform calculations on subsets of database tables.

The number of lines in an internal table is not fixed.

Internal tables exist only during the run time of a program.

<b>syntax for internal tables:</b>

<b>1.</b>In this method an internal table is created with reference to existing structure ( another internal table or Dictionary object).

Eg: DATA ITAB LIKE SFLIGHT OCCURS 10 WITH HEADER LINE.

<b>2.</b>

Create an internal table data object directly with the 'DATA' statement.

Eg: DATA : BEGIN OF ITAB OCCURS 0,

COLUMN1 TYPE I,

COLUMN2 TYPE I,

COLUMN3 TYPE I,

END OF ITAB.

Message was edited by: Ashok Kumar Prithiviraj