DBA Data[Home] [Help]

PACKAGE: APPS.FII_CURRENCY_API

Source


1 PACKAGE FII_CURRENCY_API  AS
2 /* $Header: FIICAC1S.pls 120.3 2005/10/30 05:07:43 appldev noship $  */
3 
4 -- -------------------------------------------------------------------
5 -- Name: get_display_name
6 -- Desc: Returns the display name of a currency code in a specific format.
7 --       Info is cached after initial access
8 -- Output: Display name of a given currency at the given rate type. e.g. given USD
9 --         as the currency code and Corporate Rate as the rate type, it returns
10 --         USD at Corporate Rate
11 -- Error: If any sql errors occurs, an exception is raised.
12 -- --------------------------------------------------------------------
13 Function get_display_name(currency_code varchar2, rate varchar2) return varchar2;
14 Function get_prim_curr_name return varchar2;
15 Function get_sec_curr_name return varchar2;
16 Function get_annualized_curr_name return varchar2; --enh#3659270
17 
18 PRAGMA RESTRICT_REFERENCES (get_display_name, WNDS);
19 
20 end;