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 680: INV_LABEL_PVT8.get_variable_data(

676: END;
677:
678: ELSIF p_label_type_info.label_type_id = 8 THEN
679: BEGIN
680: INV_LABEL_PVT8.get_variable_data(
681: x_variable_content => x_variable_content
682: ,x_msg_count => x_msg_count
683: ,x_msg_data => x_msg_data
684: ,x_return_status => x_return_status

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

2801:
2802: /*Fix for bug 3858504. For cartonization we will store
2803: the table of LPN IDs for shipping content label */
2804: IF p_business_flow_code = 22 THEN
2805: --INV_LABEL_PVT8.g_carton_table := p_transaction_id;
2806: -- 4645826, call set_carton_count to count the total number of cartons for delivery
2807: -- Pick release can be run for multiple deliveries
2808: -- The count of p_transaction_id can be for multiple deliveries
2809: -- Need to count the total for each delivery

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

2807: -- Pick release can be run for multiple deliveries
2808: -- The count of p_transaction_id can be for multiple deliveries
2809: -- Need to count the total for each delivery
2810: FOR i IN 1..p_transaction_id.count LOOP
2811: INV_LABEL_PVT8.set_carton_count(p_transaction_id(i));
2812: END LOOP;
2813: END IF; --End of Fix for bug 3858504.
2814:
2815: