DBA Data[Home] [Help]

APPS.WIP_MASSLOAD_PVT dependencies on WIP_REQUIREMENT_OPERATIONS

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

423: updateWipEntity(p_rowid);
424:
425: end if;
426: -- Added for bug 5439929
427: -- We should update the wip_supply type in wip_requirement_operations table
428: -- wip_supply_type is specified by user in interface table. If user specified the value
429: -- as 'Based on bill'(value 7), then we don't need to update as that is the default behavior
430: If nvl(wjsi_row.wip_supply_type,7) <> 7 then
431: update wip_requirement_operations

Line 431: update wip_requirement_operations

427: -- We should update the wip_supply type in wip_requirement_operations table
428: -- wip_supply_type is specified by user in interface table. If user specified the value
429: -- as 'Based on bill'(value 7), then we don't need to update as that is the default behavior
430: If nvl(wjsi_row.wip_supply_type,7) <> 7 then
431: update wip_requirement_operations
432: set wip_supply_type = wjsi_row.wip_supply_type
433: where wip_entity_id = wjsi_row.wip_entity_id;
434: End if;
435: