DBA Data[Home] [Help]

APPS.INV_LOGICAL_TRANSACTIONS_PVT dependencies on MTL_SERIAL_CHECK

Line 2162: debug_print('Before calling MTL_SERIAL_CHECK.INV_SERIAL_INFO', 9);

2158: debug_print('INV_SERIAL_NUMBER_PUB.generate_serials returns l_retval = '
2159: || l_retval, 9);
2160: debug_print('l_start_ser = ' || l_start_ser, 9);
2161: debug_print('l_end_ser = ' || l_end_ser, 9);
2162: debug_print('Before calling MTL_SERIAL_CHECK.INV_SERIAL_INFO', 9);
2163: END IF;
2164:
2165: -- get the prefix and from number of the start serial number
2166: IF NOT MTL_SERIAL_CHECK.INV_SERIAL_INFO

Line 2166: IF NOT MTL_SERIAL_CHECK.INV_SERIAL_INFO

2162: debug_print('Before calling MTL_SERIAL_CHECK.INV_SERIAL_INFO', 9);
2163: END IF;
2164:
2165: -- get the prefix and from number of the start serial number
2166: IF NOT MTL_SERIAL_CHECK.INV_SERIAL_INFO
2167: (p_from_serial_number => l_start_ser,
2168: p_to_serial_number => l_end_ser,
2169: x_prefix => l_ser_prefix,
2170: x_quantity => l_qty,

Line 2176: debug_print('MTL_SERIAL_CHECK.INV_SERIAL_INFO returns error', 9);

2172: x_to_number => l_to_ser_num,
2173: x_errorcode => l_errorcode) THEN
2174:
2175: IF (l_debug = 1) THEN
2176: debug_print('MTL_SERIAL_CHECK.INV_SERIAL_INFO returns error', 9);
2177: debug_print('error code: ' || l_errorcode, 9);
2178: END IF;
2179:
2180: FND_MESSAGE.SET_NAME('INV', 'INV_GET_SER_INFO_ERR');

Line 2186: debug_print('MTL_SERIAL_CHECK.INV_SERIAL_INFO returns true', 9);

2182: RAISE FND_API.G_EXC_ERROR;
2183: END IF;
2184:
2185: IF (l_debug = 1) THEN
2186: debug_print('MTL_SERIAL_CHECK.INV_SERIAL_INFO returns true', 9);
2187: debug_print('l_ser_prefix = ' || l_ser_prefix, 9);
2188: debug_print('l_qty = ' || l_qty, 9);
2189: debug_print('l_from_ser_num = ' || l_from_ser_num, 9);
2190: debug_print('l_to_ser_num = ' || l_to_ser_num, 9);