DBA Data[Home] [Help]

APPS.INV_LABEL_PVT1 dependencies on PJM_ORG_PARAMETERS

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

1924: --Bug 8230113 Cursor opens for a single po_line
1925: AND pod.po_line_id = l_po_line_id;
1926:
1927: /* The following cursor has been added to fetch the PROJECT_REFERENCE_ENABLED value
1928: * from pjm_org_parameters table. The value 'Y' represents the PJM enabled org.
1929: * This field will be used to open the cursors that are required only for PJM org.
1930: */
1931:
1932: CURSOR c_project_enabled(p_organization_id NUMBER) IS

Line 1934: FROM pjm_org_parameters pop

1930: */
1931:
1932: CURSOR c_project_enabled(p_organization_id NUMBER) IS
1933: SELECT pop.project_reference_enabled
1934: FROM pjm_org_parameters pop
1935: WHERE pop.organization_id = p_organization_id;
1936:
1937: l_is_pjm_org VARCHAR (1);
1938: