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

Report page-breaks

marcela_martinez
Participant
0 Likes
611

Hi everybody,

I'm working in a Z payment report where I have to show in a new page each payment. I have to show payment number and other information which deppends on the payment at header page. For this I'm using TOP_OF_PAGE event and a global structure where I'm filling this information when lopping the internal table.

My problem is that when I execute the report I don't see the page-breaks at screen. I'm doing something like this:

LOOP AT internal_table. Fill general structure for top_of_page event AT NEW <field>. NEW-PAGE. ENDAT. ENDLOOP.

I have checked at the following thread but it didn't help me.

Could you help me to solve this please? I also tried using AT END and ON CHANGE OF instead of AT NEW.

Thanks & Regards,

MM.

1 ACCEPTED SOLUTION
Read only

former_member194669
Active Contributor
0 Likes
580

do u have the following statments in your code


report  yXXXXXXX message-id yXXX
        no standard page heading
        line-size 132   "<<<<
        line-count 65.  "<<<<

2 REPLIES 2
Read only

former_member194669
Active Contributor
0 Likes
581

do u have the following statments in your code


report  yXXXXXXX message-id yXXX
        no standard page heading
        line-size 132   "<<<<
        line-count 65.  "<<<<

Read only

0 Likes
580

Thank you a®s!!!

I feel so silly... but I didn't work with WRITE reports since ALV appeared.

Kind regards,

MMP.