cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

Dear a::

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

Thanks & Regards

Vinayak Deosthali.

0 Likes
View Entire Topic
jayanthi_jayaraman
Active Contributor
0 Likes

hi,

You cannot create Internal table using SE11.

But you can create database tables uisng SE11.

Internal table is something which we will use in the report/program.

For Eg..

MARA is the database table.

In the report,if we declare

data itab type standard table of mara.

itab will be our internal table.

But it won't contain any data which is the database table Mara.

To populate content into it,we need to code

select * from mara into table itab.

This above code will make the internal table contains data of the database table MARA.

Kindly reward points by clicking the star on the left of reply,if it helps.

Check this links for info about database.

http://help.sap.com/saphelp_40b/helpdata/en/4f/991f82446d11d189700000e8322d00/applet.htm