Application Development 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: 

Report page-breaks

marcela_martinez
Participant
0 Kudos
89

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

former_member194669
Active Contributor
0 Kudos
58

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

former_member194669
Active Contributor
0 Kudos
59

do u have the following statments in your code


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

0 Kudos
58

Thank you a®s!!!

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

Kind regards,

MMP.