DBA Data[Home] [Help]

APPS.WMS_TASK_DISPATCH_GEN dependencies on INV_LABEL

Line 5987: l_business_flow_code := inv_label.wms_bf_pick_load;

5983: mydebug('load_pick : Calling the label printing API');
5984: END IF;
5985:
5986: BEGIN
5987: l_business_flow_code := inv_label.wms_bf_pick_load;
5988:
5989: IF l_tran_type_id = 52 THEN -- Picking for sales order
5990: l_business_flow_code := inv_label.wms_bf_pick_load;
5991: ELSIF l_tran_type_id = 35 THEN -- WIP issue

Line 5990: l_business_flow_code := inv_label.wms_bf_pick_load;

5986: BEGIN
5987: l_business_flow_code := inv_label.wms_bf_pick_load;
5988:
5989: IF l_tran_type_id = 52 THEN -- Picking for sales order
5990: l_business_flow_code := inv_label.wms_bf_pick_load;
5991: ELSIF l_tran_type_id = 35 THEN -- WIP issue
5992: l_business_flow_code := inv_label.wms_bf_wip_pick_load;
5993: ELSIF l_tran_type_id = 51
5994: AND l_tran_source_type_id = 13 THEN --Backflush

Line 5992: l_business_flow_code := inv_label.wms_bf_wip_pick_load;

5988:
5989: IF l_tran_type_id = 52 THEN -- Picking for sales order
5990: l_business_flow_code := inv_label.wms_bf_pick_load;
5991: ELSIF l_tran_type_id = 35 THEN -- WIP issue
5992: l_business_flow_code := inv_label.wms_bf_wip_pick_load;
5993: ELSIF l_tran_type_id = 51
5994: AND l_tran_source_type_id = 13 THEN --Backflush
5995: l_business_flow_code := inv_label.wms_bf_wip_pick_load;
5996: ELSIF l_tran_type_id = 64

Line 5995: l_business_flow_code := inv_label.wms_bf_wip_pick_load;

5991: ELSIF l_tran_type_id = 35 THEN -- WIP issue
5992: l_business_flow_code := inv_label.wms_bf_wip_pick_load;
5993: ELSIF l_tran_type_id = 51
5994: AND l_tran_source_type_id = 13 THEN --Backflush
5995: l_business_flow_code := inv_label.wms_bf_wip_pick_load;
5996: ELSIF l_tran_type_id = 64
5997: AND l_tran_source_type_id = 4 THEN --Replenishment
5998: l_business_flow_code := inv_label.wms_bf_replenishment_load;
5999: END IF;

Line 5998: l_business_flow_code := inv_label.wms_bf_replenishment_load;

5994: AND l_tran_source_type_id = 13 THEN --Backflush
5995: l_business_flow_code := inv_label.wms_bf_wip_pick_load;
5996: ELSIF l_tran_type_id = 64
5997: AND l_tran_source_type_id = 4 THEN --Replenishment
5998: l_business_flow_code := inv_label.wms_bf_replenishment_load;
5999: END IF;
6000: /*Added if else for 3451284. We will print labels for only this transaction temp id , except in the case of bulk pick
6001: where will continue with the old code of using transaction header id*/
6002: IF (l_bulk_pick_flag = 0) THEN --if its not a bulk pick task only print lable for the transaction temp id.

Line 6010: inv_label.print_label_wrap(

6006: IF (l_debug = 1) THEN
6007: mydebug('load_pick: Calling label printing for transaction:' || x_temp_id);
6008: END IF;
6009:
6010: inv_label.print_label_wrap(
6011: x_return_status => l_return_status
6012: , x_msg_count => x_msg_count
6013: , x_msg_data => x_msg_data
6014: , x_label_status => l_label_status

Line 6035: inv_label.print_label_wrap(

6031: IF (l_debug = 1) THEN
6032: mydebug('load_pick: Calling label printing for transaction:' || l_temp_id);
6033: END IF;
6034:
6035: inv_label.print_label_wrap(
6036: x_return_status => l_return_status
6037: , x_msg_count => x_msg_count
6038: , x_msg_data => x_msg_data
6039: , x_label_status => l_label_status

Line 11228: l_flow := inv_label.wms_bf_pick_drop;

11224: IF (l_debug = 1) THEN
11225: mydebug('pick_drop: Determining business flow code...');
11226: END IF;
11227:
11228: l_flow := inv_label.wms_bf_pick_drop;
11229:
11230: IF l_tran_type_id = 52 THEN -- Picking for sales order
11231: l_flow := inv_label.wms_bf_pick_drop;
11232: ELSIF l_tran_type_id = 35 THEN -- WIP issue

Line 11231: l_flow := inv_label.wms_bf_pick_drop;

11227:
11228: l_flow := inv_label.wms_bf_pick_drop;
11229:
11230: IF l_tran_type_id = 52 THEN -- Picking for sales order
11231: l_flow := inv_label.wms_bf_pick_drop;
11232: ELSIF l_tran_type_id = 35 THEN -- WIP issue
11233: l_flow := inv_label.wms_bf_wip_pick_drop;
11234: ELSIF l_tran_type_id = 51
11235: AND l_tran_source_type_id = 13 THEN --Backflush

Line 11233: l_flow := inv_label.wms_bf_wip_pick_drop;

11229:
11230: IF l_tran_type_id = 52 THEN -- Picking for sales order
11231: l_flow := inv_label.wms_bf_pick_drop;
11232: ELSIF l_tran_type_id = 35 THEN -- WIP issue
11233: l_flow := inv_label.wms_bf_wip_pick_drop;
11234: ELSIF l_tran_type_id = 51
11235: AND l_tran_source_type_id = 13 THEN --Backflush
11236: l_flow := inv_label.wms_bf_wip_pick_drop;
11237: ELSIF l_tran_action_id = 2

Line 11236: l_flow := inv_label.wms_bf_wip_pick_drop;

11232: ELSIF l_tran_type_id = 35 THEN -- WIP issue
11233: l_flow := inv_label.wms_bf_wip_pick_drop;
11234: ELSIF l_tran_type_id = 51
11235: AND l_tran_source_type_id = 13 THEN --Backflush
11236: l_flow := inv_label.wms_bf_wip_pick_drop;
11237: ELSIF l_tran_action_id = 2
11238: AND l_tran_source_type_id IN(4, 13) THEN --Replenishment
11239: l_flow := inv_label.wms_bf_replenishment_drop;
11240: END IF;

Line 11239: l_flow := inv_label.wms_bf_replenishment_drop;

11235: AND l_tran_source_type_id = 13 THEN --Backflush
11236: l_flow := inv_label.wms_bf_wip_pick_drop;
11237: ELSIF l_tran_action_id = 2
11238: AND l_tran_source_type_id IN(4, 13) THEN --Replenishment
11239: l_flow := inv_label.wms_bf_replenishment_drop;
11240: END IF;
11241:
11242: IF (l_debug = 1) THEN
11243: mydebug('pick_drop: l_txn_header_id= ' || l_txn_header_id);

Line 11668: IF l_flow = inv_label.wms_bf_pick_drop THEN

11664: -- Release 12 Shipping Content Enhancement 4645826
11665: -- For Pick Drop, call label printing after TM, do not pass business flow to TM
11666: -- For other business flow, call labels through TM
11667:
11668: IF l_flow = inv_label.wms_bf_pick_drop THEN
11669: l_txn_ret := inv_lpn_trx_pub.process_lpn_trx
11670: ( p_trx_hdr_id => l_txn_header_id
11671: , p_commit => fnd_api.g_false
11672: , p_proc_mode => 1

Line 12287: IF l_flow = inv_label.wms_bf_pick_drop THEN

12283: -- For Pick Drop, call label printing after TM,
12284: IF (l_debug = 1) THEN
12285: mydebug('Pick Drop, calling label printing API with l_lpn_id '||nvl(l_xfrlpnid,nvl(l_transfer_lpn_id, l_content_lpn_id)));
12286: END IF;
12287: IF l_flow = inv_label.wms_bf_pick_drop THEN
12288: INV_LABEL.PRINT_LABEL_MANUAL_WRAP(
12289: x_return_status => l_return_status
12290: , x_msg_count => l_msg_count
12291: , x_msg_data => l_msg_data

Line 12288: INV_LABEL.PRINT_LABEL_MANUAL_WRAP(

12284: IF (l_debug = 1) THEN
12285: mydebug('Pick Drop, calling label printing API with l_lpn_id '||nvl(l_xfrlpnid,nvl(l_transfer_lpn_id, l_content_lpn_id)));
12286: END IF;
12287: IF l_flow = inv_label.wms_bf_pick_drop THEN
12288: INV_LABEL.PRINT_LABEL_MANUAL_WRAP(
12289: x_return_status => l_return_status
12290: , x_msg_count => l_msg_count
12291: , x_msg_data => l_msg_data
12292: , x_label_status => l_label_status