DBA Data[Home] [Help]

APPS.CTO_MANUAL_LINK_CONFIG dependencies on CTO_WORKFLOW

Line 122: oe_debug_pub.add ('link_config: ' || 'Calling CTO_WORKFLOW.validate_line..',2);

118: l_stmt_num := 100;
119: IF PG_DEBUG <> 0 THEN
120: oe_debug_pub.add ('link_config: ' || 'Inside CTO_MANUAL_LINK_CONFIG.link_config..',2);
121:
122: oe_debug_pub.add ('link_config: ' || 'Calling CTO_WORKFLOW.validate_line..',2);
123: END IF;
124:
125: if (CTO_WORKFLOW.validate_line(p_model_line_id) = FALSE) then
126:

Line 125: if (CTO_WORKFLOW.validate_line(p_model_line_id) = FALSE) then

121:
122: oe_debug_pub.add ('link_config: ' || 'Calling CTO_WORKFLOW.validate_line..',2);
123: END IF;
124:
125: if (CTO_WORKFLOW.validate_line(p_model_line_id) = FALSE) then
126:
127: cto_msg_pub.cto_message('BOM','CTO_LINE_STATUS_NOT_ELIGIBLE');
128: x_message_name := 'CTO_LINE_STATUS_NOT_ELIGIBLE';
129: IF PG_DEBUG <> 0 THEN

Line 185: CTO_WORKFLOW_API_PK.get_activity_status(

181: IF PG_DEBUG <> 0 THEN
182: oe_debug_pub.add('link_config: ' || 'Configuration Line does not exist.', 2);
183: END IF;
184: l_stmt_num := 120;
185: CTO_WORKFLOW_API_PK.get_activity_status(
186: itemtype => 'OEOL',
187: itemkey => to_char(p_model_line_id),
188: linetype => 'MODEL',
189: activity_name => l_active_activity);

Line 262: IF (CTO_WORKFLOW_API_PK.start_model_workflow(p_model_line_id) = FALSE)

258:
259: /*------------------------------+
260: Update Model Line's workflow.
261: +-------------------------------*/
262: IF (CTO_WORKFLOW_API_PK.start_model_workflow(p_model_line_id) = FALSE)
263: THEN
264: IF PG_DEBUG <> 0 THEN
265: oe_debug_pub.add('link_config: ' || 'Failed in call to start_model_workflow',1);
266: END IF;

Line 280: oe_debug_pub.add ('link_config: ' || 'did not call cto_workflow_api_pk.start_model_workflow as l_active_activity

276:
277: else
278:
279:
280: oe_debug_pub.add ('link_config: ' || 'did not call cto_workflow_api_pk.start_model_workflow as l_active_activity
281: is not at CREATE_CONFIG_ITEM_ELIGIBLE.', 2);
282:
283: end if ;
284:

Line 308: l_return_status := CTO_WORKFLOW_API_PK.display_wf_status( p_order_line_id => l_config_line_id );

304: END IF;
305:
306:
307: --bugfix 3755608 changed the call to display_wf_status from OM api
308: l_return_status := CTO_WORKFLOW_API_PK.display_wf_status( p_order_line_id => l_config_line_id );
309:
310: IF PG_DEBUG <> 0 THEN
311: oe_debug_pub.add('link_config: ' || 'Return from display_wf status'||l_return_status,1);
312: END IF;