DBA Data[Home] [Help]

APPS.ARP_PROCESS_WRITEOFF dependencies on FND_API

Line 393: l_return_status := FND_API.G_RET_STS_SUCCESS;

389:
390:
391: --Intialize the out NOCOPY variable
392:
393: l_return_status := FND_API.G_RET_STS_SUCCESS;
394: /* storing the request_id */
395: g_request_id :=fnd_global.conc_request_id;
396: --Get the approval limits of the user
397: BEGIN

Line 429: l_return_status := FND_API.G_RET_STS_ERROR;

425: l_return_status));
426: IF l_customer_id IS NULL THEN
427: FND_MESSAGE.SET_NAME('AR','AR_RAPI_CUS_NUM_INVALID');
428: FND_MSG_PUB.Add;
429: l_return_status := FND_API.G_RET_STS_ERROR;
430: END IF;
431: END IF;
432:
433: arp_util.debug('Customer ID '||to_char(l_customer_id));

Line 580: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS )

576: l_number_of_records_writtenoff := l_number_of_records_writtenoff + 1;
577:
578: END IF;
579:
580: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS )
581: THEN
582:
583: arp_util.debug('arp_process_writeoff - Failed for Receipt : '||
584: writeoff_rec.receipt_number );

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

595: app_exception.raise_exception;
596: ELSIF l_msg_count > 1 THEN
597: --retrive only first messages from the stack and display it .
598:
599: l_msg_data := FND_MSG_PUB.Get(FND_MSG_PUB.G_NEXT,FND_API.G_FALSE);
600:
601: FND_MESSAGE.SET_NAME ('AR', 'GENERIC_MESSAGE');
602: FND_MESSAGE.SET_TOKEN('GENERIC_TEXT',l_msg_data);
603: app_exception.raise_exception;