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

21 lines
805 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_02_FORMAT *
*& *
*&---------------------------------------------------------------------*
*& *
*& *
*&---------------------------------------------------------------------*
REPORT Z_02_FORMAT
DATA: f1(4) TYPE P VALUE 1234,
p TYPE I VALUE 5,
q TYPE I VALUE 8.
WRITE: / '----+----|----+--',
/ '12345678901234567'.
SKIP.
WRITE /(2) 'XYZ'.
WRITE /(4) 'XYZ'.
WRITE 'ABC'.
WRITE /5(4) f1.
WRITE AT /p(q) f1.