DBA Data[Home] [Help]

APPS.PQH_GSP_UTILITY dependencies on FND_CURRENCIES_VL

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

2352:
2353: End Get_Emp_Los;
2354:
2355: Function Get_Currency
2356: (P_Corrency_Code In Fnd_Currencies_Vl.Currency_Code%TYPE)
2357:
2358: Return Varchar2 is
2359:
2360: Cursor Currency is

Line 2362: from Fnd_Currencies_Vl

2358: Return Varchar2 is
2359:
2360: Cursor Currency is
2361: Select Name
2362: from Fnd_Currencies_Vl
2363: Where Currency_Code = P_Corrency_Code
2364: and Enabled_Flag = 'Y';
2365:
2366: P_Currency_name Fnd_Currencies_Vl.Name%TYPE := NULL;

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

2362: from Fnd_Currencies_Vl
2363: Where Currency_Code = P_Corrency_Code
2364: and Enabled_Flag = 'Y';
2365:
2366: P_Currency_name Fnd_Currencies_Vl.Name%TYPE := NULL;
2367: begin
2368:
2369: If P_Corrency_Code is Not Null then
2370: open Currency;