DBA Data[Home] [Help]

APPS.WMS_ENGINE_PVT dependencies on WMS_INSTALL

Line 788: l_wms_installed BOOLEAN := TRUE;

784: l_wms_txn_temp_tbl_size NUMBER;
785: l_debug NUMBER;
786:
787: -- Added for Bug 6063903
788: l_wms_installed BOOLEAN := TRUE;
789: x_api_return_status VARCHAR2(2);
790: x_msg_count NUMBER;
791: x_msg_data VARCHAR2(2000);
792: -- Added for Bug 6063903

Line 862: l_wms_installed := WMS_INSTALL.check_install(

858: we are setting the l_wms_txn_temp_tbl(l_wms_txn_temp_tbl_size).to_cost_group_id as Null
859: as in inventory organization, cost group of Subinventory can be different from cost
860: group of desitnation subivnentory. Correct CG will get populated at a later stage.
861: */
862: l_wms_installed := WMS_INSTALL.check_install(
863: x_return_status => x_api_return_status,
864: x_msg_count => x_msg_count,
865: x_msg_data => x_msg_data,
866: p_organization_id => p_request_line_rec.organization_id);

Line 872: IF not (l_wms_installed) THEN -- Added for Bug 6063903

868: --get to_cost_group id
869: -- if cost group on the move order line is not null, use it
870: -- if it is null, use the from_cost_group
871: IF (p_request_line_rec.to_cost_group_id IS NULL) THEN
872: IF not (l_wms_installed) THEN -- Added for Bug 6063903
873: l_wms_txn_temp_tbl(l_wms_txn_temp_tbl_size).to_cost_group_id := null; -- Added for Bug 6063903
874: ELSIF (l_wms_installed) THEN -- Added for Bug 6063903
875: l_wms_txn_temp_tbl(l_wms_txn_temp_tbl_size).to_cost_group_id := l_put_input_rec.from_cost_group_id;
876: END IF;

Line 874: ELSIF (l_wms_installed) THEN -- Added for Bug 6063903

870: -- if it is null, use the from_cost_group
871: IF (p_request_line_rec.to_cost_group_id IS NULL) THEN
872: IF not (l_wms_installed) THEN -- Added for Bug 6063903
873: l_wms_txn_temp_tbl(l_wms_txn_temp_tbl_size).to_cost_group_id := null; -- Added for Bug 6063903
874: ELSIF (l_wms_installed) THEN -- Added for Bug 6063903
875: l_wms_txn_temp_tbl(l_wms_txn_temp_tbl_size).to_cost_group_id := l_put_input_rec.from_cost_group_id;
876: END IF;
877: ELSE
878: l_wms_txn_temp_tbl(l_wms_txn_temp_tbl_size).to_cost_group_id := p_request_line_rec.to_cost_group_id;

Line 1720: l_wms_installed BOOLEAN := TRUE; --added for bug 8292754

1716:
1717: -- LG convergence add
1718: l_pp_transaction_temp_id NUMBER;
1719: -- end LG convergence add
1720: l_wms_installed BOOLEAN := TRUE; --added for bug 8292754
1721: x_api_return_status VARCHAR2(2); --added for bug 8292754
1722: l_return_val BOOLEAN; --added for bug 9210454
1723:
1724: l_sec_qty_round_mode VARCHAR2(1);

Line 2536: l_wms_installed := WMS_INSTALL.check_install(

2532: --8809951 end
2533:
2534: --start change for bug 8292754
2535: --checking if org is wms enabled .Added for bug 8292754
2536: l_wms_installed := WMS_INSTALL.check_install(
2537: x_return_status => x_api_return_status,
2538: x_msg_count => x_msg_count,
2539: x_msg_data => x_msg_data,
2540: p_organization_id => l_request_line_rec.organization_id);

Line 2552: AND ((l_request_context.transaction_source_type_id <> 2 AND l_wms_installed= FALSE )

2548: l_task_id := nvl(l_task_id, -7777);
2549: ELSE -- Added for 10379126
2550:
2551: IF (l_allow_cross_proj_issues = 'Y')
2552: AND ((l_request_context.transaction_source_type_id <> 2 AND l_wms_installed= FALSE )
2553: OR (l_wms_installed = TRUE))
2554: THEN
2555: log_procedure(l_api_name, 'l_allow_cross_proj_issues', 'Nulling project and Task ');
2556: l_project_id := NULL;

Line 2553: OR (l_wms_installed = TRUE))

2549: ELSE -- Added for 10379126
2550:
2551: IF (l_allow_cross_proj_issues = 'Y')
2552: AND ((l_request_context.transaction_source_type_id <> 2 AND l_wms_installed= FALSE )
2553: OR (l_wms_installed = TRUE))
2554: THEN
2555: log_procedure(l_api_name, 'l_allow_cross_proj_issues', 'Nulling project and Task ');
2556: l_project_id := NULL;
2557: l_task_id := NULL;

Line 2581: IF (l_wms_installed= FALSE AND inv_cache.item_rec.end_assembly_pegging_flag IN ('A','Y','B')) THEN

2577: WHEN OTHERS THEN
2578: NULL;
2579: END;
2580:
2581: IF (l_wms_installed= FALSE AND inv_cache.item_rec.end_assembly_pegging_flag IN ('A','Y','B')) THEN
2582: log_procedure(l_api_name, 'Soft Pegged Item in INV org', 'Nulling project and Task for soft pegged item ');
2583: l_project_id := NULL;
2584: l_task_id := NULL;
2585: END IF;