DBA Data[Home] [Help]

APPS.AR_RECEIPT_API_PUB dependencies on ARP_REVERSE_RECEIPT

Line 5516: arp_reverse_receipt.reverse(

5512:
5513: --we do not do anything with the fetched data as we just need to do the reversal of the receipt.
5514: --the existing routines have been used for locking (reusability)
5515: BEGIN
5516: arp_reverse_receipt.reverse(
5517: p_cash_receipt_id,
5518: p_reversal_category_code,
5519: p_reversal_gl_date,
5520: p_reversal_date,

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

5559: THEN
5560:
5561: p_return_status := FND_API.G_RET_STS_ERROR ;
5562: FND_MESSAGE.SET_NAME ('AR','GENERIC_MESSAGE');
5563: FND_MESSAGE.SET_TOKEN('GENERIC_TEXT','ARP_REVERSE_RECEIPT.REVERSE : '||SQLERRM);
5564: FND_MSG_PUB.Add;
5565:
5566: RETURN;
5567: ELSE

Line 5807: IF arp_reverse_receipt.check_settlement_status(

5803: l_trxn_extn_id := NULL;
5804: END;
5805:
5806: IF l_trxn_extn_id is not null THEN
5807: IF arp_reverse_receipt.check_settlement_status(
5808: p_extension_id => l_trxn_extn_id)
5809: THEN
5810: FND_MESSAGE.SET_NAME('AR','AR_IBY_SETTLEMENT_PENDING');
5811: FND_MSG_PUB.ADD;

Line 5816: IF arp_reverse_receipt.receipt_has_non_cancel_claims(

5812: l_pend_settlment_status:= FND_API.G_RET_STS_ERROR;
5813: END IF;
5814: END IF;
5815: -- Bug 2232366 - check for existence of claims and if they are cancellable
5816: IF arp_reverse_receipt.receipt_has_non_cancel_claims(
5817: p_cr_id => p_cash_receipt_id,
5818: p_include_trx_claims => 'Y')
5819: THEN
5820: FND_MESSAGE.SET_NAME('AR','AR_RW_NO_REVERSAL_WITH_CLAIMS');

Line 5824: arp_reverse_receipt.cancel_claims(

5820: FND_MESSAGE.SET_NAME('AR','AR_RW_NO_REVERSAL_WITH_CLAIMS');
5821: FND_MSG_PUB.Add;
5822: l_clm_return_status := FND_API.G_RET_STS_ERROR;
5823: ELSE
5824: arp_reverse_receipt.cancel_claims(
5825: p_cr_id => p_cash_receipt_id
5826: , p_include_trx_claims => 'Y'
5827: , x_return_status => l_clm_return_status
5828: , x_msg_count => l_msg_count