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
Former Member
0 Likes

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

Former Member
0 Likes

Hi All,

Thanks for the prompt reply. I am also having the same concept. But this question was asked in IBM Interview last week In Pune and the interviewer told that this is possible through SE11. so I ask the same .

Thanks once again.

With regards

Vinayak

Former Member
0 Likes

Hi Vinayak,

As per the forum etiquette,u may pls award points

to helpful answers by clicking the STAR

on the left of that reply.

Cheers

Sunny