DBA Data[Home] [Help]

APPS.PAY_PYKRSSEL_XMLP_PKG dependencies on FND_CURRENCIES

Line 61: v_currency_code fnd_currencies.currency_code%type;

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

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

62: v_format_mask varchar2(100) := null;
63: v_field_length number(3) := 14;
64:
65: cursor currency_format_mask
66: (c_territory_code in fnd_currencies.issuing_territory_code%type) is
67: select currency_code, name
68: from fnd_currencies_vl
69: where issuing_territory_code = c_territory_code;
70:

Line 68: from fnd_currencies_vl

64:
65: cursor currency_format_mask
66: (c_territory_code in fnd_currencies.issuing_territory_code%type) is
67: select currency_code, name
68: from fnd_currencies_vl
69: where issuing_territory_code = c_territory_code;
70:
71: begin
72: open currency_format_mask (cf_legislation_code);