top of page / line count

 

https://www.youtube.com/watch?v=EG-PvvFsUWc&list=PLmajIBPiks13buVb2PdFfnLV3fkJ-yliK


*&---------------------------------------------------------------------*

*& Report ZJI_REPORT
*&---------------------------------------------------------------------*
*&
*&---------------------------------------------------------------------*
REPORT ZJI_REPORT LINE-COUNT 15(2).
data lt_airlines type table of scarr.
data ls_airlines type scarr.

PARAMETERS carrid TYPE S_CARR_ID.

TOP-OF-PAGE.
write/50  'Top of Page' color 3.

INITIALIZATION.
carrid 'AA'.
write'INITIALIZATION'.

at SELECTION-SCREEN.
  write'at SELECTION-SCREEN !!!!   NO'.


  START-OF-SELECTION.
  write'START-OF-SELECTION'.
  SELECT *
  FROM SCARR
  into table lt_airlines.
  LOOP AT lt_airlines into ls_airlines..
    write/ ls_airlines-carrname.
  ENDLOOP.

  end-OF-SELECTION.
  write'end-OF-SELECTION'.

  end-of-page.
  write /40  'end-of-page' color 5.

Comments

Popular posts from this blog

sap abap import from excell to table (transparent table)

sap abap Import from excell to internal table that works 100%