DBA Data[Home] [Help]

APPS.INV_LABEL_PVT7 dependencies on FND_MESSAGE

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

701: p_sales_order_header_id => l_sales_order_header_id
702: );
703:
704: IF l_return_status <> 'S' THEN
705: FND_MESSAGE.SET_NAME('WMS', 'WMS_LABL_RULE_ENGINE_FAILED');
706: FND_MSG_PUB.ADD;
707: l_label_format:= p_label_type_info.default_format_id;
708: l_label_format_id:= p_label_type_info.default_format_name;
709: END IF;

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

872:
873: IF (c_sql_stmt%rowcount=1 AND l_sql_stmt_result IS NULL) THEN
874: x_return_status := FND_API.G_RET_STS_SUCCESS;
875: l_custom_sql_ret_status := INV_LABEL.G_WARNING;
876: fnd_message.set_name('WMS','WMS_CS_NULL_VALUE_RETURNED');
877: fnd_msg_pub.ADD;
878: -- Fix for bug: 4179593 Start
879: --fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false, p_count => x_msg_count, p_data => l_custom_sql_ret_msg);
880: l_custom_sql_ret_msg := fnd_msg_pub.get(p_msg_index => fnd_msg_pub.g_last, p_encoded => fnd_api.g_false);

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

893: trace('Custom Labels Trace [INVLAP7B.pls]: WARNING: No row returned by the Custom SQL query');
894: END IF;
895: x_return_status := FND_API.G_RET_STS_SUCCESS;
896: l_custom_sql_ret_status := INV_LABEL.G_WARNING;
897: fnd_message.set_name('WMS','WMS_CS_NO_DATA_FOUND');
898: fnd_msg_pub.ADD;
899: /* Replaced following statement for Bug 4207625: Anupam Jain*/
900: /*fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false, p_count => x_msg_count, p_data => l_custom_sql_ret_status);*/
901: -- Fix for bug: 4179593 Start

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

911: END IF;
912: l_sql_stmt_result := NULL;
913: x_return_status := FND_API.G_RET_STS_SUCCESS;
914: l_custom_sql_ret_status := FND_API.G_RET_STS_ERROR;
915: fnd_message.set_name('WMS','WMS_CS_MULTIPLE_VALUES_RETURN');
916: fnd_msg_pub.ADD;
917: /* Replaced following statement for Bug 4207625: Anupam Jain*/
918: /*fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false, p_count => x_msg_count, p_data => l_custom_sql_ret_status);*/
919: -- Fix for bug: 4179593 Start

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

935: trace('Custom Labels Trace [INVLAP7B.pls]: At Breadcrumb 5');
936: trace('Custom Labels Trace [INVLAP7B.pls]: Unexpected Error has occured in GET_VARIABLES_DATA');
937: END IF;
938: x_return_status := FND_API.G_RET_STS_ERROR;
939: fnd_message.set_name('WMS','WMS_CS_WRONG_SQL_CONSTRUCT');
940: fnd_msg_pub.ADD;
941: fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false, p_count => x_msg_count, p_data => x_msg_data);
942: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
943: END;