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

Table control Problerm

Former Member
0 Likes
307

Hi

Iam using 2 screens like 100 and 600. in two screen im using table controls. in the 100 screen im enetering one vbeln value after the im clicking "Enter" button then it has call 600 screen. in the 600 screen table control im enter some data but that data is not updating in the correspond table control internal table. iam using this statement MODIFYitab2 INDEX tab_control2-current_line to update the internval with the values whatever i entered in the table control. but this is not working. so i used append and clear statements instead of this then it's updating that internal table. but the scross bar is not working properly when i dragged that one it's showing only the last record instead of previous records. and also that tabel control is not allowing me to enter more values into that.

Actally im doing like this.

The below one is 100 screen it's updating the correspond tablecontrol tb1 internal table.

LOOP AT IT_CASE.

FIELD itab1-CASE MODULE CHECK_CASE ON input

ENDLOOP.

module check_Case.

itab1-case = v_case.

itab1-mat = v_mat.

modify itab1 index tb1-current_line.

call screen 600.

endmodule.

The below one is 600 screen it's not updating the correspond tablecontrol tb1 internal table.

loop at itab2.

module update_itab2.

endloop.

module update_itab2.

modify itab2 index tb2-current_line.

endmodule.

can you pls any one suggest what to do. and how can we implent scroll bar to allow the number of entries more

1 REPLY 1
Read only

Former Member
0 Likes
290

Hi,

Use tablecontrolname-LINES property to increase scroll number

for example

giving

tablecontrolname-LINES = 100.

this will increase total no. rows of table control is 100

Regards

Siva.