DBA Data[Home] [Help]

APPS.AP_WEB_DB_COUNTRY_PKG dependencies on FND_TERRITORIES_VL

Line 14: SUBTYPE terr_shortName IS FND_TERRITORIES_VL.territory_short_name%TYPE;

10: SUBTYPE curr_deriveEffective IS FND_CURRENCIES_VL.derive_effective%TYPE;
11: SUBTYPE curr_deriveType IS FND_CURRENCIES_VL.derive_type%TYPE;
12: SUBTYPE curr_deriveFactor IS FND_CURRENCIES_VL.derive_factor%TYPE;
13:
14: SUBTYPE terr_shortName IS FND_TERRITORIES_VL.territory_short_name%TYPE;
15: SUBTYPE terr_code IS FND_TERRITORIES_VL.territory_code%TYPE;
16: ---------------------------------------------------------------------------------------------------
17:
18:

Line 15: SUBTYPE terr_code IS FND_TERRITORIES_VL.territory_code%TYPE;

11: SUBTYPE curr_deriveType IS FND_CURRENCIES_VL.derive_type%TYPE;
12: SUBTYPE curr_deriveFactor IS FND_CURRENCIES_VL.derive_factor%TYPE;
13:
14: SUBTYPE terr_shortName IS FND_TERRITORIES_VL.territory_short_name%TYPE;
15: SUBTYPE terr_code IS FND_TERRITORIES_VL.territory_code%TYPE;
16: ---------------------------------------------------------------------------------------------------
17:
18:
19: TYPE CurrencyCodeCursor IS REF CURSOR;

Line 25: code FND_TERRITORIES_VL.TERRITORY_CODE%TYPE,

21: TYPE CurrencyInfoCursor IS REF CURSOR;
22: TYPE CurrencyPrecisionCursor IS REF CURSOR;
23:
24: TYPE country IS RECORD (
25: code FND_TERRITORIES_VL.TERRITORY_CODE%TYPE,
26: name FND_TERRITORIES_VL.TERRITORY_SHORT_NAME%TYPE);
27:
28: TYPE countries IS TABLE OF country
29: INDEX BY BINARY_INTEGER;

Line 26: name FND_TERRITORIES_VL.TERRITORY_SHORT_NAME%TYPE);

22: TYPE CurrencyPrecisionCursor IS REF CURSOR;
23:
24: TYPE country IS RECORD (
25: code FND_TERRITORIES_VL.TERRITORY_CODE%TYPE,
26: name FND_TERRITORIES_VL.TERRITORY_SHORT_NAME%TYPE);
27:
28: TYPE countries IS TABLE OF country
29: INDEX BY BINARY_INTEGER;
30: