博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Convert From One Currency to Another
阅读量:6162 次
发布时间:2019-06-21

本文共 976 字,大约阅读时间需要 3 分钟。

The function is ConvertCurrency to convert currency from US dollar to any other currency on the PS_RT_RATE_TBL .
ConvertCurrency(amt, currency_cd, exchng_to_currency, exchng_rt_type, effdt, converted_amt [, error_process [, round] [, rt_index]])
The result of your conversion is placed in converted_amt. ConvertCurrency returns a Boolean value where True means a conversion rate was found and converted_amt calculated, and False means a conversion rate was not found and a value of one (1) was used.

 

Here is a sample code on how to use it:

/*get the max effective date from PS_RT_RATE_TBL to use in the function*/
 SQLExec
(
"select %dateout(max(effdt)) from PS_RT_RATE_TBL where from_cur = :1 and to_cur = 'USD' and rt_type = :2", &TXN_CURRENCY_CD, &rt_type, &effdt
);
               
If ConvertCurrency
(&AMOUNT, &TXN_CURRENCY_CD,
"USD", &rt_type, &effdt, &AMOUNT_CONVERTED,
"I"
) Then
                  &AMOUNT = &AMOUNT_CONVERTED;
               End-
If;

转载于:https://www.cnblogs.com/GoDevil/archive/2008/08/08/1263733.html

你可能感兴趣的文章
RecycleView设置顶部分割线(记录一个坑)
查看>>
汉字转拼音 (转)
查看>>
会计基础_001
查看>>
小程序: 查看正在写的页面
查看>>
Jenkins持续集成环境部署
查看>>
MWeb 1.4 新功能介绍二:静态博客功能增强
查看>>
预处理、const与sizeof相关面试题
查看>>
爬虫豆瓣top250项目-开发文档
查看>>
有趣的数学书籍
查看>>
teamviewer 卸载干净
查看>>
eclipse的maven、Scala环境搭建
查看>>
架构师之路(一)- 什么是软件架构
查看>>
USACO 土地购买
查看>>
【原创】远景能源面试--一面
查看>>
B1010.一元多项式求导(25)
查看>>
10、程序员和编译器之间的关系
查看>>
配置 RAILS FOR JRUBY1.7.4
查看>>
AndroidStudio中导入SlidingMenu报错解决方案
查看>>
修改GRUB2背景图片
查看>>
Ajax异步
查看>>