DATA: it_spfli TYPE STANDARD TABLE OF spfli. * Daten holen SELECT * FROM spfli INTO TABLE it_spfli. * Daten ausgeben LOOP AT it_spfli ASSIGNING FIELD-SYMBOL(<fs_spfli>). WRITE: / <fs_spfli>-carrid, <fs_spfli>-connid, <fs_spfli>-airpfrom, <fs_spfli>-airpto. ENDLOOP. * Datensätze für 'LH' zählen DATA(lv_cnt_lh) = REDUCE i( INIT x = 0 FOR <l> IN it_spfli WHERE ( carrid = 'LH' ) NEXT x = x + 1 ). * Anzahl 'LH'-Flüge ausgeben WRITE: / '--> Anzahl LH-Flüge:', lv_cnt_lh.
Kategorien
-
Neueste Beiträge
- [SAP] Mailversand einrichten
- [SAP EWM] SAP EWM and SAP ERP integration via CIF
- [SAP] Nutzung der ALV-Anzeige im MM-Reporting
- [Raspberry Pi 4] Raspberry Pi als DNS Server
- [Raspberry Pi] SSH aktivieren
- [Raspberry Pi] Bootoptionen in der config.txt
- [Raspberry Pi 4] Bessere Youtube-Videoperformance in Google Chrome
- [Raspberry Pi 4] Direkt von SSD booten (ohne SD-Karte)
- [ABAP] Fixkontentabelle (T030) auslesen
- [SAPUI5] SAPUI5 Entwicklung mit SAP Business Application Studio (BAS)