DBA Data[Home] [Help]

APPS.WIP_BOMROUTING_PVT dependencies on WIP_BOMROUTINGUTIL_PVT

Line 118: wip_bomRoutingUtil_pvt.explodeRouting(p_orgID => p_orgID,

114: l_rtgItemID := p_rtgRefID;
115: l_bomItemID := p_bomRefID;
116: end if;
117:
118: wip_bomRoutingUtil_pvt.explodeRouting(p_orgID => p_orgID,
119: p_wipEntityID => p_wipEntityID,
120: p_repSchedID => null,
121: p_itemID => l_rtgItemID,
122: p_altRouting => p_altRouting,

Line 157: wip_bomRoutingUtil_pvt.explodeBOM(p_orgID => p_orgID,

153: where wdj.organization_id = p_orgID
154: and wdj.wip_entity_id = p_wipEntityID;
155: */
156:
157: wip_bomRoutingUtil_pvt.explodeBOM(p_orgID => p_orgID,
158: p_wipEntityID => p_wipEntityID,
159: p_jobType => p_jobType,
160: p_repSchedID => null,
161: p_itemID => l_bomItemID,

Line 412: /* Moved inside wip_bomRoutingUtil_pvt.explodeRouting after checking for existence of routing

408: end if;
409:
410: if ( l_expRtgRequired ) then
411: -- remove any setup resource for this job
412: /* Moved inside wip_bomRoutingUtil_pvt.explodeRouting after checking for existence of routing
413: For Bug fix 12861546.
414: wip_update_setup_resources.delete_setup_resources_pub(
415: p_wip_entity_id => p_wipEntityID,
416: p_organization_id => p_orgID);

Line 465: wip_bomRoutingUtil_pvt.explodeRouting(

461: x_delete_document_flag => 'Y');
462: end if;
463: end if;
464:
465: wip_bomRoutingUtil_pvt.explodeRouting(
466: p_orgID => p_orgID,
467: p_wipEntityID => p_wipEntityID,
468: p_repSchedID => null,
469: p_itemID => l_rtgItemID,

Line 581: wip_bomRoutingUtil_pvt.explodeBOM(

577: where wip_entity_id = p_wipEntityID
578: and organization_id = p_orgID
579: and phantom_flag = 1;
580:
581: wip_bomRoutingUtil_pvt.explodeBOM(
582: p_orgID => p_orgID,
583: p_wipEntityID => p_wipEntityID,
584: p_jobType => l_jobType,
585: p_repSchedID => null,

Line 609: wip_bomRoutingUtil_pvt.adjustQtyChange(

605: --Bug 5464449: Quantity should be adjusted only when explode is yes at header level.
606: --Bug 13593413 : Fixing the regression caused by bug 5464449 , quantity in bill should be updated eventhough allow_explosion populated as 'N'
607: -- Other wise user not able to update the quantity of the components by preserving the additional components to the job that are not part of the bill.
608: -- if p_allowExplosion then
609: wip_bomRoutingUtil_pvt.adjustQtyChange(
610: p_orgID => p_orgID,
611: p_wipEntityID => p_wipEntityID,
612: p_qty => p_qty,
613: x_returnStatus => x_returnStatus,