DBA Data[Home] [Help]

APPS.INV_SERIAL_EO_PVT dependencies on FND_MESSAGE

Line 118: FND_MESSAGE.SET_NAME('INV','INV_PROGRAM_ERROR');

114: ELSIF x_return_status = fnd_api.g_ret_sts_unexp_error THEN
115: IF g_debug = 1 THEN
116: mydebug('Program insert_range_serial has failed with a Unexpected exception');
117: END IF;
118: FND_MESSAGE.SET_NAME('INV','INV_PROGRAM_ERROR');
119: FND_MESSAGE.SET_TOKEN('PROG_NAME','insert_range_serial');
120: fnd_msg_pub.ADD;
121: RAISE g_exc_unexpected_error;
122: END IF;

Line 119: FND_MESSAGE.SET_TOKEN('PROG_NAME','insert_range_serial');

115: IF g_debug = 1 THEN
116: mydebug('Program insert_range_serial has failed with a Unexpected exception');
117: END IF;
118: FND_MESSAGE.SET_NAME('INV','INV_PROGRAM_ERROR');
119: FND_MESSAGE.SET_TOKEN('PROG_NAME','insert_range_serial');
120: fnd_msg_pub.ADD;
121: RAISE g_exc_unexpected_error;
122: END IF;
123:

Line 587: FND_MESSAGE.SET_NAME('INV','INV_PROGRAM_ERROR');

583: ELSIF x_return_status = fnd_api.g_ret_sts_unexp_error THEN
584: IF g_debug = 1 THEN
585: mydebug('Program insert_range_serial has failed with a Unexpected exception');
586: END IF;
587: FND_MESSAGE.SET_NAME('INV','INV_PROGRAM_ERROR');
588: FND_MESSAGE.SET_TOKEN('PROG_NAME','insert_range_serial');
589: fnd_msg_pub.ADD;
590: RAISE g_exc_unexpected_error;
591: END IF;

Line 588: FND_MESSAGE.SET_TOKEN('PROG_NAME','insert_range_serial');

584: IF g_debug = 1 THEN
585: mydebug('Program insert_range_serial has failed with a Unexpected exception');
586: END IF;
587: FND_MESSAGE.SET_NAME('INV','INV_PROGRAM_ERROR');
588: FND_MESSAGE.SET_TOKEN('PROG_NAME','insert_range_serial');
589: fnd_msg_pub.ADD;
590: RAISE g_exc_unexpected_error;
591: END IF;
592:

Line 702: fnd_message.set_name ('INV' , 'INV_FAIL_VALIDATE_SERIAL' );

698:
699: IF (l_validation_status <> 'Y'
700: OR x_return_status <> 'S') THEN
701: --raise error
702: fnd_message.set_name ('INV' , 'INV_FAIL_VALIDATE_SERIAL' );
703: fnd_msg_pub.ADD;
704:
705: RAISE fnd_api.g_exc_error;
706: END IF;