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

MODULEPOOL_tabstrip-TABLECONTROL

Former Member
0 Likes
287

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

1 REPLY 1
Read only

Former Member
0 Likes
261

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.