DBA Data[Home] [Help]

APPS.WIP_VALIDATEMLHEADER_PVT dependencies on INV_KANBAN_PVT

Line 4925: l_doc_type := INV_Kanban_PVT.G_doc_type_Discrete_Job ;

4921:
4922: l_msg := 'WIP_ML_KB_UPDATE_FAILED';
4923: l_doc_header_id := wjsi_row.wip_entity_id ;
4924: if(wjsi_row.load_type = wip_constants.create_job) then
4925: l_doc_type := INV_Kanban_PVT.G_doc_type_Discrete_Job ;
4926: elsif(wjsi_row.load_type = wip_constants.create_sched) then
4927: l_doc_type := INV_Kanban_PVT.G_doc_type_Rep_Schedule ;
4928: else
4929: raise fnd_api.g_exc_unexpected_error;

Line 4927: l_doc_type := INV_Kanban_PVT.G_doc_type_Rep_Schedule ;

4923: l_doc_header_id := wjsi_row.wip_entity_id ;
4924: if(wjsi_row.load_type = wip_constants.create_job) then
4925: l_doc_type := INV_Kanban_PVT.G_doc_type_Discrete_Job ;
4926: elsif(wjsi_row.load_type = wip_constants.create_sched) then
4927: l_doc_type := INV_Kanban_PVT.G_doc_type_Rep_Schedule ;
4928: else
4929: raise fnd_api.g_exc_unexpected_error;
4930: end if;
4931:

Line 4935: inv_kanban_pvt.update_card_supply_status (

4931:
4932: -- Tell Inventory to update the kanban card's supply status.
4933: -- Abort this request if unsuccessful.
4934: begin
4935: inv_kanban_pvt.update_card_supply_status (
4936: x_return_status => l_status,
4937: p_kanban_card_id => wjsi_row.kanban_card_id,
4938: p_supply_status => INV_Kanban_PVT.G_Supply_Status_InProcess,
4939: p_document_type => l_doc_type,

Line 4938: p_supply_status => INV_Kanban_PVT.G_Supply_Status_InProcess,

4934: begin
4935: inv_kanban_pvt.update_card_supply_status (
4936: x_return_status => l_status,
4937: p_kanban_card_id => wjsi_row.kanban_card_id,
4938: p_supply_status => INV_Kanban_PVT.G_Supply_Status_InProcess,
4939: p_document_type => l_doc_type,
4940: p_document_header_id => l_doc_header_id);
4941: exception
4942: when others then