每日一函式(2007/11/06)
函式:CF_UT_UNIT_CONVERSION
說明:不同單位之間的數量轉換[@more@]例子:
call function 'CF_UT_UNIT_CONVERSION'
exporting
matnr_imp = p_matnr "物料碼 (可選)
meins_imp = p_meins "物料基本單位(可選)
unit_new_imp = to_unit "目標單位
unit_old_imp = From_unit "原單位
value_old_imp = p_qty "轉換數量
importing
value_new_exp = out_pty. "目標單位數量
.
if sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
endif.
說明:不同單位之間的數量轉換[@more@]例子:
call function 'CF_UT_UNIT_CONVERSION'
exporting
matnr_imp = p_matnr "物料碼 (可選)
meins_imp = p_meins "物料基本單位(可選)
unit_new_imp = to_unit "目標單位
unit_old_imp = From_unit "原單位
value_old_imp = p_qty "轉換數量
importing
value_new_exp = out_pty. "目標單位數量
.
if sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
endif.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9437124/viewspace-989025/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 每日一函式(2007/12/11)函式
- 每日一函式(2007/12/07)函式
- 每日一函式(2007/12/05)函式
- 每日一函式(2007/12/08)函式
- 每日一函式(2007/12/09)函式
- 每日一函式(2007/12/10)函式
- 每日一函式(2007/12/12)函式
- 每日一函式(2007/10/24)函式
- 每日一函式(2007/10/13)函式
- 【每日函式】每日函式(2021.08.06)函式
- 每日一函式講解(2007-08-15)函式
- 每日一函式講解(2007-08-13)函式
- 每日一函式講解(2007-08-14)函式
- 每日一函式講解(2007-08-12)函式
- 每日一函式講解(2007-08-16)函式
- Python函式每日一講11 - isinstance()Python函式
- PHP 每日一函式 — 字串函式 crypt ()PHP函式字串
- PHP 每日一函式 — 字串函式 chr ()PHP函式字串
- 每日一個 Golang Packages 06/11 syncGolangPackage
- PHP 每日一函式 — 字串函式 addcslashes ()PHP函式字串
- PHP 每日一函式 — 字串函式 addslashes ()PHP函式字串
- python函式每日一講 - int()函式Python函式
- python函式每日一講 - int()函式Python函式
- python函式每日一講 - eval函式Python函式
- python函式每日一講 - id函式Python函式
- python函式每日一講 - dir()函式Python函式
- PHP 每日一函式 — 字串函式 count_chars ()PHP函式字串
- PHP 每日一函式 — 字串函式 crc32 ()PHP函式字串
- PHP 每日一函式 — 字串函式 chunk_split ()PHP函式字串
- python函式每日一講 - enumerate函式Python函式
- 【每日函式】每日函式(2021.08.05)函式
- PHP 每日一函式 — 字串函式 bin2hex ()PHP函式字串
- python函式每日一講 - exec執行函式Python函式
- 【每日函式】每日函式(2021.08.08)函式
- 【每日函式】每日函式(2021.08.09)函式
- 【每日函式】每日函式(2021.08.10)函式
- 【每日函式】每日函式(2021.08.14)函式
- 【每日函式】每日函式(2021.08.16)函式