DBA Data[Home] [Help]

APPS.EC_DOCUMENT dependencies on FND_MSG_PUB

Line 61: fnd_msg_pub.initialize;

57: RAISE fnd_api.g_exc_unexpected_error;
58: END IF;
59:
60: IF fnd_api.to_Boolean(p_init_msg_list) THEN
61: fnd_msg_pub.initialize;
62: END IF;
63:
64: x_return_status := fnd_api.g_ret_sts_success;
65:

Line 123: fnd_msg_pub.count_and_get(

119: COMMIT WORK;
120: end if;
121:
122: -- Standard call to get message count and if count is 1, get message info.
123: fnd_msg_pub.count_and_get(
124: p_count => x_msg_count,
125: p_data => x_msg_data);
126:
127: EXCEPTION

Line 131: fnd_msg_pub.count_and_get(p_count => x_msg_count,

127: EXCEPTION
128: WHEN fnd_api.g_exc_error THEN
129: ROLLBACK TO ECSEND_PUB;
130: x_return_status := fnd_api.g_ret_sts_error;
131: fnd_msg_pub.count_and_get(p_count => x_msg_count,
132: p_data => x_msg_data);
133: WHEN fnd_api.g_exc_unexpected_error THEN
134: ROLLBACK TO ECSEND_PUB;
135: x_return_status := fnd_api.g_ret_sts_unexp_error;

Line 136: fnd_msg_pub.count_and_get(p_count => x_msg_count,

132: p_data => x_msg_data);
133: WHEN fnd_api.g_exc_unexpected_error THEN
134: ROLLBACK TO ECSEND_PUB;
135: x_return_status := fnd_api.g_ret_sts_unexp_error;
136: fnd_msg_pub.count_and_get(p_count => x_msg_count,
137: p_data => x_msg_data);
138: WHEN OTHERS THEN
139: ROLLBACK TO ECSEND_PUB;
140: x_return_status := fnd_api.g_ret_sts_unexp_error;

Line 141: IF fnd_msg_pub.Check_Msg_Level

137: p_data => x_msg_data);
138: WHEN OTHERS THEN
139: ROLLBACK TO ECSEND_PUB;
140: x_return_status := fnd_api.g_ret_sts_unexp_error;
141: IF fnd_msg_pub.Check_Msg_Level
142: (fnd_msg_pub.G_MSG_LVL_UNEXP_ERROR) THEN
143: fnd_msg_pub.add_exc_msg(G_PKG_NAME, l_api_name);
144: END IF;
145: fnd_msg_pub.count_and_get(p_count => x_msg_count,

Line 142: (fnd_msg_pub.G_MSG_LVL_UNEXP_ERROR) THEN

138: WHEN OTHERS THEN
139: ROLLBACK TO ECSEND_PUB;
140: x_return_status := fnd_api.g_ret_sts_unexp_error;
141: IF fnd_msg_pub.Check_Msg_Level
142: (fnd_msg_pub.G_MSG_LVL_UNEXP_ERROR) THEN
143: fnd_msg_pub.add_exc_msg(G_PKG_NAME, l_api_name);
144: END IF;
145: fnd_msg_pub.count_and_get(p_count => x_msg_count,
146: p_data => x_msg_data);

Line 143: fnd_msg_pub.add_exc_msg(G_PKG_NAME, l_api_name);

139: ROLLBACK TO ECSEND_PUB;
140: x_return_status := fnd_api.g_ret_sts_unexp_error;
141: IF fnd_msg_pub.Check_Msg_Level
142: (fnd_msg_pub.G_MSG_LVL_UNEXP_ERROR) THEN
143: fnd_msg_pub.add_exc_msg(G_PKG_NAME, l_api_name);
144: END IF;
145: fnd_msg_pub.count_and_get(p_count => x_msg_count,
146: p_data => x_msg_data);
147: END send;

Line 145: fnd_msg_pub.count_and_get(p_count => x_msg_count,

141: IF fnd_msg_pub.Check_Msg_Level
142: (fnd_msg_pub.G_MSG_LVL_UNEXP_ERROR) THEN
143: fnd_msg_pub.add_exc_msg(G_PKG_NAME, l_api_name);
144: END IF;
145: fnd_msg_pub.count_and_get(p_count => x_msg_count,
146: p_data => x_msg_data);
147: END send;
148:
149: