DBA Data[Home] [Help]

APPS.ARP_ETAX_UTIL dependencies on STANDARD

Line 206: arp_standard.profile.user_id,

202: )
203: SELECT
204: ra_customer_trx_lines_s.nextval,
205: sysdate,
206: arp_standard.profile.user_id,
207: sysdate,
208: arp_standard.profile.user_id,
209: arp_standard.profile.user_id,
210: arp_standard.profile.program_id,

Line 208: arp_standard.profile.user_id,

204: ra_customer_trx_lines_s.nextval,
205: sysdate,
206: arp_standard.profile.user_id,
207: sysdate,
208: arp_standard.profile.user_id,
209: arp_standard.profile.user_id,
210: arp_standard.profile.program_id,
211: arp_standard.application_id,
212: zxt.trx_id,

Line 209: arp_standard.profile.user_id,

205: sysdate,
206: arp_standard.profile.user_id,
207: sysdate,
208: arp_standard.profile.user_id,
209: arp_standard.profile.user_id,
210: arp_standard.profile.program_id,
211: arp_standard.application_id,
212: zxt.trx_id,
213: zxt.tax_line_number,

Line 210: arp_standard.profile.program_id,

206: arp_standard.profile.user_id,
207: sysdate,
208: arp_standard.profile.user_id,
209: arp_standard.profile.user_id,
210: arp_standard.profile.program_id,
211: arp_standard.application_id,
212: zxt.trx_id,
213: zxt.tax_line_number,
214: arp_standard.sysparm.set_of_books_id,

Line 211: arp_standard.application_id,

207: sysdate,
208: arp_standard.profile.user_id,
209: arp_standard.profile.user_id,
210: arp_standard.profile.program_id,
211: arp_standard.application_id,
212: zxt.trx_id,
213: zxt.tax_line_number,
214: arp_standard.sysparm.set_of_books_id,
215: 'TAX',

Line 214: arp_standard.sysparm.set_of_books_id,

210: arp_standard.profile.program_id,
211: arp_standard.application_id,
212: zxt.trx_id,
213: zxt.tax_line_number,
214: arp_standard.sysparm.set_of_books_id,
215: 'TAX',
216: zxt.trx_line_id,
217: plin.default_ussgl_transaction_code,
218: NULL, -- request_id

Line 1339: if p_trx_currency_code = arp_standard.sysparm.tax_currency_code and p_autotax_flag in ( 'Y','U')

1335: END IF;
1336:
1337: l_rounding_rule := p_rounding_rule;
1338:
1339: if p_trx_currency_code = arp_standard.sysparm.tax_currency_code and p_autotax_flag in ( 'Y','U')
1340: THEN
1341:
1342: l_precision := least( p_precision, nvl(arp_standard.sysparm.tax_precision, p_precision) );
1343: l_min_acct_unit := greatest( nvl(p_min_acct_unit, arp_standard.sysparm.tax_minimum_accountable_unit),

Line 1342: l_precision := least( p_precision, nvl(arp_standard.sysparm.tax_precision, p_precision) );

1338:
1339: if p_trx_currency_code = arp_standard.sysparm.tax_currency_code and p_autotax_flag in ( 'Y','U')
1340: THEN
1341:
1342: l_precision := least( p_precision, nvl(arp_standard.sysparm.tax_precision, p_precision) );
1343: l_min_acct_unit := greatest( nvl(p_min_acct_unit, arp_standard.sysparm.tax_minimum_accountable_unit),
1344: nvl(arp_standard.sysparm.tax_minimum_accountable_unit, p_min_acct_unit));
1345:
1346: ELSE

Line 1343: l_min_acct_unit := greatest( nvl(p_min_acct_unit, arp_standard.sysparm.tax_minimum_accountable_unit),

1339: if p_trx_currency_code = arp_standard.sysparm.tax_currency_code and p_autotax_flag in ( 'Y','U')
1340: THEN
1341:
1342: l_precision := least( p_precision, nvl(arp_standard.sysparm.tax_precision, p_precision) );
1343: l_min_acct_unit := greatest( nvl(p_min_acct_unit, arp_standard.sysparm.tax_minimum_accountable_unit),
1344: nvl(arp_standard.sysparm.tax_minimum_accountable_unit, p_min_acct_unit));
1345:
1346: ELSE
1347:

Line 1344: nvl(arp_standard.sysparm.tax_minimum_accountable_unit, p_min_acct_unit));

1340: THEN
1341:
1342: l_precision := least( p_precision, nvl(arp_standard.sysparm.tax_precision, p_precision) );
1343: l_min_acct_unit := greatest( nvl(p_min_acct_unit, arp_standard.sysparm.tax_minimum_accountable_unit),
1344: nvl(arp_standard.sysparm.tax_minimum_accountable_unit, p_min_acct_unit));
1345:
1346: ELSE
1347:
1348: l_precision := p_precision;

Line 1355: debug(' sys currency = :'||arp_standard.sysparm.tax_currency_code||':');

1351: END IF;
1352:
1353: IF PG_DEBUG = 'Y' THEN
1354: debug(' trx currency = :'||p_trx_currency_code||':');
1355: debug(' sys currency = :'||arp_standard.sysparm.tax_currency_code||':');
1356: debug(' autotax = :'||p_autotax_flag||':');
1357: debug(' rounding rule = :'||l_rounding_rule||':');
1358: debug(' precision = :'||l_precision||':');
1359: debug(' mau = :'||l_min_acct_unit||':');

Line 2803: last_updated_by = arp_standard.profile.user_id,

2799:
2800: UPDATE RA_CUSTOMER_TRX_LINES
2801: SET line_recoverable = line_recoverable + l_prorated_line,
2802: tax_recoverable = tax_recoverable + l_prorated_tax,
2803: last_updated_by = arp_standard.profile.user_id,
2804: last_update_date = sysdate
2805: WHERE customer_trx_line_id = c_tax_lines.adjusted_doc_line_id;
2806:
2807: IF PG_DEBUG in ('Y', 'C') THEN