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

module pool

Former Member
0 Likes
773

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
629

In PBO write this coding.

<tablecontrolname>-lines = <tablecontrolname>-lines + 1.

5 REPLIES 5
Read only

Former Member
0 Likes
629

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

Read only

Former Member
0 Likes
629

hi venkat,

Check out this demo program and set the properties accordingly ..

<b>RSDEMO_TABLE_CONTROL</b>

Read only

Former Member
0 Likes
629

Hello Venkat,

In the PBO of the screen, use this code.

DESCRIBE TABLE <b>IT_TC01</b> LINES <b>TC-LINES</b>.

Vasanth

Read only

Former Member
0 Likes
630

In PBO write this coding.

<tablecontrolname>-lines = <tablecontrolname>-lines + 1.

Read only

Former Member
0 Likes
629

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.