RT_DFLT_VW_SF(SQL View) |
Index Back |
---|---|
Currency Exchange Rates |
select a.from_cur, a.to_cur, a.rt_type, a.effdt, a.rate_mult, a.rate_div from PS_RT_DFLT_VW a where a.effdt = (select max(b.effdt) from PS_RT_DFLT_VW b where b.effdt <= %currentdatein and a.from_cur = b.from_cur and a.to_cur = b.to_cur and a.rt_type = b.rt_type) |
# | PeopleSoft Field Name | PeopleSoft Field Type | Database Column Type | Description |
---|---|---|---|---|
1 | ORIGNL_CURRENCY_CD | Character(3) | VARCHAR2(3) NOT NULL | Currency Code |
2 | CURRENCY_CD | Character(3) | VARCHAR2(3) NOT NULL | Currency Code |
3 | CUR_RT_TYPE | Character(5) | VARCHAR2(5) NOT NULL |
Currency Rate Type
Prompt Table: CUR_RT_TYPE_TBL |
4 | EFFDT | Date(10) | DATE NOT NULL | Effective Date |
5 | RATE_MULT | Signed Number(17,8) | DECIMAL(15,8) NOT NULL | Rate Multiplier |
6 | RATE_DIV | Number(16,8) | DECIMAL(15,8) NOT NULL | Rate Divisor |