DBA Data[Home] [Help]

APPS.OKC_LSE_PVT dependencies on FND_APPLICATION

Line 831: from fnd_application

827: p_lsev_rec IN lsev_rec_type) IS
828:
829: Cursor application_id_cur(p_application_id IN NUMBER) IS
830: select '1'
831: from fnd_application
832: where application_id = p_application_id;
833:
834: l_dummy VARCHAR2(1) := '?';
835:

Line 841: --Check if application id exists in the fnd_application or not

837: -- initialize return status
838: x_return_status := OKC_API.G_RET_STS_SUCCESS;
839:
840: IF p_lsev_rec.application_id IS NOT NULL THEN
841: --Check if application id exists in the fnd_application or not
842: OPEN application_id_cur(p_lsev_rec.application_id);
843: FETCH application_id_cur INTO l_dummy;
844: CLOSE application_id_cur ;
845: IF l_dummy = '?' THEN