Files
_resources/it114105/itp4512/Lab08/Z_08_FM_DIVIDE.abap
louiscklaw 04dbefcbaf update,
2025-02-01 01:58:47 +08:00

28 lines
892 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_08_FM_DIVIDE *
*& *
*&---------------------------------------------------------------------*
*& *
*& *
*&---------------------------------------------------------------------*
REPORT Z_08_FM_DIVIDE
PARAMETER NUMBER1 TYPE I.
PARAMETER NUMBER2 TYPE I.
DATA RESULT TYPE F.
DATA P_RESULT TYPE P DECIMALS 2.
IF NUMBER2 = 0.
MESSAGE I004(Z_MESSAGE_B).
ELSE.
CALL FUNCTION 'Z_FM_DIVIDE_B'
EXPORTING
N1 = NUMBER1
N2 = NUMBER2
IMPORTING
R1 = REUSLT.
MOVE RESULT TO P_RESULT.
WRITE: / 'Result:', P_RESULT.
ENDIF.