DBA Data[Home] [Help]

APPS.INV_LABEL_PVT1 dependencies on PJM_ORG_PARAMETERS

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

1873: AND pod.po_distribution_id = nvl(rt.po_distribution_id, pod.po_distribution_id)
1874: AND rt.group_id = p_transaction_id;
1875:
1876: /* The following cursor has been added to fetch the PROJECT_REFERENCE_ENABLED value
1877: * from pjm_org_parameters table. The value 'Y' represents the PJM enabled org.
1878: * This field will be used to open the cursors that are required only for PJM org.
1879: */
1880:
1881: CURSOR c_project_enabled(p_organization_id NUMBER) IS

Line 1883: FROM pjm_org_parameters pop

1879: */
1880:
1881: CURSOR c_project_enabled(p_organization_id NUMBER) IS
1882: SELECT pop.project_reference_enabled
1883: FROM pjm_org_parameters pop
1884: WHERE pop.organization_id = p_organization_id;
1885:
1886: l_is_pjm_org VARCHAR (1);
1887: