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

Change from screen processing to list procesing

Former Member
0 Likes
381

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

1 ACCEPTED SOLUTION
Read only

LucianoBentiveg
Active Contributor
0 Likes
346

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.

2 REPLIES 2
Read only

LucianoBentiveg
Active Contributor
0 Likes
347

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.

Read only

0 Likes
346

Thank you

It still doesn't´t work, but I have decided to show the list using an ALV, prettier and with more functionality.