DBA Data[Home] [Help]

APPS.WIP_JSI_VALIDATOR dependencies on INV_KANBAN_PVT

Line 647: l_doc_type := INV_Kanban_PVT.G_doc_type_Discrete_Job ;

643:
644: l_msg := 'WIP_ML_KB_UPDATE_FAILED';
645: l_doc_header_id := wjsi_row.wip_entity_id ;
646: if(wjsi_row.load_type = wip_constants.create_job) then
647: l_doc_type := INV_Kanban_PVT.G_doc_type_Discrete_Job ;
648: elsif(wjsi_row.load_type = wip_constants.create_sched) then
649: l_doc_type := INV_Kanban_PVT.G_doc_type_Rep_Schedule ;
650: else
651: raise fnd_api.g_exc_unexpected_error;

Line 649: l_doc_type := INV_Kanban_PVT.G_doc_type_Rep_Schedule ;

645: l_doc_header_id := wjsi_row.wip_entity_id ;
646: if(wjsi_row.load_type = wip_constants.create_job) then
647: l_doc_type := INV_Kanban_PVT.G_doc_type_Discrete_Job ;
648: elsif(wjsi_row.load_type = wip_constants.create_sched) then
649: l_doc_type := INV_Kanban_PVT.G_doc_type_Rep_Schedule ;
650: else
651: raise fnd_api.g_exc_unexpected_error;
652: end if;
653:

Line 657: inv_kanban_pvt.update_card_supply_status (

653:
654: -- Tell Inventory to update the kanban card's supply status.
655: -- Abort this request if unsuccessful.
656: begin
657: inv_kanban_pvt.update_card_supply_status (
658: x_return_status => l_status,
659: p_kanban_card_id => wjsi_row.kanban_card_id,
660: p_supply_status => INV_Kanban_PVT.G_Supply_Status_InProcess,
661: p_document_type => l_doc_type,

Line 660: p_supply_status => INV_Kanban_PVT.G_Supply_Status_InProcess,

656: begin
657: inv_kanban_pvt.update_card_supply_status (
658: x_return_status => l_status,
659: p_kanban_card_id => wjsi_row.kanban_card_id,
660: p_supply_status => INV_Kanban_PVT.G_Supply_Status_InProcess,
661: p_document_type => l_doc_type,
662: p_document_header_id => l_doc_header_id);
663: exception
664: when others then