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 can not create an internal table directly in SE11.
However, you can create a structure in SE11 and use it to create an internal table in your program.
ex.
If structure XYZ is present in dictionary,
you can create an internal table as follows.
TABLES : XYZ.
DATA : BEGIN OF t_xyz occurs 0.
INCLUDE STRUCTURE XYZ.
DATA : END OF t_xyz.
This approach is useful when you need a number of internal tables with same structure.
Hope this helps..
Regards,
Shashank
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.