DBA Data[Home] [Help]

APPS.CSF_MAINTAIN_GRP dependencies on FND_MSG_PUB

Line 49: FND_MSG_PUB.initialize;

45: END IF;
46:
47:
48: -- Initialize message list
49: FND_MSG_PUB.initialize;
50:
51:
52: -- Initialize API return status to SUCCESS
53: x_return_status := FND_API.G_RET_STS_SUCCESS;

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

174: EXCEPTION
175: WHEN fnd_api.g_exc_error THEN
176: ROLLBACK TO Validate_FieldServiceObjects;
177: x_return_status := fnd_api.g_ret_sts_error;
178: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
179:
180: WHEN fnd_api.g_exc_unexpected_error THEN
181: ROLLBACK TO Validate_FieldServiceObjects;
182: x_return_status := fnd_api.g_ret_sts_unexp_error;

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

179:
180: WHEN fnd_api.g_exc_unexpected_error THEN
181: ROLLBACK TO Validate_FieldServiceObjects;
182: x_return_status := fnd_api.g_ret_sts_unexp_error;
183: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
184:
185: WHEN OTHERS THEN
186: x_return_status := fnd_api.g_ret_sts_unexp_error;
187: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN

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

183: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
184:
185: WHEN OTHERS THEN
186: x_return_status := fnd_api.g_ret_sts_unexp_error;
187: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
188: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
189: END IF;
190: ROLLBACK TO Validate_FieldServiceObjects;
191: END;

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

184:
185: WHEN OTHERS THEN
186: x_return_status := fnd_api.g_ret_sts_unexp_error;
187: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
188: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
189: END IF;
190: ROLLBACK TO Validate_FieldServiceObjects;
191: END;
192:

Line 225: FND_MSG_PUB.initialize;

221: END IF;
222:
223:
224: -- Initialize message list
225: FND_MSG_PUB.initialize;
226:
227: IF (nvl(P_OBJECT_TYPE, 'SR') = 'SR') then
228:
229: -- Initialize API return status to SUCCESS

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

785: EXCEPTION
786: WHEN fnd_api.g_exc_error THEN
787: ROLLBACK TO Purge_FieldServiceObjects;
788: x_return_status := fnd_api.g_ret_sts_error;
789: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
790:
791: WHEN fnd_api.g_exc_unexpected_error THEN
792: ROLLBACK TO Purge_FieldServiceObjects;
793: x_return_status := fnd_api.g_ret_sts_unexp_error;

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

790:
791: WHEN fnd_api.g_exc_unexpected_error THEN
792: ROLLBACK TO Purge_FieldServiceObjects;
793: x_return_status := fnd_api.g_ret_sts_unexp_error;
794: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
795:
796: WHEN OTHERS THEN
797: x_return_status := fnd_api.g_ret_sts_unexp_error;
798: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN

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

794: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
795:
796: WHEN OTHERS THEN
797: x_return_status := fnd_api.g_ret_sts_unexp_error;
798: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
799: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
800: END IF;
801: ROLLBACK TO Purge_FieldServiceObjects;
802:

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

795:
796: WHEN OTHERS THEN
797: x_return_status := fnd_api.g_ret_sts_unexp_error;
798: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
799: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
800: END IF;
801: ROLLBACK TO Purge_FieldServiceObjects;
802:
803: