Files
004_comission/_resources/it114105/itp4512/Lab05/Z_05_SELECT.abap
louiscklaw 6c60a73f30 update,
2025-01-31 19:15:17 +08:00

27 lines
949 B
ABAP
Raw 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_05_SELECT *
*& *
*&---------------------------------------------------------------------*
*& *
*& *
*&---------------------------------------------------------------------*
REPORT Z_05_SELECT
DATA WA TYPE ZCUST.
DATA ITAB TYPE TABLE OF ZCUST.
WRITE: /5(5) 'Cust ID',
20 'First Name',
40 'Last Name'.
60 'Sales Val'.
SELECT * FROM ZCUST INTO TABLE ITAB
WHERE VIP_FLAG <> 'X'
LOOP AT ITAB INTO WA.
WRITE: / WA-KUNNR UNDER 'Cust ID',
WA-FNAME UNDER 'First Name',
WA-LNAME UNDER 'Last Name',
WA-SALES_VAL UNDER 'Sales Val'.
ENDLOOP.