‎2007 Feb 07 10:16 AM
Hi All.
I am fasing an issue in module pool programming.
I designed a screen(0100).In that one I created a table control with name TC,for 5 fields from the program internal table.
while executing ,I want to give input to the table control.In that one only 8 records are showing.So i am able to give 8 records as input.
Actually I want enter up to 20 records as input.
How to get that multiple entries function gor that table controlls.
Can any body help me to solve this issue.
Thanks in advance.
Regards,
Eswar
‎2007 Feb 07 10:21 AM
In PBO write this coding.
<tablecontrolname>-lines = <tablecontrolname>-lines + 1.
‎2007 Feb 07 10:19 AM
In the screen painter,
double click on the table control and set the scrolling properties. Then you can see the page down and page up buttons.
Regards,
Ravi
‎2007 Feb 07 10:20 AM
hi venkat,
Check out this demo program and set the properties accordingly ..
<b>RSDEMO_TABLE_CONTROL</b>
‎2007 Feb 07 10:21 AM
Hello Venkat,
In the PBO of the screen, use this code.
DESCRIBE TABLE <b>IT_TC01</b> LINES <b>TC-LINES</b>.
Vasanth
‎2007 Feb 07 10:21 AM
In PBO write this coding.
<tablecontrolname>-lines = <tablecontrolname>-lines + 1.
‎2007 Feb 07 10:21 AM
Hi Venkat,
chk this DEMO program DEMO_DYNPRO_TABCONT_LOOP_AT,
add the lines in BOLD
MODULE STATUS_0100 OUTPUT.
SET PF-STATUS 'SCREEN_100'.
<b> DESCRIBE TABLE ITAB LINES LINES.
FLIGHTS-LINES = LINES.</b>
ENDMODULE.