‎2009 Feb 02 6:58 AM
Hi all,
I wanna display my report on next when my BEZEI_T gets changed. I used at-new command also .. but its not working.. and also i want that new bezei_t get stored in some variable and change the header of the report. Please guide me. My code is:
LOOP AT IT_FINAL.
AT NEW BEZEI_T.
new-page.
endat.
WRITE: / sy-uline,
IT_FINAL-name_full1,
50 IT_FINAL-STRAS,
100 IT_FINAL-NAME_FULL,
160 IT_FINAL-STCD2,
/ IT_FINAL-BEZEI_T,
50 IT_FINAL-CUS_ADD,
100 IT_FINAL-TELFX,
ENDLOOP.
Regards
Puneet
‎2009 Feb 02 7:14 AM
Try this...
LOOP AT IT_FINAL.
AT NEW BEZEI_T.
new-page.
WRITE: / sy-uline,
IT_FINAL-name_full1,
50 IT_FINAL-STRAS,
100 IT_FINAL-NAME_FULL,
160 IT_FINAL-STCD2,
/ IT_FINAL-BEZEI_T,
50 IT_FINAL-CUS_ADD,
100 IT_FINAL-TELFX,
endat.
ENDLOOP.Cheers,
Tatvagna.
‎2009 Feb 02 7:14 AM
Try this...
LOOP AT IT_FINAL.
AT NEW BEZEI_T.
new-page.
WRITE: / sy-uline,
IT_FINAL-name_full1,
50 IT_FINAL-STRAS,
100 IT_FINAL-NAME_FULL,
160 IT_FINAL-STCD2,
/ IT_FINAL-BEZEI_T,
50 IT_FINAL-CUS_ADD,
100 IT_FINAL-TELFX,
endat.
ENDLOOP.Cheers,
Tatvagna.
‎2009 Feb 02 7:25 AM
Thanks for ur reply but it is also not working... result is coming an astricks now.
Regards
Puneet