DBA Data[Home] [Help]

APPS.WMS_ENGINE_PVT dependencies on WMS_INSTALL

Line 784: l_wms_installed BOOLEAN := TRUE;

780: l_wms_txn_temp_tbl_size NUMBER;
781: l_debug NUMBER;
782:
783: -- Added for Bug 6063903
784: l_wms_installed BOOLEAN := TRUE;
785: x_api_return_status VARCHAR2(2);
786: x_msg_count NUMBER;
787: x_msg_data VARCHAR2(2000);
788: -- Added for Bug 6063903

Line 858: l_wms_installed := WMS_INSTALL.check_install(

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

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

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

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

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