Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Smartforms and Internal Tables

Former Member
0 Likes
352

I am trying to create a smartform. I have an internal table defined within my ABAP program that I would like to pass to my smartform. The itab is NOT modeled after a database table. How do I declare the itab in my smartform interface in order to be able to pass it correctly?

Thanks!

Mary

2 REPLIES 2
Read only

Former Member
0 Likes
329

Hi Mary,

You need to create a structure of your internal table type in se11 and then declare an internal table of that type in your smartform.

Hope this should solve your purpose.

Regards,

Vinod.

Read only

Former Member
0 Likes
329

Hi

Create a structure and table type in SE11...

Then In the form interface of the smartforms..

In the importing parameters

ITAB TYPE 'Your table type name'.

OR

Create a structure

In the form interface of the smartforms..

In the tables tab

ITAB LIKE 'Your structure name'.

Thanks,

Naren