2008 Aug 13 7:30 PM
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.
2008 Aug 13 7:39 PM
do u have the following statments in your code
report yXXXXXXX message-id yXXX
no standard page heading
line-size 132 "<<<<
line-count 65. "<<<<
a®
2008 Aug 13 7:39 PM
do u have the following statments in your code
report yXXXXXXX message-id yXXX
no standard page heading
line-size 132 "<<<<
line-count 65. "<<<<
a®
2008 Aug 13 7:45 PM
Thank you a®s!!!
I feel so silly... but I didn't work with WRITE reports since ALV appeared.
Kind regards,
MMP.