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

27 lines
735 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.

FUNCTION Z_YOURNAME_FN1.
*"----------------------------------------------------------------------
*"*"Local interface:
*" IMPORTING
*" REFERENCE(CURRENCY) TYPE S_CURRCODE
*" REFERENCE(EARNING) TYPE AWKGR
*" EXPORTING
*" REFERENCE(RESULT) TYPE AWKGR
*" EXCEPTIONS
*" NO_CURRENCY
*"----------------------------------------------------------------------
IF CURRENCY EQ 'USD'.
RESULT = '+7.8' * EARNING.
ELSEIF CURRENCY EQ 'EUR'.
    RESULT = '+8.4' * EARNING.
  ELSEIF CURRENCY EQ 'AUD'.
    RESULT = '+5.2' * EARNING.
  ELSEIF CURRENCY EQ 'SGD'.
    RESULT = '+5.6' * EARNING.
  ELSEIF CURRENCY EQ 'JPY'.
    RESULT = '+0.07' * EARNING.
  ELSE.
    RAISE NO_CURRENCY.
  ENDIF.
ENDFUNCTION.