‎2008 Nov 07 6:06 AM
hai friends, i am srinivas.
actually my requirement is that i have created modulepool tabstrip control in that control ,i have put four tabs and i have inserted around 9 fields in the same custom table(that means infirst tab 2 fields &second tab 3fields etc.).
whenever i choose the save button the custom table should updated. and i have completed upto here.
now my problem is that inthat second tab i have inserted one table and put three fields to that table.
i have created those three fields in seperate structure and i have included that structure into the main customtable(that means to the 9 fields main table).
i don't know how to write the code for this table control.
<<Text removed by moderator>> thank u have a nice day.
byeee
Edited by: Matt on Nov 7, 2008 8:23 AM
‎2008 Nov 07 6:17 AM
Hi,
try like this..
write the select query in the PAI Mobule.
case ok_code.
when 'FILL'. ---> Function Code for the second tab.
select * into itab...
endcase.and in the Screen flow logic for that perticular screen(Table Control) write..
inPBO
loop at itab with control tc.
endloop.in PAI.
loop at itab.
endloop.