Code: Alles auswählen.
PARAMETERS: huid TYPE char20. "muss mit führenden Nullen eingegeben werden.
TABLES: zewmhkd, "Kopfdaten
zewmhpd. "Positionsdaten
DATA tab1 TYPE TABLE OF zewmhkd WITH EMPTY KEY.
DATA tab2 TYPE TABLE OF zewmhpd WITH EMPTY KEY.
SELECT *
FROM zewmhkd
WHERE huident = @huid
INTO TABLE @tab1.
SELECT *
FROM zewmhpd
WHERE huident = @huid
INTO TABLE @tab2.
cl_demo_output=>display( tab1 ).
cl_demo_output=>display( tab2 ).
Folgende Benutzer bedankten sich beim Autor sap_enthusiast für den Beitrag:
Nion
Oha, das ist ziemlich umfangreich :Dsap_enthusiast hat geschrieben: ↑31.03.2023 09:00Moin
feel free to chose :)
https://www.berater-wiki.de/Splitting_Container
https://codezentrale.de/tag/cl_gui_splitter_container/
https://blogs.sap.com/2012/05/24/displa ... ng-ooabap/
https://tricktresor.de/blog/alv-grid-mit-splitter/
Grüße,
sapenthusiast
Code: Alles auswählen.
cl_demo_output=>write( tab1 ).
cl_demo_output=>write( tab2 ).
cl_demo_output=>display( ).
Fantastisch, so hab ich mir das vorgestellt :) vielen Dankwhaslbeck hat geschrieben: ↑31.03.2023 10:32Hallo,
wenn du bei CL_DEMO_OUTPUT bleiben willst, z.B. so:Siehe auch https://blogs.sap.com/2016/05/10/cldemo ... f-2-usage/Code: Alles auswählen.
cl_demo_output=>write( tab1 ). cl_demo_output=>write( tab2 ). cl_demo_output=>display( ).
hth,
Walter