DBA Data[Home] [Help]

APPS.INV_LABEL_PVT4 dependencies on FND_MESSAGE

Line 2274: FND_MESSAGE.SET_NAME('WMS', 'WMS_LABL_RULE_ENGINE_FAILED');

2270: x_label_format =>l_label_format,
2271: x_label_request_id =>l_label_request_id);
2272:
2273: IF l_return_status <> 'S' THEN
2274: FND_MESSAGE.SET_NAME('WMS', 'WMS_LABL_RULE_ENGINE_FAILED');
2275: FND_MSG_PUB.ADD;
2276: l_label_format_set_id:= p_label_type_info.default_format_id;
2277: l_label_format := p_label_type_info.default_format_name;
2278: END IF;

Line 2353: FND_MESSAGE.SET_NAME('WMS', 'WMS_LABL_RULE_ENGINE_FAILED');

2349: x_label_format =>l_label_format,
2350: x_label_request_id =>l_label_request_id);
2351:
2352: IF l_return_status <> 'S' THEN
2353: FND_MESSAGE.SET_NAME('WMS', 'WMS_LABL_RULE_ENGINE_FAILED');
2354: FND_MSG_PUB.ADD;
2355: l_label_format_id:= p_label_type_info.default_format_id;
2356: l_label_format := p_label_type_info.default_format_name;
2357: END IF;

Line 2634: fnd_message.set_name('WMS','WMS_CS_NULL_VALUE_RETURNED');

2630:
2631: IF (c_sql_stmt%rowcount=1 AND l_sql_stmt_result IS NULL) THEN
2632: x_return_status := FND_API.G_RET_STS_SUCCESS;
2633: l_custom_sql_ret_status := INV_LABEL.G_WARNING;
2634: fnd_message.set_name('WMS','WMS_CS_NULL_VALUE_RETURNED');
2635: fnd_msg_pub.ADD;
2636: -- Fix for bug: 4179593 Start
2637: --fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false, p_count => x_msg_count, p_data => l_custom_sql_ret_msg);
2638: l_custom_sql_ret_msg := fnd_msg_pub.get(p_msg_index => fnd_msg_pub.g_last, p_encoded => fnd_api.g_false);

Line 2655: fnd_message.set_name('WMS','WMS_CS_NO_DATA_FOUND');

2651: trace('Custom Labels Trace [INVLAP4B.pls]: WARNING: No row returned by the Custom SQL query');
2652: END IF;
2653: x_return_status := FND_API.G_RET_STS_SUCCESS;
2654: l_custom_sql_ret_status := INV_LABEL.G_WARNING;
2655: fnd_message.set_name('WMS','WMS_CS_NO_DATA_FOUND');
2656: fnd_msg_pub.ADD;
2657: /* Replaced following statement for Bug 4207625: Anupam Jain*/
2658: /*fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false, p_count => x_msg_count, p_data => l_custom_sql_ret_status);*/
2659: -- Fix for bug: 4179593 Start

Line 2673: fnd_message.set_name('WMS','WMS_CS_MULTIPLE_VALUES_RETURN');

2669: END IF;
2670: l_sql_stmt_result := NULL;
2671: x_return_status := FND_API.G_RET_STS_SUCCESS;
2672: l_custom_sql_ret_status := FND_API.G_RET_STS_ERROR;
2673: fnd_message.set_name('WMS','WMS_CS_MULTIPLE_VALUES_RETURN');
2674: fnd_msg_pub.ADD;
2675: /* Replaced following statement for Bug 4207625: Anupam Jain*/
2676: /*fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false, p_count => x_msg_count, p_data => l_custom_sql_ret_status);*/
2677: -- Fix for bug: 4179593 Start

Line 2697: fnd_message.set_name('WMS','WMS_CS_WRONG_SQL_CONSTRUCT');

2693: trace('Custom Labels Trace [INVLAP4B.pls]: At Breadcrumb 5');
2694: trace('Custom Labels Trace [INVLAP4B.pls]: Unexpected Error has occured in GET_VARIABLES_DATA');
2695: END IF;
2696: x_return_status := FND_API.G_RET_STS_ERROR;
2697: fnd_message.set_name('WMS','WMS_CS_WRONG_SQL_CONSTRUCT');
2698: fnd_msg_pub.ADD;
2699: fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false, p_count => x_msg_count, p_data => x_msg_data);
2700: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
2701: END;