DBA Data[Home] [Help]

APPS.WIP_JSI_VALIDATOR dependencies on INV_KANBAN_PVT

Line 652: l_doc_type := INV_Kanban_PVT.G_doc_type_Discrete_Job ;

648:
649: l_msg := 'WIP_ML_KB_UPDATE_FAILED';
650: l_doc_header_id := wjsi_row.wip_entity_id ;
651: if(wjsi_row.load_type = wip_constants.create_job) then
652: l_doc_type := INV_Kanban_PVT.G_doc_type_Discrete_Job ;
653: elsif(wjsi_row.load_type = wip_constants.create_sched) then
654: l_doc_type := INV_Kanban_PVT.G_doc_type_Rep_Schedule ;
655: else
656: raise fnd_api.g_exc_unexpected_error;

Line 654: l_doc_type := INV_Kanban_PVT.G_doc_type_Rep_Schedule ;

650: l_doc_header_id := wjsi_row.wip_entity_id ;
651: if(wjsi_row.load_type = wip_constants.create_job) then
652: l_doc_type := INV_Kanban_PVT.G_doc_type_Discrete_Job ;
653: elsif(wjsi_row.load_type = wip_constants.create_sched) then
654: l_doc_type := INV_Kanban_PVT.G_doc_type_Rep_Schedule ;
655: else
656: raise fnd_api.g_exc_unexpected_error;
657: end if;
658:

Line 662: inv_kanban_pvt.update_card_supply_status (

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

Line 665: p_supply_status => INV_Kanban_PVT.G_Supply_Status_InProcess,

661: begin
662: inv_kanban_pvt.update_card_supply_status (
663: x_return_status => l_status,
664: p_kanban_card_id => wjsi_row.kanban_card_id,
665: p_supply_status => INV_Kanban_PVT.G_Supply_Status_InProcess,
666: p_document_type => l_doc_type,
667: p_document_header_id => l_doc_header_id);
668: exception
669: when others then