DBA Data[Home] [Help]

APPS.PAY_PAYCNSOE_XMLP_PKG dependencies on FND_CURRENCIES

Line 55: v_currency_code fnd_currencies.currency_code%type;

51: end;
52:
53: function cf_currency_format_maskformula(cf_legislation_code in varchar2) return varchar2 is
54:
55: v_currency_code fnd_currencies.currency_code%type;
56: v_format_mask varchar2(100) := null;
57: v_field_length number(3) := 14;
58:
59: cursor currency_format_mask

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

56: v_format_mask varchar2(100) := null;
57: v_field_length number(3) := 14;
58:
59: cursor currency_format_mask
60: (c_territory_code in fnd_currencies.issuing_territory_code%type) is
61: select currency_code
62: from fnd_currencies
63: where issuing_territory_code = c_territory_code;
64:

Line 62: from fnd_currencies

58:
59: cursor currency_format_mask
60: (c_territory_code in fnd_currencies.issuing_territory_code%type) is
61: select currency_code
62: from fnd_currencies
63: where issuing_territory_code = c_territory_code;
64:
65: begin
66: open currency_format_mask (cf_legislation_code);