DBA Data[Home] [Help]

APPS.WIP_MOVPROC_PRIV dependencies on WIP_OSP

Line 1672: wip_osp.updatePOReqQuantity(

1668: FROM wip_parameters
1669: WHERE organization_id = l_rs_txn.org_id;
1670:
1671: IF(l_propagate_job_change_to_po = WIP_CONSTANTS.YES) THEN
1672: wip_osp.updatePOReqQuantity(
1673: p_job_id => l_rs_txn.wip_id,
1674: p_repetitive_id => l_rsa(1).scheID,
1675: p_org_id => l_rs_txn.org_id,
1676: p_changed_qty => l_rs_txn.oc_pri_qty,

Line 1684: l_errMsg := 'wip_osp.updatePOReqQuantity failed';

1680: p_fm_op => l_rs_txn.fm_op,
1681: x_return_status => x_returnStatus);
1682:
1683: IF(x_returnStatus <> fnd_api.g_ret_sts_success) THEN
1684: l_errMsg := 'wip_osp.updatePOReqQuantity failed';
1685: raise fnd_api.g_exc_unexpected_error;
1686: END IF; -- l_return_status
1687: END IF; -- l_propagate_job_change_to_po = WIP_CONSTANTS.YES
1688: END IF; -- l_rs_txn.oc_pri_qty <> 0 and customer have PO FPJ

Line 2402: wip_osp.updatePOReqQuantity(

2398: FROM wip_parameters
2399: WHERE organization_id = l_dj_txn.org_id;
2400:
2401: IF(l_propagate_job_change_to_po = WIP_CONSTANTS.YES) THEN
2402: wip_osp.updatePOReqQuantity(
2403: p_job_id => l_dj_txn.wip_id,
2404: p_org_id => l_dj_txn.org_id,
2405: p_changed_qty => l_dj_txn.oc_pri_qty,
2406: /* Fix for Bug#4746495. PO linked to current Operation should

Line 2413: l_errMsg := 'wip_osp.updatePOReqQuantity failed';

2409: p_fm_op => l_dj_txn.fm_op,
2410: x_return_status => x_returnStatus);
2411:
2412: IF(x_returnStatus <> fnd_api.g_ret_sts_success) THEN
2413: l_errMsg := 'wip_osp.updatePOReqQuantity failed';
2414: raise fnd_api.g_exc_unexpected_error;
2415: END IF; -- x_returnStatus
2416: END IF; -- l_propagate_job_change_to_po = WIP_CONSTANTS.YES
2417: END IF; -- l_dj_txn.oc_pri_qty <> 0 and customer have PO FPJ

Line 6693: wip_osp.create_additional_req

6689: LOOP
6690: FETCH c_additional_reqs INTO l_additional_reqs;
6691: EXIT WHEN c_additional_reqs%NOTFOUND;
6692: -- call PL/SQL API to create additional_req
6693: wip_osp.create_additional_req
6694: (p_wip_entity_id => l_additional_reqs.wip_id,
6695: p_organization_id => l_additional_reqs.org_id,
6696: p_repetitive_schedule_id => l_additional_reqs.rep_sched_id,
6697: p_added_quantity => l_additional_reqs.oc_qty,

Line 6844: wip_osp_shp_i_wf.StartWFProcess

6840: where ORGANIZATION_ID = l_org_id
6841: and ORG_INFORMATION_CONTEXT = l_org_acct_ctxt;
6842: FND_REQUEST.SET_ORG_ID (l_ou_id);
6843:
6844: wip_osp_shp_i_wf.StartWFProcess
6845: (p_itemtype => 'WIPISHPW',
6846: p_itemkey => l_itemkey,
6847: p_workflow_process => 'INTERMEDIATE_SHIP',
6848: p_wip_entity_id => l_wmti_txn.wip_id,

Line 8322: wip_osp.updatePOReqQuantity(

8318: -- Update PO quantity for scrap transactions
8319: IF (po_code_release_grp.Current_Release >=
8320: po_code_release_grp.PRC_11i_Family_Pack_J) THEN
8321: FOR l_update_po IN c_update_po LOOP
8322: wip_osp.updatePOReqQuantity(
8323: p_job_id => l_update_po.job_id,
8324: p_repetitive_id => l_update_po.rep_id,
8325: p_org_id => l_update_po.org_id,
8326: p_changed_qty => l_update_po.changed_qty,

Line 8333: l_errMsg := 'wip_osp.updatePOReqQuantity failed';

8329: p_is_scrap_txn => WIP_CONSTANTS.YES,
8330: x_return_status => x_returnStatus);
8331:
8332: IF(x_returnStatus <> fnd_api.g_ret_sts_success) THEN
8333: l_errMsg := 'wip_osp.updatePOReqQuantity failed';
8334: raise fnd_api.g_exc_unexpected_error;
8335: END IF;
8336: END LOOP;
8337: END IF; -- have PO patchset J onward