DBA Data[Home] [Help]

APPS.INV_LOGICAL_TRANSACTIONS_PVT dependencies on MTL_SERIAL_CHECK

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

2210: debug_print('INV_SERIAL_NUMBER_PUB.generate_serials returns l_retval = '
2211: || l_retval, 9);
2212: debug_print('l_start_ser = ' || l_start_ser, 9);
2213: debug_print('l_end_ser = ' || l_end_ser, 9);
2214: debug_print('Before calling MTL_SERIAL_CHECK.INV_SERIAL_INFO', 9);
2215: END IF;
2216:
2217: -- get the prefix and from number of the start serial number
2218: IF NOT MTL_SERIAL_CHECK.INV_SERIAL_INFO

Line 2218: IF NOT MTL_SERIAL_CHECK.INV_SERIAL_INFO

2214: debug_print('Before calling MTL_SERIAL_CHECK.INV_SERIAL_INFO', 9);
2215: END IF;
2216:
2217: -- get the prefix and from number of the start serial number
2218: IF NOT MTL_SERIAL_CHECK.INV_SERIAL_INFO
2219: (p_from_serial_number => l_start_ser,
2220: p_to_serial_number => l_end_ser,
2221: x_prefix => l_ser_prefix,
2222: x_quantity => l_qty,

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

2224: x_to_number => l_to_ser_num,
2225: x_errorcode => l_errorcode) THEN
2226:
2227: IF (l_debug = 1) THEN
2228: debug_print('MTL_SERIAL_CHECK.INV_SERIAL_INFO returns error', 9);
2229: debug_print('error code: ' || l_errorcode, 9);
2230: END IF;
2231:
2232: FND_MESSAGE.SET_NAME('INV', 'INV_GET_SER_INFO_ERR');

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

2234: RAISE FND_API.G_EXC_ERROR;
2235: END IF;
2236:
2237: IF (l_debug = 1) THEN
2238: debug_print('MTL_SERIAL_CHECK.INV_SERIAL_INFO returns true', 9);
2239: debug_print('l_ser_prefix = ' || l_ser_prefix, 9);
2240: debug_print('l_qty = ' || l_qty, 9);
2241: debug_print('l_from_ser_num = ' || l_from_ser_num, 9);
2242: debug_print('l_to_ser_num = ' || l_to_ser_num, 9);