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

18 lines
836 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_BALANCE *
*& *
*&---------------------------------------------------------------------*
*& *
*& *
*&---------------------------------------------------------------------*
REPORT Z_LAB3_BALANCE
WRITE (22) 'Trial Balance' CENTERED.
ULINE /(22).
WRITE: /(10) 'Accounts', (5) 'Dr', (5) 'Cr'.
WRITE: /'Cash', '1000' UNDER 'Dr'.
WRITE: /'Payable', '1000' UNDER 'Cr'.
ULINE /(22).
WRITE: /'TOTAL', '1000' UNDER 'Dr', '1000' UNDER 'Cr'.
SKIP.
WRITE: /(22) SY-DATUM RIGHT-JUSTIFIED, 1 SY-UNAME.