DBA Data[Home] [Help]

APPS.PQH_PSP_INTEGRATION dependencies on FND_API

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

477: P_ASSIGNMENT_ENC_LD_TABLE =>l_assignment_enc_ld_table,
478: P_PSP_ENCUMBERED =>l_psp_encumbered,
479: P_RETURN_STATUS =>l_return_status);
480:
481: IF( l_return_status <> FND_API.G_RET_STS_SUCCESS)
482: THEN
483: --
484: p_return_status:=FND_API.G_RET_STS_ERROR;
485: RETURN;

Line 484: p_return_status:=FND_API.G_RET_STS_ERROR;

480:
481: IF( l_return_status <> FND_API.G_RET_STS_SUCCESS)
482: THEN
483: --
484: p_return_status:=FND_API.G_RET_STS_ERROR;
485: RETURN;
486: --
487: --added for fixing bug#3153433
488: -- check whether the assignments are encumbered or not and proceed.

Line 491: p_return_status:=FND_API.G_RET_STS_SUCCESS;

487: --added for fixing bug#3153433
488: -- check whether the assignments are encumbered or not and proceed.
489: ELSIF NOT (l_psp_encumbered) THEN
490:
491: p_return_status:=FND_API.G_RET_STS_SUCCESS;
492: RETURN;
493: --end changes for bug#3153433
494: END IF;
495:

Line 530: p_return_status:=FND_API.G_RET_STS_SUCCESS;

526: );
527: --
528: END LOOP;
529:
530: p_return_status:=FND_API.G_RET_STS_SUCCESS;
531: hr_utility.set_location('Leaving:'||l_proc, 1000);
532: EXCEPTION
533: WHEN OTHERS THEN
534: ROLLBACK ;

Line 535: p_return_status:=FND_API.G_RET_STS_ERROR;

531: hr_utility.set_location('Leaving:'||l_proc, 1000);
532: EXCEPTION
533: WHEN OTHERS THEN
534: ROLLBACK ;
535: p_return_status:=FND_API.G_RET_STS_ERROR;
536: hr_utility.set_message(8302, 'PQH_CATASTROPHIC_ERROR');
537: hr_utility.set_message_token('ROUTINE', l_proc);
538: hr_utility.set_message_token('REASON', SQLERRM);
539: hr_utility.raise_error;