Since the scrolled panel will have different column headings, it will be a different panel. If anyone uses TWS, the list of jobs displayed in option 5.3 is the type of thing I'm aiming for. The problem I'm having is getting the RIGHT command to actually do anything. If I use my own command such as SR (Scroll Right) then it works fine by simply setting the panel name in the panel definition -
)PROC
If (&zcmd = SL)
&zcmd = ' '
If (&zcmd = SR)
&xchgpan = TEXTSRCR
&zcmd = ' '
If (&zcmd = SL)
&zcmd = ' '
If (&zcmd = SR)
&xchgpan = TEXTSRCR
&zcmd = ' '
The TBDISPL service then uses the xchgpan variable to set the panel name. Although this works, I want the user to simply be able to use PF11 to scroll right, not have to remember a special command. The above code snippet was cribbed from the panel mentioned previously used by TWS, except that TWS uses RIGHT and LEFT instead of SR and SL, but I can't get that to work. If I do issue a RIGHT or LEFT I get the "RIGHT is not active" message.
Thanks