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 1301: IF (arp_util.is_gl_date_valid(l_chargeback_gl_date) ) THEN

1297: l_chargeback_gl_date := p_gl_date;
1298: -- ----------------------------------------------------------
1299: -- Redefault Chargeback GL date if it is in a invalid period
1300: -- ----------------------------------------------------------
1301: IF (arp_util.is_gl_date_valid(l_chargeback_gl_date) ) THEN
1302: null;
1303: ELSE
1304: IF (arp_util.validate_and_default_gl_date(
1305: l_chargeback_gl_date,

Line 1304: IF (arp_util.validate_and_default_gl_date(

1300: -- ----------------------------------------------------------
1301: IF (arp_util.is_gl_date_valid(l_chargeback_gl_date) ) THEN
1302: null;
1303: ELSE
1304: IF (arp_util.validate_and_default_gl_date(
1305: l_chargeback_gl_date,
1306: NULL,
1307: NULL,
1308: NULL,

Line 1834: arp_util.calc_acctd_amount(

1830: THEN
1831: l_acctd_amount := p_acctd_amount;
1832: /* bug 4126057 set to passed acctd amt instead of null */
1833: ELSE
1834: arp_util.calc_acctd_amount(
1835: NULL
1836: , NULL
1837: , NULL
1838: , NVL(l_ct_row.exchange_rate,1) -- Exchange rate

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

1899: | that of Receipt's UNAPP record |
1900: +--------------------------------------------------------------------*/
1901: -- Bugfix 1948917.
1902: IF NVL(FND_PROFILE.value('AR_DISABLE_REC_ACTIVITY_BALSEG_SUBSTITUTION'), 'N') = 'N' THEN
1903: arp_util.Substitute_Ccid(p_coa_id => arp_global.chart_of_accounts_id ,
1904: p_original_ccid => l_ctlgd_row.code_combination_id ,
1905: p_subs_ccid => l_cr_unapp_ccid ,
1906: p_actual_ccid => l_actual_ccid );
1907: ELSE

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

1910: ELSE
1911: -- Regular chargeback should replace the balancing segment of the invoice REC
1912: -- Bugfix 1948917.
1913: IF NVL(FND_PROFILE.value('AR_DISABLE_REC_ACTIVITY_BALSEG_SUBSTITUTION'), 'N') = 'N' THEN
1914: arp_util.Substitute_Ccid(p_coa_id => arp_global.chart_of_accounts_id ,
1915: p_original_ccid => l_ctlgd_row.code_combination_id ,
1916: p_subs_ccid => l_inv_rec_ccid ,
1917: p_actual_ccid => l_actual_ccid );
1918: ELSE