DBA Data[Home] [Help]

APPS.WIP_MASSLOAD_PVT dependencies on WIP_REQUIREMENT_OPERATIONS

Line 279: -- We should update the wip_supply type in wip_requirement_operations table

275: updateWipEntity(p_rowid);
276:
277: end if;
278: -- Added for bug 5439929
279: -- We should update the wip_supply type in wip_requirement_operations table
280: -- wip_supply_type is specified by user in interface table. If user specified the value
281: -- as 'Based on bill'(value 7), then we don't need to update as that is the default behavior
282: If nvl(wjsi_row.wip_supply_type,7) <> 7 then
283: update wip_requirement_operations

Line 283: update wip_requirement_operations

279: -- We should update the wip_supply type in wip_requirement_operations table
280: -- wip_supply_type is specified by user in interface table. If user specified the value
281: -- as 'Based on bill'(value 7), then we don't need to update as that is the default behavior
282: If nvl(wjsi_row.wip_supply_type,7) <> 7 then
283: update wip_requirement_operations
284: set wip_supply_type = wjsi_row.wip_supply_type
285: where wip_entity_id = wjsi_row.wip_entity_id;
286: End if;
287: