DBA Data[Home] [Help]

APPS.WIP_OPERATIONS_UTILITIES dependencies on WIP_OSP

Line 276: -- , so we will call wip_osp.po_req_exists instead.

272: x_return_status OUT NOCOPY VARCHAR2) IS
273:
274: -- remove cursors to check po/req exists because these cursors does not
275: -- consider canceled po/req. Morever, we already had an API to do this job
276: -- , so we will call wip_osp.po_req_exists instead.
277: l_propagate_job_change_to_po NUMBER;
278: l_entity_type NUMBER;
279: l_return_status VARCHAR2(1);
280: BEGIN

Line 290: IF(wip_osp.po_req_exists(

286: l_entity_type := WIP_CONSTANTS.DISCRETE;
287: ELSE
288: l_entity_type := WIP_CONSTANTS.REPETITIVE;
289: END IF;
290: IF(wip_osp.po_req_exists(
291: p_wip_entity_id => x_wip_entity_id,
292: p_rep_sched_id => x_repetitive_schedule_id,
293: p_organization_id => x_organization_id,
294: p_op_seq_num => x_operation_seq_num,

Line 307: wip_osp.cancelPOReq(

303: WHERE organization_id = x_organization_id;
304:
305: IF(l_propagate_job_change_to_po = WIP_CONSTANTS.YES) THEN
306: -- Try to cancel PO/requisitions
307: wip_osp.cancelPOReq(
308: p_job_id => x_wip_entity_id,
309: p_repetitive_id => x_repetitive_schedule_id,
310: p_org_id => x_organization_id,
311: p_op_seq_num => x_operation_seq_num,