DBA Data[Home] [Help]

APPS.PQH_GSP_UTILITY dependencies on FND_CURRENCIES_VL

Line 2237: (P_Corrency_Code In Fnd_Currencies_Vl.Currency_Code%TYPE)

2233:
2234: End Get_Emp_Los;
2235:
2236: Function Get_Currency
2237: (P_Corrency_Code In Fnd_Currencies_Vl.Currency_Code%TYPE)
2238:
2239: Return Varchar2 is
2240:
2241: Cursor Currency is

Line 2243: from Fnd_Currencies_Vl

2239: Return Varchar2 is
2240:
2241: Cursor Currency is
2242: Select Name
2243: from Fnd_Currencies_Vl
2244: Where Currency_Code = P_Corrency_Code
2245: and Enabled_Flag = 'Y';
2246:
2247: P_Currency_name Fnd_Currencies_Vl.Name%TYPE := NULL;

Line 2247: P_Currency_name Fnd_Currencies_Vl.Name%TYPE := NULL;

2243: from Fnd_Currencies_Vl
2244: Where Currency_Code = P_Corrency_Code
2245: and Enabled_Flag = 'Y';
2246:
2247: P_Currency_name Fnd_Currencies_Vl.Name%TYPE := NULL;
2248: begin
2249:
2250: If P_Corrency_Code is Not Null then
2251: open Currency;