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

21 lines
821 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_LAB3_BUGS *
*& *
*&---------------------------------------------------------------------*
*& *
*& *
*&---------------------------------------------------------------------*
REPORT Z_LAB3_BUGS
DATA: price1(4) TYPE p VALUE '5678.9',
pos TYPE i VALUE 5,
len TYPE i VALUE 8.
WRITE: / '----+----1----+--',
/ '12345678901234567'.
SKIP.
WRITE /(1) 'Accounting'.
WRITE /(5) 'HR'.
WRITE / 'Management'.
WRITE /2(2) price1.
WRITE AT /5(len) price1.
ULINE /(11).