DBA Data[Home] [Help]

APPS.PAY_PAYKRSOE_XMLP_PKG dependencies on FND_CURRENCIES

Line 64: v_currency_code fnd_currencies.currency_code%type;

60: end;
61:
62: function cf_currency_format_maskformula(cf_legislation_code in varchar2) return varchar2 is
63:
64: v_currency_code fnd_currencies.currency_code%type;
65: v_format_mask varchar2(100) := null;
66: v_field_length number(3) := 14;
67:
68: cursor currency_format_mask

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

65: v_format_mask varchar2(100) := null;
66: v_field_length number(3) := 14;
67:
68: cursor currency_format_mask
69: (c_territory_code in fnd_currencies.issuing_territory_code%type) is
70: select currency_code
71: from fnd_currencies
72: where issuing_territory_code = c_territory_code;
73:

Line 71: from fnd_currencies

67:
68: cursor currency_format_mask
69: (c_territory_code in fnd_currencies.issuing_territory_code%type) is
70: select currency_code
71: from fnd_currencies
72: where issuing_territory_code = c_territory_code;
73:
74: begin
75: open currency_format_mask (cf_legislation_code);