Dear a::
Can I create an Internal Table through SE11 and use in my report ? How ?
Thanks & Regards
Vinayak Deosthali.
Request clarification before answering.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 10 | |
| 5 | |
| 5 | |
| 5 | |
| 4 | |
| 2 | |
| 2 | |
| 2 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.