Files
louiscklaw 6c60a73f30 update,
2025-01-31 19:15:17 +08:00

22 lines
837 B
ABAP
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

*&---------------------------------------------------------------------*
*& Report  Z_07_MESSAGE *
*& *
*&---------------------------------------------------------------------*
*& *
*& *
*&---------------------------------------------------------------------*
REPORT Z_07_MESSAGE MESSAGE-ID Z_MESSAGE_B
TABLES SPFLI.
SELECT-OPTIONS S_CARRID FOR SPFLI-CARRID.
SELECT * FROM SPFLI WHERE CARRID IN S_CARRID.
WRITE: / SPFLI-CARRID, SPFLI-CONNID, SPFLI-CITYFROM, SPFLI-CITYTO.
ENDSELECT.
IF SY-SUBRC = 4.
MESSAGE I002 WITH 'SPFLI'.
ELSEIF SY-SUBRC <> 0.
MESSAGE I000.
ENDIF.