DBA Data[Home] [Help]

APPS.OM_TAX_UTIL dependencies on FND_CURRENCIES

Line 103: l_precision fnd_currencies.precision%type;

99: l_currency_code VARCHAR2(30);
100: l_tax_code VARCHAR2(50);
101: l_header_org_id NUMBER;
102: l_conversion_rate NUMBER;
103: l_precision fnd_currencies.precision%type;
104: l_minimum_accountable_unit fnd_currencies.minimum_accountable_unit%type;
105: l_commitment_id oe_order_lines.commitment_id%type;
106: l_cust_trx_type_id ra_cust_trx_types_all.cust_Trx_type_id%type;
107: l_AR_Sys_Param_Rec ar_system_parameters_all%ROWTYPE;

Line 104: l_minimum_accountable_unit fnd_currencies.minimum_accountable_unit%type;

100: l_tax_code VARCHAR2(50);
101: l_header_org_id NUMBER;
102: l_conversion_rate NUMBER;
103: l_precision fnd_currencies.precision%type;
104: l_minimum_accountable_unit fnd_currencies.minimum_accountable_unit%type;
105: l_commitment_id oe_order_lines.commitment_id%type;
106: l_cust_trx_type_id ra_cust_trx_types_all.cust_Trx_type_id%type;
107: l_AR_Sys_Param_Rec ar_system_parameters_all%ROWTYPE;
108: l_product_type zx_product_types_def_v.classification_code%TYPE;

Line 244: from fnd_currencies c

240: select c.minimum_accountable_unit,
241: c.precision
242: into l_minimum_accountable_unit,
243: l_precision
244: from fnd_currencies c
245: where c.currency_code = l_currency_code;
246:
247: l_AR_Sys_Param_Rec := OE_Sys_Parameters_Pvt.Get_AR_Sys_Params;
248: