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

Passing deep structure to a Form in program

Former Member
0 Likes
909

Hello,

I am modularizing my program. I want to pass a internal table to a form. The structure of internal table is a deep structure.

I am getting an syntax error if I pass it directly using 'Tables' clause.

Please advice.

Thanks and rgds,

Anand

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
598

pass it with using command with your table type

form xx using it_tab type ttab.

Hello,

I am modularizing my program. I want to pass a internal table to a form. The structure of internal table is a deep structure.

I am getting an syntax error if I pass it directly using 'Tables' clause.

Please advice.

Thanks and rgds,

Anand

2 REPLIES 2
Read only

Former Member
0 Likes
599

pass it with using command with your table type

form xx using it_tab type ttab.

Read only

Former Member
0 Likes
598

Other way: you can use memory to transfer data. As export,import