DBA Data[Home] [Help]

APPS.ARP_CASHBOOK dependencies on FND_API

Line 2299: p_init_msg_list => FND_API.G_TRUE,

2295:
2296: BEGIN
2297:
2298: AR_RECEIPT_API_PUB.Reverse(p_api_version => 1.0,
2299: p_init_msg_list => FND_API.G_TRUE,
2300: x_return_status => l_return_status,
2301: x_msg_count => l_msg_count,
2302: x_msg_data => l_msg_data,
2303: p_cash_receipt_id => p_cr_id,

Line 2339: l_msg_data := FND_MSG_PUB.Get(FND_MSG_PUB.G_NEXT,FND_API.G_FALSE);

2335: +-------------------------------------------------------*/
2336:
2337: FOR l_count IN 1..l_msg_count LOOP
2338:
2339: l_msg_data := FND_MSG_PUB.Get(FND_MSG_PUB.G_NEXT,FND_API.G_FALSE);
2340: IF PG_DEBUG in ('Y', 'C') THEN
2341: arp_util.debug('reverse: ' || to_char(l_count)||' : '||l_msg_data);
2342: END IF;
2343:

Line 2353: IF l_return_status = FND_API.G_RET_STS_SUCCESS Then

2349:
2350: /*-----------------------------------------------------+
2351: | If API return status is not SUCCESS raise exception |
2352: +-----------------------------------------------------*/
2353: IF l_return_status = FND_API.G_RET_STS_SUCCESS Then
2354:
2355: /*-----------------------------------------------------+
2356: | Success do nothing, else branch introduced to make |
2357: | sure that NULL case will also raise exception |

Line 2377: FND_MSG_PUB.Get (FND_MSG_PUB.G_FIRST, FND_API.G_TRUE, l_msg_data, l_msg_index);

2373: WHEN API_exception THEN
2374: IF PG_DEBUG in ('Y', 'C') THEN
2375: arp_util.debug('API Exception: arp_cashbook.reverse '||SQLERRM);
2376: END IF;
2377: FND_MSG_PUB.Get (FND_MSG_PUB.G_FIRST, FND_API.G_TRUE, l_msg_data, l_msg_index);
2378: FND_MESSAGE.Set_Encoded (l_msg_data);
2379: app_exception.raise_exception;
2380:
2381: WHEN OTHERS THEN