‎2007 Jan 25 5:02 AM
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,
‎2007 Jan 25 5:12 AM
in se51 goto the table control properties and check whether u have selected the check box of vertical as well as horizontal scroll bars.......
‎2007 Jan 25 8:09 AM
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.
‎2007 Jan 25 8:23 AM
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
‎2007 Feb 24 9:54 AM