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

veritcal scroll bar problem

Former Member
0 Likes
506

Hi,

I have created table control in modulepool programing,but when i run it im not getting veritcal scrollbar!

what should i do to enabel the veritcal scrollbar?

2.I wanna update the record in table control after displaying using display pushbutton ,but it's not updating again same records are coming !

3 I wanna c the next recorf and previous records in normal module pool program using next and prev push button ,whats d logic 4 that?

4.scripts are client dependent ,so how we transport scripts from one client to another client?

Thanks,

4 REPLIES 4
Read only

Former Member
0 Likes
480

in se51 goto the table control properties and check whether u have selected the check box of vertical as well as horizontal scroll bars.......

Read only

Former Member
0 Likes
480

Hi,

1.If your records are more than your rows display then scroll bar will appear.

2.I think you would have written your table control updation part under

PBO event.

You might have written updation part under PAI event but after it will go againg

PBO part againg same seletion & updation is happening to internal table.

So you have to restrict this selection by some condition.

3. take the displayed record count and from next record onwards you have to

select for next button .For previous record count - 1.

Pls. mark if useful.

Read only

Former Member
0 Likes
480

Hi,

Following are the answers to most of your queries:

1. use statement tblcntrl-lines = tblcntrl-lines + no. of lines in your itab

in PBO

where tblcntrl is name of your table control and lines is the property of that TC which holds the total count of records in the TC.

2. To update record in TC you have to use one module inside the loop statement

of TC in PAI. In that module you have to modify your internal table which indeed hets reflected in the TC.

3. This question is answered by one of the forum member.

4. Transporting script is as normal as you do woth other onjects. But while transporting Standard text use program RSTXTRAN.

Reward points if answer is useful.

-B S B

Read only

Former Member
0 Likes
480

Thnks a lot!