DBA Data[Home] [Help]

APPS.INV_DETAIL_UTIL_PVT dependencies on FND_MESSAGE

Line 246: fnd_message.set_name('INV','INV_PP_INPUT_LINE_NOTFOUND');

242: print_debug('mo line not found ');
243: IF inv_pp_debug.is_debug_mode THEN
244: inv_pp_debug.send_message_to_pipe('mo line not found');
245: END IF;
246: fnd_message.set_name('INV','INV_PP_INPUT_LINE_NOTFOUND');
247: fnd_message.set_token
248: ('LINE_ID',fnd_number.number_to_canonical(p_move_order_line_id));
249: fnd_msg_pub.ADD;
250: CLOSE l_req_csr;

Line 247: fnd_message.set_token

243: IF inv_pp_debug.is_debug_mode THEN
244: inv_pp_debug.send_message_to_pipe('mo line not found');
245: END IF;
246: fnd_message.set_name('INV','INV_PP_INPUT_LINE_NOTFOUND');
247: fnd_message.set_token
248: ('LINE_ID',fnd_number.number_to_canonical(p_move_order_line_id));
249: fnd_msg_pub.ADD;
250: CLOSE l_req_csr;
251: RAISE fnd_api.g_exc_error;

Line 456: FND_MESSAGE.SET_NAME('INV','INV_COULD_NOT_GET_MSO_HEADER');

452: -- using mso header id as the demand source header id
453: x_request_context.txn_header_id :=
454: inv_salesorder.get_salesorder_for_oeheader(x_request_context.txn_header_id);
455: IF x_request_context.txn_header_id IS NULL THEN
456: FND_MESSAGE.SET_NAME('INV','INV_COULD_NOT_GET_MSO_HEADER');
457: FND_MSG_PUB.Add;
458: RAISE fnd_api.g_exc_unexpected_error;
459: END IF;
460: --

Line 501: FND_MESSAGE.SET_NAME('INV','INV_COULD_NOT_GET_MSO_HEADER');

497: -- using mso header id as the demand source header id
498: x_request_context.txn_header_id :=
499: inv_salesorder.get_salesorder_for_oeheader(x_request_context.txn_header_id);
500: IF x_request_context.txn_header_id IS NULL THEN
501: FND_MESSAGE.SET_NAME('INV','INV_COULD_NOT_GET_MSO_HEADER');
502: FND_MSG_PUB.Add;
503: RAISE fnd_api.g_exc_unexpected_error;
504: END IF;
505: END IF;

Line 1031: fnd_message.set_name('INV','INV_PP_TRX_REQ_LINE_ID_MISS');

1027: -- Validation and Initialization
1028: --
1029: print_debug('in inv validate and init');
1030: IF p_request_line_id IS NULL THEN
1031: fnd_message.set_name('INV','INV_PP_TRX_REQ_LINE_ID_MISS');
1032: fnd_msg_pub.add;
1033: RAISE fnd_api.g_exc_error;
1034: END IF;
1035: --

Line 1757: fnd_message.set_name('INV', 'INV_DUPLICATE_SERIAL');

1753: WHEN OTHERS THEN
1754: IF ( l_debug = 1 ) THEN
1755: print_debug('Get_User_Serial_Numbers returned duplicate serials', 1);
1756: END IF;
1757: fnd_message.set_name('INV', 'INV_DUPLICATE_SERIAL');
1758: fnd_msg_pub.ADD;
1759: RAISE fnd_api.g_exc_error;
1760: END;
1761:

Line 3066: FND_MESSAGE.SET_NAME('INV','INV_UPD_RSV_FAILED');

3062: END LOOP;
3063: x_return_status := fnd_api.g_ret_sts_success;
3064: EXCEPTION
3065: WHEN OTHERS THEN
3066: FND_MESSAGE.SET_NAME('INV','INV_UPD_RSV_FAILED');
3067: FND_MSG_PUB.Add;
3068: x_return_status := fnd_api.g_ret_sts_unexp_error;
3069: END update_detailed_quantities;
3070: --

Line 3418: FND_MESSAGE.SET_NAME('INV', 'INV_NO_OPEN_PERIOD');

3414: get_acct_period_id(p_request_line_rec.to_organization_id,
3415: l_today);
3416: END IF;
3417: IF l_mmtt_tbl(l_mmtt_tbl_size).acct_period_id = -1 THEN
3418: FND_MESSAGE.SET_NAME('INV', 'INV_NO_OPEN_PERIOD');
3419: FND_MSG_PUB.add;
3420: x_return_status := FND_API.G_RET_STS_ERROR;
3421: raise FND_API.G_EXC_ERROR;
3422: END IF;