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

In tabstrip loop not executed

Former Member
0 Likes
339

hi Gurus,

I using tabstrip with two tabs on that two table control tab1 and tab2 respectivly ..In Tab2 i have inserted same data in row and save the data.when i click on save button then data not save.

I have to check by debugging i found that inserted data in internal table of table control has display but when i used loop at itab for save then loop not executed.

I didn't find why is happend this.

Even i have appeding this data in anothere internal table and again apply loop .same problem i hav facing.

Can any one suggest me how do this.

Best Regards

Pravin.

2 REPLIES 2
Read only

Former Member
0 Likes
309

Hi,

try this

wa_col TYPE cxtab_column.

LOOP AT tab1-cols INTO wa_col.

endloop.

It may help you.

Regards,

JP

Read only

Former Member
0 Likes
309

Thax to all

i have solved this problem.