DBA Data[Home] [Help]

APPS.INV_DETAIL_UTIL_PVT dependencies on FND_MESSAGE

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

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

Line 250: fnd_message.set_token

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

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

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

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

545: -- using mso header id as the demand source header id
546: x_request_context.txn_header_id :=
547: inv_salesorder.get_salesorder_for_oeheader(x_request_context.txn_header_id);
548: IF x_request_context.txn_header_id IS NULL THEN
549: FND_MESSAGE.SET_NAME('INV','INV_COULD_NOT_GET_MSO_HEADER');
550: FND_MSG_PUB.Add;
551: RAISE fnd_api.g_exc_unexpected_error;
552: END IF;
553: END IF;

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

1159: -- Validation and Initialization
1160: --
1161: print_debug('in inv validate and init');
1162: IF p_request_line_id IS NULL THEN
1163: fnd_message.set_name('INV','INV_PP_TRX_REQ_LINE_ID_MISS');
1164: fnd_msg_pub.add;
1165: RAISE fnd_api.g_exc_error;
1166: END IF;
1167: --

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

1886: WHEN OTHERS THEN
1887: IF ( l_debug = 1 ) THEN
1888: print_debug('Get_User_Serial_Numbers returned duplicate serials', 1);
1889: END IF;
1890: fnd_message.set_name('INV', 'INV_DUPLICATE_SERIAL');
1891: fnd_msg_pub.ADD;
1892: RAISE fnd_api.g_exc_error;
1893: END;
1894:

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

3199: END LOOP;
3200: x_return_status := fnd_api.g_ret_sts_success;
3201: EXCEPTION
3202: WHEN OTHERS THEN
3203: FND_MESSAGE.SET_NAME('INV','INV_UPD_RSV_FAILED');
3204: FND_MSG_PUB.Add;
3205: x_return_status := fnd_api.g_ret_sts_unexp_error;
3206: END update_detailed_quantities;
3207: --

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

3833: get_acct_period_id(p_request_line_rec.to_organization_id,
3834: l_today);
3835: END IF;
3836: IF l_mmtt_tbl(l_mmtt_tbl_size).acct_period_id = -1 THEN
3837: FND_MESSAGE.SET_NAME('INV', 'INV_NO_OPEN_PERIOD');
3838: FND_MSG_PUB.add;
3839: x_return_status := FND_API.G_RET_STS_ERROR;
3840: raise FND_API.G_EXC_ERROR;
3841: END IF;