‎2006 Jun 21 9:41 AM
Hello,
I am working in a program where I have changed from screen processing to list processing, in the PBO of screen '0600', that way:
module screen_0600 output.
SET PF-STATUS '0600'.
<b> LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0.</b>
perform header.
perform body.
<b> LEAVE SCREEN.</b>
endmodule. " STATUS_0600 OUTPUT
My problem is that there is no resizing of the window where the list is displayed, and I don`t know to change the <b>LINE-SIZE</b>.
Any Ideas??
Thanks in advance
‎2006 Jun 21 2:40 PM
Try this:
LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0.
SET PF-STATUS '0210'.
SET TITLEBAR '210'.
NEW-PAGE NO-TITLE NO-HEADING LINE-COUNT 0 LINE-SIZE 132.
Don't forget rewards points.
Regards.
‎2006 Jun 21 2:40 PM
Try this:
LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0.
SET PF-STATUS '0210'.
SET TITLEBAR '210'.
NEW-PAGE NO-TITLE NO-HEADING LINE-COUNT 0 LINE-SIZE 132.
Don't forget rewards points.
Regards.
‎2006 Jun 22 11:53 AM
Thank you
It still doesn't´t work, but I have decided to show the list using an ALV, prettier and with more functionality.