DBA Data[Home] [Help]

APPS.ARP_PROCESS_CHARGEBACK dependencies on ARP_UTIL

Line 194: arp_util.debug ('reverse_chargeback: ' || l_mesg,G_MSG_HIGH);

190: l_mesg := fnd_msg_pub.get(p_encoded=>FND_API.G_FALSE);
191: WHILE l_mesg IS NOT NULL
192: LOOP
193: IF PG_DEBUG in ('Y', 'C') THEN
194: arp_util.debug ('reverse_chargeback: ' || l_mesg,G_MSG_HIGH);
195: END IF;
196: l_mesg := fnd_msg_pub.get(p_encoded=>FND_API.G_FALSE);
197: END LOOP ;
198: ELSE

Line 742: arp_util.validate_gl_date() Validates GL date

738: SCOPE
739: Private
740:
741: EXTERNAL PROCEDURES/FUNCTIONS ACCESSED
742: arp_util.validate_gl_date() Validates GL date
743:
744: ARGUMENTS
745: IN
746: p_gl_date

Line 1287: IF (arp_util.is_gl_date_valid(l_chargeback_gl_date) ) THEN

1283: l_chargeback_gl_date := p_gl_date;
1284: -- ----------------------------------------------------------
1285: -- Redefault Chargeback GL date if it is in a invalid period
1286: -- ----------------------------------------------------------
1287: IF (arp_util.is_gl_date_valid(l_chargeback_gl_date) ) THEN
1288: null;
1289: ELSE
1290: IF (arp_util.validate_and_default_gl_date(
1291: l_chargeback_gl_date,

Line 1290: IF (arp_util.validate_and_default_gl_date(

1286: -- ----------------------------------------------------------
1287: IF (arp_util.is_gl_date_valid(l_chargeback_gl_date) ) THEN
1288: null;
1289: ELSE
1290: IF (arp_util.validate_and_default_gl_date(
1291: l_chargeback_gl_date,
1292: NULL,
1293: NULL,
1294: NULL,

Line 1707: arp_util.calc_acctd_amount(

1703: THEN
1704: l_acctd_amount := p_acctd_amount;
1705: /* bug 4126057 set to passed acctd amt instead of null */
1706: ELSE
1707: arp_util.calc_acctd_amount(
1708: NULL
1709: , NULL
1710: , NULL
1711: , NVL(l_ct_row.exchange_rate,1) -- Exchange rate

Line 1776: arp_util.Substitute_Ccid(p_coa_id => arp_global.chart_of_accounts_id ,

1772: | that of Receipt's UNAPP record |
1773: +--------------------------------------------------------------------*/
1774: -- Bugfix 1948917.
1775: IF NVL(FND_PROFILE.value('AR_DISABLE_REC_ACTIVITY_BALSEG_SUBSTITUTION'), 'N') = 'N' THEN
1776: arp_util.Substitute_Ccid(p_coa_id => arp_global.chart_of_accounts_id ,
1777: p_original_ccid => l_ctlgd_row.code_combination_id ,
1778: p_subs_ccid => l_cr_unapp_ccid ,
1779: p_actual_ccid => l_actual_ccid );
1780: ELSE

Line 1787: arp_util.Substitute_Ccid(p_coa_id => arp_global.chart_of_accounts_id ,

1783: ELSE
1784: -- Regular chargeback should replace the balancing segment of the invoice REC
1785: -- Bugfix 1948917.
1786: IF NVL(FND_PROFILE.value('AR_DISABLE_REC_ACTIVITY_BALSEG_SUBSTITUTION'), 'N') = 'N' THEN
1787: arp_util.Substitute_Ccid(p_coa_id => arp_global.chart_of_accounts_id ,
1788: p_original_ccid => l_ctlgd_row.code_combination_id ,
1789: p_subs_ccid => l_inv_rec_ccid ,
1790: p_actual_ccid => l_actual_ccid );
1791: ELSE