SCARR | Airline |
SPFLI | Flight |
SFLIGHT | Flight schedule (with flight date) |
STICKET | Flight Ticket |
And this is source:
*"* public components of class Y_R_EITAN_TEST_31_02_CL
*"* do not include other source files here!!!
PUBLIC SECTION.
TYPES:
BEGIN OF tp_airport_x .
TYPES: name TYPE sairport-name ,
time_zone TYPE sairport-time_zone .
TYPES: END OF tp_airport_x .
TYPES:
BEGIN OF tp_sbook_1 .
INCLUDE TYPE sbook AS sbook RENAMING WITH SUFFIX _sbook .
TYPES: END OF tp_sbook_1 .
TYPES:
tp_sbook_1_tab TYPE STANDARD TABLE OF tp_sbook_1 WITH NON-UNIQUE DEFAULT KEY .
TYPES:
BEGIN OF tp_sflight_1 .
INCLUDE TYPE sflight AS sflight RENAMING WITH SUFFIX _sflight .
TYPES: it_sbook_1 TYPE tp_sbook_1_tab .
TYPES: END OF tp_sflight_1 .
TYPES:
tp_sflight_1_tab TYPE STANDARD TABLE OF tp_sflight_1 WITH NON-UNIQUE DEFAULT KEY .
TYPES:
BEGIN OF tp_spfli_1 .
INCLUDE TYPE spfli AS spfli RENAMING WITH SUFFIX _spfli .
INCLUDE TYPE tp_airport_x AS fr_airport RENAMING WITH SUFFIX _fr .
INCLUDE TYPE tp_airport_x AS to_airport RENAMING WITH SUFFIX _to .
TYPES: it_sflight_1 TYPE tp_sflight_1_tab .
TYPES: END OF tp_spfli_1 .
TYPES:
tp_spfli_1_tab TYPE STANDARD TABLE OF tp_spfli_1 WITH NON-UNIQUE DEFAULT KEY .
TYPES:
BEGIN OF tp_scarr_x.
TYPES: carrid TYPE scarr-carrid ,
carrname TYPE scarr-carrname ,
currcode TYPE scarr-currcode .
TYPES: END OF tp_scarr_x .
TYPES:
BEGIN OF tp_scarr_1.
INCLUDE TYPE tp_scarr_x AS scarr RENAMING WITH SUFFIX _scarr .
TYPES: it_spfli_1 TYPE tp_spfli_1_tab .
TYPES: END OF tp_scarr_1 .
TYPES:
tp_scarr_1_tab TYPE STANDARD TABLE OF tp_scarr_1 WITH NON-UNIQUE DEFAULT KEY .
TYPES:
BEGIN OF tp_flat_1 .
INCLUDE TYPE tp_scarr_x AS scarr RENAMING WITH SUFFIX _scarr .
INCLUDE TYPE spfli AS spfli RENAMING WITH SUFFIX _spfli .
INCLUDE TYPE sflight AS sflight RENAMING WITH SUFFIX _sflight .
TYPES: END OF tp_flat_1 .
TYPES:
tp_flat_1_tab TYPE STANDARD TABLE OF tp_flat_1 .
TYPES:
r_carrid TYPE RANGE OF sflight-carrid .
TYPES:
r_connid TYPE RANGE OF sflight-connid .
TYPES:
r_fldate TYPE RANGE OF sflight-fldate .
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
5 | |
4 | |
4 | |
4 | |
3 | |
3 | |
2 | |
2 | |
2 | |
2 |