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

Former Member
0 Likes
821

Hi

i have a strange problem, i have a custom transaction and a table control is there in that 10 rows are there,here i am uploading 100 records from a flat file but it is taking only 10 records at a time per 1 transaction but i want to upload all the 100 records ata time can anybody tell me is there any need to change table control attributes?

thanks and regards,

1 ACCEPTED SOLUTION
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
788

You mean that you are copying/pasting values from external to the table control? If so, then you will only be able to cut/paste to visible rows, if 10 are visible, then you can paste 10, if 20, then you can paste 20. It depends on how big the table control is, as well as your resolution. There is nothing that you can do to the table control to make it accept more rows than are visible. Of course you could write some custom code to handle the uploading.

Regards,

Rich Heilman

8 REPLIES 8
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
789

You mean that you are copying/pasting values from external to the table control? If so, then you will only be able to cut/paste to visible rows, if 10 are visible, then you can paste 10, if 20, then you can paste 20. It depends on how big the table control is, as well as your resolution. There is nothing that you can do to the table control to make it accept more rows than are visible. Of course you could write some custom code to handle the uploading.

Regards,

Rich Heilman

Read only

0 Likes
788

Hi

thanks for showing interest on this topic my requirement is i want to give Page up, next page,previous page, last page option to be provided how to do this one the table control? then if we place this controls is it possible to upload all the records at a time then how to give that above controls?

thanks and regards,

SAP-ABAP.

Read only

0 Likes
788

Hi

thanks for showing interest on this topic my requirement is i want to give Page up, next page,previous page, last page option to be provided how to do this one the table control? then if we place this controls is it possible to upload all the records at a time then how to give that above controls?

thanks and regards,

SAP-ABAP.

Read only

Former Member
0 Likes
788

Go to the transaction manually and check by clicking page down or scrolling the table control you can add more than 10 records.

If it is possible, u can try using BDC with handling page down option for every 10 records.

-Anu

Read only

Former Member
0 Likes
788

Hi,

its all depends on your Visible lines you set in the table control.

you can increase visible lines like this..

tc-lines = 100.

then 100 lines will be visble.

Regards

vijay

Read only

Former Member
0 Likes
788

hi,

In the table control you can only enter value in the visisble number of rows. as the visible no of rows in your case is 10, you can enter only 10 values at a time. You have to do page down to enter more values to the table control. However, lines field of table control gives the number of visible lines in table control. You can change it to 100 as per your requirement. This is the case when you are manually giving data in the table control. You can also pass the values in table control using BDC.

Regards,

Richa

Read only

former_member378318
Contributor
0 Likes
788

If its a custom transaction and control why are you bothering with entering the rows via dialog/screen control? Why not upload the flat file straight into the table control and then refresh the control?

Read only

0 Likes
788

any answers?