DBA Data[Home] [Help]

APPS.CTO_CONFIG_ITEM_PK dependencies on PJM_PROJECT_PARAMETERS

Line 657: from pjm_project_parameters ppp

653: +---------------------------------------------*/
654:
655: select nvl(costing_group_id,1)
656: into l_cst_grp
657: from pjm_project_parameters ppp
658: where ppp.project_id = ( select project_id
659: from oe_order_lines_all ol
660: where ol.line_id = pLineId )
661: and ppp.organization_id = pOrgId;

Line 668: oe_debug_pub.add('get_cost_group: ' || 'ERROR: Could not fetch the cost_group_id from pjm_project_parameters (NDF)',1);

664:
665: exception
666: when no_data_found then
667: IF PG_DEBUG <> 0 THEN
668: oe_debug_pub.add('get_cost_group: ' || 'ERROR: Could not fetch the cost_group_id from pjm_project_parameters (NDF)',1);
669: END IF;
670: return(0);
671:
672: end get_cost_group;