Saturday, April 12, 2025

FROM SAPCODES : REPORT WITH TOP-OF -PAGE & END-OF-PAGE EVENTS*

 


REPORT  ZREP_001  no standard page heading line-count 20(2).

data : it_flight type table of sflight,

       wa_flight type sflight.

select-options : s_carrid for wa_flight-carrid.

*select-options : s_carrid for wa_flight-carrid no-extension.

* select-options : s_carrid for wa_flight-carrid no intervals.

initialization.

s_carrid-low = ‘AA’.

s_carrid-high = ‘ZZ’.

append s_carrid.

start-of-selection.

select * from sflight into table it_flight where carrid in s_carrid.

end-of-selection.

loop at it_flight into wa_flight.

write : /1 wa_flight-carrid,

          10 wa_flight-connid,

          30  wa_flight-fldate,

          50 wa_flight-price left-justified.

endloop.

top-of-page.

write : ‘Carrid’, 10 ‘connid’, 30 ‘flight date’ , 50 ‘ticket price’..

uline.

end-of-page.

write : ‘jet airline flight details for the month december’.

No comments:

Post a Comment

Dbf не чіпаємо, маніпуляції тільки з itab

 1. Dbf tab містить ВСІ 67-68 полів,  Ztab - тільки ті 25-45 полів що використовуються в продовженні ресурсів, їх і копіюємо Dbf не редагува...