DBA Data[Home] [Help]

APPS.PAY_PYSG8SAD_XMLP_PKG dependencies on FND_CURRENCIES

Line 75: v_currency_code fnd_currencies.currency_code%type;

71: End;
72:
73: function cf_currency_format_maskformula(cf_legislation_code in varchar2) return varchar2 is
74:
75: v_currency_code fnd_currencies.currency_code%type;
76: v_format_mask varchar2(100) := null;
77: v_field_length number(3) := 15;
78:
79: cursor currency_format_mask

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

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

Line 82: from fnd_currencies

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