Code: Alles auswählen.
zcs_sbook-sbook-carrid
zcs_sbook-sbook-connid
zcs_sbook-ampel
Code: Alles auswählen.
data:
l_tab_sbook_x type standard table of zcs_sbook.
select * from sbook into table l_tab_sbook_x.
Code: Alles auswählen.
call function 'REUSE_ALV_GRID_DISPLAY'
exporting
i_structure_name = 'ZCS_SBOOK'
tables
t_outtab = l_tab_sbook_x
exceptions
program_error = 1
others = 2.
Code: Alles auswählen.
zcs_sbook-sbook-carrid
zcs_sbook_sbook-connid
zcs_sbook-ampel
Code: Alles auswählen.
zcs_sbook-sbook-carrid
zcs_sbook_sbook-connid
zcs_sbook-sbook-ampel
Code: Alles auswählen.
zcs_sbook-carrid
zcs_sbook-connid
zcs_sbook-ampel
Code: Alles auswählen.
types:
begin of t_mark,
mark type c,
end of t_mark,
begin of t_str_reservationx.
include structure zptb00_hreservat.
include type t_mark.
types:
end of t_str_reservationx.
Code: Alles auswählen.
types:
begin of sbook_x,
sbook_x type sbook,
ampel type char4,
end of sbook_x.
Du verwechselt da etwas:kl hat geschrieben:...Wenn ich jedoch obiges auf "modernere" Weise versuche, dann bekomme ich (unerwartet) wiederum verschiedene Ebenen:
...Code: Alles auswählen.
types: begin of sbook_x, sbook_x type sbook, ampel type char4, end of sbook_x.
Code: Alles auswählen.
types:
begin of t_str_reservationx.
include structure zptb00_hreservat.
types:
mark type c, "eine explizite Verwendung von INCLUDE TYPE ist nicht notwendig
end of t_str_reservationx.
Code: Alles auswählen.
types:
begin of sbook_x,
sbook_x type sbook,
ampel type char4,
end of sbook_x.