‎2007 Jul 16 2:12 PM
‎2007 Jul 16 2:21 PM
‎2007 Jul 16 2:22 PM
‎2007 Jul 16 2:36 PM
‎2007 Jul 16 2:22 PM
‎2007 Jul 16 3:32 PM
In the PAI section for another screen, you can call another screen number and display the text or you can popup the text in a window as done here..
This will call the PBO module of screen 601. In screen 601, there is no PAI so any keystroke simply returns them to the calling screen..
call screen 601
starting at 05 01
ending at 55 15.
module status_0601 output.
set pf-status '601'.
set titlebar '601'.
suppress dialog.
leave to list-processing and return to screen 0.
w-dynnr = '601'.
write:/ 'Sales',
12 'Sales',
19 'Avail',
44 'Open'.
write:/ 'Order',
12 'Line',
19 'Date',
45 'Qty'.
sort t_vbbe by vbeln descending posnr.
loop at t_vbbe.
write:/ t_vbbe-vbeln color col_heading intensified on,
t_vbbe-posnr,
t_vbbe-mbdat,
t_vbbe-omeng.
hide: t_vbbe-vbeln, t_vbbe-posnr, t_vbbe-etenr.
endloop.
clear t_vbbe.
leave screen.
endmodule. " STATUS_0601 OUTPUT
-Tim