DBA Data[Home] [Help]

APPS.ARP_CORRECT_CC_ERRORS dependencies on FND_API

Line 876: p_init_msg_list => FND_API.G_TRUE,

872: l_reversal_date := default_reversal_date(p_cash_receipt_id);
873:
874: AR_RECEIPT_API_PUB.Reverse(
875: p_api_version => 1.0,
876: p_init_msg_list => FND_API.G_TRUE,
877: x_return_status => l_return_status,
878: x_msg_count => l_msg_count,
879: x_msg_data => l_msg_data,
880: p_cash_receipt_id => p_cash_receipt_id,

Line 917: FND_API.G_FALSE);

913:
914: FOR l_count IN 1..l_msg_count LOOP
915:
916: l_msg_data := FND_MSG_PUB.Get(FND_MSG_PUB.G_NEXT,
917: FND_API.G_FALSE);
918: IF PG_DEBUG in ('Y', 'C') THEN
919: arp_util.debug('reverse_action: ' || to_char(l_count)||' : '||l_msg_data);
920: END IF;
921:

Line 931: IF l_return_status = FND_API.G_RET_STS_SUCCESS Then

927:
928: /*-----------------------------------------------------+
929: | If API return status is not SUCCESS raise exception |
930: +-----------------------------------------------------*/
931: IF l_return_status = FND_API.G_RET_STS_SUCCESS Then
932:
933: /*-----------------------------------------------------+
934: | Success do nothing, else branch introduced to make |
935: | sure that NULL case will also raise exception |

Line 2170: p_init_msg_list => FND_API.G_TRUE,

2166: l_trxn_attribs_rec.trxn_ref_number2 := p_cc_trx_id;
2167:
2168: IBY_FNDCPT_TRXN_PUB.CREATE_TRANSACTION_EXTENSION(
2169: p_api_version => 1.0,
2170: p_init_msg_list => FND_API.G_TRUE,
2171: p_commit => FND_API.G_FALSE,
2172: x_return_status => l_return_status,
2173: x_msg_count => l_msg_count,
2174: x_msg_data => l_msg_data,

Line 2171: p_commit => FND_API.G_FALSE,

2167:
2168: IBY_FNDCPT_TRXN_PUB.CREATE_TRANSACTION_EXTENSION(
2169: p_api_version => 1.0,
2170: p_init_msg_list => FND_API.G_TRUE,
2171: p_commit => FND_API.G_FALSE,
2172: x_return_status => l_return_status,
2173: x_msg_count => l_msg_count,
2174: x_msg_data => l_msg_data,
2175: p_payer => l_payer_rec,

Line 2183: IF l_return_status = FND_API.G_RET_STS_SUCCESS THEN

2179: p_trxn_attribs => l_trxn_attribs_rec,
2180: x_entity_id => l_payment_trxn_extension_id,
2181: x_response => l_response_rec);
2182:
2183: IF l_return_status = FND_API.G_RET_STS_SUCCESS THEN
2184:
2185: update ar_cash_receipts set
2186: payment_trxn_extension_id = l_payment_trxn_extension_id
2187: where cash_receipt_id = p_cc_trx_id;