DBA Data[Home] [Help]

APPS.INV_LABEL_PVT2 dependencies on PJM_ORG_PARAMETERS

Line 479: * from pjm_org_parameters table. The value 'Y' represents the PJM enabled org.

475: FROM pa_tasks
476: WHERE task_id = l_task_id;
477:
478: /* The following cursor has been added to fetch the PROJECT_REFERENCE_ENABLED value
479: * from pjm_org_parameters table. The value 'Y' represents the PJM enabled org.
480: * This field will be used to open the cursors that are required only for PJM org.
481: */
482:
483: CURSOR c_project_enabled(p_organization_id NUMBER) IS

Line 485: FROM pjm_org_parameters pop

481: */
482:
483: CURSOR c_project_enabled(p_organization_id NUMBER) IS
484: SELECT pop.project_reference_enabled
485: FROM pjm_org_parameters pop
486: WHERE pop.organization_id = p_organization_id;
487:
488: l_is_pjm_org VARCHAR (1);
489: