‎2007 Jun 26 2:36 AM
Hi Friends,
I have a requirement in module pool programming, I need to get two table controls in the same screen.
I have added the extra code in set in
MODULE status_0102 OUTPUT.
SET PF-STATUS 'xxxxxxxx'.
SET TITLEBAR 'TITLE_102'.
DESCRIBE TABLE lt_trans LINES fill.
tabctrl1-lines = fill.
ENDMODULE. " STATUS_0102 OUTPUT
I got the table control(I user table control wizard for both the table control) in the screen but in one table control the I am not getting the vertical scroll bar can any one tell me how to get the vertical scroll for the other table control.
I think the above code is reflecting for one table control only.
Thanx in advance,
Line
‎2007 Jun 26 2:53 AM
MODULE status_0102 OUTPUT.
* SET PF-STATUS 'xxxxxxxx'.
SET TITLEBAR 'TITLE_102'.
DESCRIBE TABLE lt_trans LINES fill.
tabctrl1-lines = fill.
ENDMODULE. " STATUS_0102 OUTPUTIn addition to that you need to add the lines for the 2nd table control also
describe table lt_trans2 lines fill2.
tabctrl2-lines = fill2.This should solve your problem
Reward usefull answers
Regards
Gopi
‎2007 Jun 26 2:53 AM
MODULE status_0102 OUTPUT.
* SET PF-STATUS 'xxxxxxxx'.
SET TITLEBAR 'TITLE_102'.
DESCRIBE TABLE lt_trans LINES fill.
tabctrl1-lines = fill.
ENDMODULE. " STATUS_0102 OUTPUTIn addition to that you need to add the lines for the 2nd table control also
describe table lt_trans2 lines fill2.
tabctrl2-lines = fill2.This should solve your problem
Reward usefull answers
Regards
Gopi
‎2007 Jun 26 3:11 AM