DBA Data[Home] [Help]

APPS.ARP_CREDIT_MEMO_MODULE dependencies on ARP_ROUNDING

Line 5336: IF (arp_rounding.insert_round_records(

5332: rows_processed NUMBER;
5333: error_message VARCHAR2(255);
5334: BEGIN
5335:
5336: IF (arp_rounding.insert_round_records(
5337: p_request_id,
5338: p_customer_trx_id,
5339: rows_processed,
5340: error_message,

Line 5346: debug('arp_rounding.insert_round_rows returned FALSE');

5342: 0,
5343: 'CM', -- this doesn't matter!
5344: arp_global.sysparam.TRX_HEADER_ROUND_CCID) <> 0)
5345: THEN
5346: debug('arp_rounding.insert_round_rows returned FALSE');
5347: debug(' error: ' || error_message);
5348: END IF;
5349:
5350: EXCEPTION

Line 5352: debug('arp_rounding.insert_round_records raised EXCEPTION');

5348: END IF;
5349:
5350: EXCEPTION
5351: WHEN OTHERS THEN
5352: debug('arp_rounding.insert_round_records raised EXCEPTION');
5353: debug(' error: ' || error_message);
5354:
5355: /*Note that this exception will not halt the program
5356: and ultimately, line-level rounding will be enforced

Line 5414: arp_rounding.set_rec_offset_flag(null, p_request_id, l_result);

5410: /* Bug 2535023 - set rec_offset_flags on older invoices
5411: before we attempt to clone the distributions */
5412: IF (profile_info.use_inv_acct_for_cm_flag = YES) THEN
5413: IF (p_request_id is NOT NULL) THEN
5414: arp_rounding.set_rec_offset_flag(null, p_request_id, l_result);
5415: ELSE
5416: arp_rounding.set_rec_offset_flag(p_prev_customer_trx_id, null, l_result);
5417: END IF;
5418:

Line 5416: arp_rounding.set_rec_offset_flag(p_prev_customer_trx_id, null, l_result);

5412: IF (profile_info.use_inv_acct_for_cm_flag = YES) THEN
5413: IF (p_request_id is NOT NULL) THEN
5414: arp_rounding.set_rec_offset_flag(null, p_request_id, l_result);
5415: ELSE
5416: arp_rounding.set_rec_offset_flag(p_prev_customer_trx_id, null, l_result);
5417: END IF;
5418:
5419: /* 6782405 - Check result of set_rec_offset call and raise exception if
5420: it is unsuccessful