DBA Data[Home] [Help]

APPS.PAY_PAYSG21A_XMLP_PKG dependencies on FND_CURRENCIES

Line 72: v_currency_code fnd_currencies.currency_code%type;

68: end;
69:
70: function cf_currency_format_maskformula(cf_legislation_code in varchar2) return varchar2 is
71:
72: v_currency_code fnd_currencies.currency_code%type;
73: v_format_mask varchar2(100) := null;
74: v_field_length number(3) := 14;
75:
76: cursor currency_format_mask

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

73: v_format_mask varchar2(100) := null;
74: v_field_length number(3) := 14;
75:
76: cursor currency_format_mask
77: (c_territory_code in fnd_currencies.issuing_territory_code%type) is
78: select currency_code
79: from fnd_currencies
80: where issuing_territory_code = c_territory_code;
81:

Line 79: from fnd_currencies

75:
76: cursor currency_format_mask
77: (c_territory_code in fnd_currencies.issuing_territory_code%type) is
78: select currency_code
79: from fnd_currencies
80: where issuing_territory_code = c_territory_code;
81:
82: begin
83: open currency_format_mask (cf_legislation_code);