DBA Data[Home] [Help]

APPS.INV_LABEL dependencies on INV_LABEL_PVT8

Line 30: INV_LABEL_PVT8.clear_carton_count;

26: *************************/
27: PROCEDURE CLEAR_GLOBALS IS
28: BEGIN
29: INV_LABEL_PVT3.g_lpn_id := -1;
30: INV_LABEL_PVT8.clear_carton_count;
31: END CLEAR_GLOBALS;
32:
33: /************************************
34: * Get numbers between a range

Line 644: INV_LABEL_PVT8.get_variable_data(

640: END;
641:
642: ELSIF p_label_type_info.label_type_id = 8 THEN
643: BEGIN
644: INV_LABEL_PVT8.get_variable_data(
645: x_variable_content => x_variable_content
646: ,x_msg_count => x_msg_count
647: ,x_msg_data => x_msg_data
648: ,x_return_status => x_return_status

Line 2735: --INV_LABEL_PVT8.g_carton_table := p_transaction_id;

2731:
2732: /*Fix for bug 3858504. For cartonization we will store
2733: the table of LPN IDs for shipping content label */
2734: IF p_business_flow_code = 22 THEN
2735: --INV_LABEL_PVT8.g_carton_table := p_transaction_id;
2736: -- 4645826, call set_carton_count to count the total number of cartons for delivery
2737: -- Pick release can be run for multiple deliveries
2738: -- The count of p_transaction_id can be for multiple deliveries
2739: -- Need to count the total for each delivery

Line 2741: INV_LABEL_PVT8.set_carton_count(p_transaction_id(i));

2737: -- Pick release can be run for multiple deliveries
2738: -- The count of p_transaction_id can be for multiple deliveries
2739: -- Need to count the total for each delivery
2740: FOR i IN 1..p_transaction_id.count LOOP
2741: INV_LABEL_PVT8.set_carton_count(p_transaction_id(i));
2742: END LOOP;
2743: END IF; --End of Fix for bug 3858504.
2744:
2745: