abap_struc

Embed Size (px)

Citation preview

  • 7/23/2019 abap_struc

    1/1

    *&---------------------------------------------------------------------**& Report Z_STRUCT*&*&---------------------------------------------------------------------**&*&*&---------------------------------------------------------------------*

    REPORT Z_STRUCT.PARAMETERS: airline type string, fnumber type c LENGTH 3,fdate type d.types: begin of my_struct, aeroplane type string, flightno type c length 3, fldate type d, END OF my_struct. Data flight type my_struct. flight-aeroplane = airline. flight-flightno = fnumber. flight-fldate = fdate. write / : flight-aeroplane, flight-flightno, flight-fldate.