DBA Data[Home] [Help]

APPS.PAY_PYNZREC_XMLP_PKG dependencies on FND_CURRENCIES

Line 113: v_currency_code fnd_currencies.currency_code%type;

109: end;
110:
111: function cf_currency_format_maskformula(cf_legislation_code in varchar2) return varchar2 is
112:
113: v_currency_code fnd_currencies.currency_code%type;
114: v_format_mask varchar2(100) := null;
115: v_field_length number(3) := 15;
116:
117: cursor currency_format_mask

Line 118: (c_territory_code in fnd_currencies.issuing_territory_code%type) is

114: v_format_mask varchar2(100) := null;
115: v_field_length number(3) := 15;
116:
117: cursor currency_format_mask
118: (c_territory_code in fnd_currencies.issuing_territory_code%type) is
119: select currency_code
120: from fnd_currencies
121: where issuing_territory_code = c_territory_code;
122:

Line 120: from fnd_currencies

116:
117: cursor currency_format_mask
118: (c_territory_code in fnd_currencies.issuing_territory_code%type) is
119: select currency_code
120: from fnd_currencies
121: where issuing_territory_code = c_territory_code;
122:
123: begin
124: open currency_format_mask (cf_legislation_code);