DBA Data[Home] [Help]

APPS.AMS_APPROVAL_SUBMIT_PVT dependencies on FND_MSG_PUB

Line 163: Fnd_Msg_Pub.ADD;

159: WHERE claim_id = p_object_id;
160: -- extend for other objects too
161: ELSE
162: Fnd_Message.Set_Name('AMS','AMS_BAD_APPROVAL_OBJECT_TYPE');
163: Fnd_Msg_Pub.ADD;
164: x_return_status := Fnd_Api.G_RET_STS_ERROR;
165: RETURN;
166: END IF ;
167:

Line 178: Fnd_Msg_Pub.ADD;

174:
175: IF l_obj_details%NOTFOUND THEN
176: CLOSE l_obj_details;
177: Fnd_Message.Set_Name('AMS','AMS_APPR_BAD_DETAILS');
178: Fnd_Msg_Pub.ADD;
179: x_return_status := Fnd_Api.G_RET_STS_ERROR;
180: RETURN;
181: END IF;
182: CLOSE l_obj_details;

Line 194: FND_MSG_PUB.initialize;

190: -- Individual Update API's will start and rollback to
191: -- savepoints
192: AMS_Utility_PVT.debug_message (l_full_name || ': Start');
193: IF FND_API.to_boolean (p_init_msg_list) THEN
194: FND_MSG_PUB.initialize;
195: END IF;
196: IF NOT FND_API.compatible_api_call(
197: l_api_version,
198: p_api_version,

Line 554: fnd_msg_pub.count_and_get(

550: EXCEPTION
551: --ROLLBACK TO submit_approval;
552: WHEN fnd_api.g_exc_error THEN
553: x_return_status := fnd_api.g_ret_sts_error;
554: fnd_msg_pub.count_and_get(
555: p_encoded => fnd_api.g_false
556: ,p_count => x_msg_count
557: ,p_data => x_msg_data);
558: WHEN fnd_api.g_exc_unexpected_error THEN

Line 560: fnd_msg_pub.count_and_get(

556: ,p_count => x_msg_count
557: ,p_data => x_msg_data);
558: WHEN fnd_api.g_exc_unexpected_error THEN
559: x_return_status := fnd_api.g_ret_sts_unexp_error;
560: fnd_msg_pub.count_and_get(
561: p_encoded => fnd_api.g_false
562: ,p_count => x_msg_count
563: ,p_data => x_msg_data);
564: WHEN OTHERS THEN

Line 567: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN

563: ,p_data => x_msg_data);
564: WHEN OTHERS THEN
565: --ROLLBACK TO submit_approval;
566: x_return_status := fnd_api.g_ret_sts_unexp_error;
567: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
568: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
569: END IF;
570: fnd_msg_pub.count_and_get(
571: p_encoded => fnd_api.g_false

Line 568: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);

564: WHEN OTHERS THEN
565: --ROLLBACK TO submit_approval;
566: x_return_status := fnd_api.g_ret_sts_unexp_error;
567: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
568: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
569: END IF;
570: fnd_msg_pub.count_and_get(
571: p_encoded => fnd_api.g_false
572: ,p_count => x_msg_count

Line 570: fnd_msg_pub.count_and_get(

566: x_return_status := fnd_api.g_ret_sts_unexp_error;
567: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
568: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
569: END IF;
570: fnd_msg_pub.count_and_get(
571: p_encoded => fnd_api.g_false
572: ,p_count => x_msg_count
573: ,p_data => x_msg_data);
574: