‎2008 Nov 07 9:22 AM
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.
‎2008 Nov 07 10:02 AM
Hi,
try this
wa_col TYPE cxtab_column.
LOOP AT tab1-cols INTO wa_col.
endloop.
It may help you.
Regards,
JP
‎2010 Dec 07 5:03 AM