DBA Data[Home] [Help]

APPS.CTO_CONFIG_ITEM_PK dependencies on PJM_PROJECT_PARAMETERS

Line 582: from pjm_project_parameters ppp

578: +---------------------------------------------*/
579:
580: select nvl(costing_group_id,1)
581: into l_cst_grp
582: from pjm_project_parameters ppp
583: where ppp.project_id = ( select project_id
584: from oe_order_lines_all ol
585: where ol.line_id = pLineId )
586: and ppp.organization_id = pOrgId;

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

589:
590: exception
591: when no_data_found then
592: IF PG_DEBUG <> 0 THEN
593: oe_debug_pub.add('get_cost_group: ' || 'ERROR: Could not fetch the cost_group_id from pjm_project_parameters (NDF)',1);
594: END IF;
595: return(0);
596:
597: end get_cost_group;