DBA Data[Home] [Help]

APPS.AR_RECEIPT_API_PUB dependencies on ARP_REVERSE_RECEIPT

Line 5337: arp_reverse_receipt.reverse(

5333:
5334: --we do not do anything with the fetched data as we just need to do the reversal of the receipt.
5335: --the existing routines have been used for locking (reusability)
5336: BEGIN
5337: arp_reverse_receipt.reverse(
5338: p_cash_receipt_id,
5339: p_reversal_category_code,
5340: p_reversal_gl_date,
5341: p_reversal_date,

Line 5384: FND_MESSAGE.SET_TOKEN('GENERIC_TEXT','ARP_REVERSE_RECEIPT.REVERSE : '||SQLERRM);

5380: THEN
5381:
5382: p_return_status := FND_API.G_RET_STS_ERROR ;
5383: FND_MESSAGE.SET_NAME ('AR','GENERIC_MESSAGE');
5384: FND_MESSAGE.SET_TOKEN('GENERIC_TEXT','ARP_REVERSE_RECEIPT.REVERSE : '||SQLERRM);
5385: FND_MSG_PUB.Add;
5386:
5387: RETURN;
5388: ELSE

Line 5603: IF arp_reverse_receipt.receipt_has_non_cancel_claims(

5599: l_rev_return_status := FND_API.G_RET_STS_ERROR;
5600: END IF;
5601:
5602: -- Bug 2232366 - check for existence of claims and if they are cancellable
5603: IF arp_reverse_receipt.receipt_has_non_cancel_claims(
5604: p_cr_id => p_cash_receipt_id,
5605: p_include_trx_claims => 'Y')
5606: THEN
5607: FND_MESSAGE.SET_NAME('AR','AR_RW_NO_REVERSAL_WITH_CLAIMS');

Line 5611: arp_reverse_receipt.cancel_claims(

5607: FND_MESSAGE.SET_NAME('AR','AR_RW_NO_REVERSAL_WITH_CLAIMS');
5608: FND_MSG_PUB.Add;
5609: l_clm_return_status := FND_API.G_RET_STS_ERROR;
5610: ELSE
5611: arp_reverse_receipt.cancel_claims(
5612: p_cr_id => p_cash_receipt_id
5613: , p_include_trx_claims => 'Y'
5614: , x_return_status => l_clm_return_status
5615: , x_msg_count => l_msg_count