DBA Data[Home] [Help]

APPS.INV_LABEL_PVT2 dependencies on PJM_ORG_PARAMETERS

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

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

Line 490: FROM pjm_org_parameters pop

486: */
487:
488: CURSOR c_project_enabled(p_organization_id NUMBER) IS
489: SELECT pop.project_reference_enabled
490: FROM pjm_org_parameters pop
491: WHERE pop.organization_id = p_organization_id;
492:
493: l_is_pjm_org VARCHAR (1);
494: