DBA Data[Home] [Help]

APPS.FLM_KANBANCARD_PUB dependencies on INV_GLOBALS

Line 1012: l_transaction_source_type_id := INV_GLOBALS.G_SOURCETYPE_INTREQ; --7

1008: -- get the receiving tolerance value and set transaction source type based on kanban source type
1009: if l_source_type = INV_Kanban_PVT.G_Source_Type_InterOrg then
1010: mydebug('Kanban card source type= Inter Org');
1011: l_rcv_tolerance := flm_kanban_config_params.get_kanban_tol_fs_inter(l_kanban_card_rec.organization_id);
1012: l_transaction_source_type_id := INV_GLOBALS.G_SOURCETYPE_INTREQ; --7
1013: elsif l_source_type = INV_Kanban_PVT.G_Source_Type_Supplier then
1014: mydebug('Kanban card source type= Supplier');
1015: l_rcv_tolerance := flm_kanban_config_params.get_kanban_tol_fs_supplier(l_kanban_card_rec.organization_id);
1016: l_transaction_source_type_id := INV_GLOBALS.G_SOURCETYPE_PURCHASEORDER; --1

Line 1016: l_transaction_source_type_id := INV_GLOBALS.G_SOURCETYPE_PURCHASEORDER; --1

1012: l_transaction_source_type_id := INV_GLOBALS.G_SOURCETYPE_INTREQ; --7
1013: elsif l_source_type = INV_Kanban_PVT.G_Source_Type_Supplier then
1014: mydebug('Kanban card source type= Supplier');
1015: l_rcv_tolerance := flm_kanban_config_params.get_kanban_tol_fs_supplier(l_kanban_card_rec.organization_id);
1016: l_transaction_source_type_id := INV_GLOBALS.G_SOURCETYPE_PURCHASEORDER; --1
1017: elsif l_source_type = INV_Kanban_PVT.G_Source_Type_IntraOrg then
1018: mydebug('Kanban card source type= Intra Org');
1019: l_rcv_tolerance := flm_kanban_config_params.get_kanban_tol_fs_intra(l_kanban_card_rec.organization_id);
1020: l_transaction_source_type_id := INV_GLOBALS.G_SOURCETYPE_MOVEORDER; --4

Line 1020: l_transaction_source_type_id := INV_GLOBALS.G_SOURCETYPE_MOVEORDER; --4

1016: l_transaction_source_type_id := INV_GLOBALS.G_SOURCETYPE_PURCHASEORDER; --1
1017: elsif l_source_type = INV_Kanban_PVT.G_Source_Type_IntraOrg then
1018: mydebug('Kanban card source type= Intra Org');
1019: l_rcv_tolerance := flm_kanban_config_params.get_kanban_tol_fs_intra(l_kanban_card_rec.organization_id);
1020: l_transaction_source_type_id := INV_GLOBALS.G_SOURCETYPE_MOVEORDER; --4
1021: elsif l_source_type = INV_Kanban_PVT.G_Source_Type_Production then
1022: mydebug('Kanban card source type= Production');
1023: l_rcv_tolerance := flm_kanban_config_params.get_kanban_tol_fs_prod(l_kanban_card_rec.organization_id);
1024: l_transaction_source_type_id := INV_GLOBALS.G_SOURCETYPE_WIP; --5

Line 1024: l_transaction_source_type_id := INV_GLOBALS.G_SOURCETYPE_WIP; --5

1020: l_transaction_source_type_id := INV_GLOBALS.G_SOURCETYPE_MOVEORDER; --4
1021: elsif l_source_type = INV_Kanban_PVT.G_Source_Type_Production then
1022: mydebug('Kanban card source type= Production');
1023: l_rcv_tolerance := flm_kanban_config_params.get_kanban_tol_fs_prod(l_kanban_card_rec.organization_id);
1024: l_transaction_source_type_id := INV_GLOBALS.G_SOURCETYPE_WIP; --5
1025: end if;
1026:
1027: mydebug('receiving_tolerance='||l_rcv_tolerance);
1028: