DBA Data[Home] [Help]

APPS.ECE_AP_PAYMENT dependencies on FND_MSG_PUB

Line 57: fnd_msg_pub.initialize;

53: RAISE fnd_api.g_exc_unexpected_error;
54: END IF;
55:
56: IF fnd_api.to_Boolean(p_init_msg_list) THEN
57: fnd_msg_pub.initialize;
58: END IF;
59:
60: x_return_status := fnd_api.g_ret_sts_success;
61: ec_debug.pl (3, 'comes here');*/

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:

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

134: EXCEPTION
135: WHEN fnd_api.g_exc_error THEN
136: ROLLBACK;
137: x_return_status := fnd_api.g_ret_sts_error;
138: fnd_msg_pub.count_and_get(p_count => x_msg_count,
139: p_data => x_msg_data);
140: ec_debug.disable_debug;
141: WHEN fnd_api.g_exc_unexpected_error THEN
142: ROLLBACK;

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

140: ec_debug.disable_debug;
141: WHEN fnd_api.g_exc_unexpected_error THEN
142: ROLLBACK;
143: x_return_status := fnd_api.g_ret_sts_unexp_error;
144: fnd_msg_pub.count_and_get(p_count => x_msg_count,
145: p_data => x_msg_data);
146: ec_debug.disable_debug;
147: WHEN OTHERS THEN
148: ROLLBACK;

Line 150: IF fnd_msg_pub.Check_Msg_Level

146: ec_debug.disable_debug;
147: WHEN OTHERS THEN
148: ROLLBACK;
149: x_return_status := fnd_api.g_ret_sts_unexp_error;
150: IF fnd_msg_pub.Check_Msg_Level
151: (fnd_msg_pub.G_MSG_LVL_UNEXP_ERROR) THEN
152: fnd_msg_pub.add_exc_msg(G_PKG_NAME, l_api_name);
153: END IF;
154: fnd_msg_pub.count_and_get(p_count => x_msg_count,

Line 151: (fnd_msg_pub.G_MSG_LVL_UNEXP_ERROR) THEN

147: WHEN OTHERS THEN
148: ROLLBACK;
149: x_return_status := fnd_api.g_ret_sts_unexp_error;
150: IF fnd_msg_pub.Check_Msg_Level
151: (fnd_msg_pub.G_MSG_LVL_UNEXP_ERROR) THEN
152: fnd_msg_pub.add_exc_msg(G_PKG_NAME, l_api_name);
153: END IF;
154: fnd_msg_pub.count_and_get(p_count => x_msg_count,
155: p_data => x_msg_data);

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

148: ROLLBACK;
149: x_return_status := fnd_api.g_ret_sts_unexp_error;
150: IF fnd_msg_pub.Check_Msg_Level
151: (fnd_msg_pub.G_MSG_LVL_UNEXP_ERROR) THEN
152: fnd_msg_pub.add_exc_msg(G_PKG_NAME, l_api_name);
153: END IF;
154: fnd_msg_pub.count_and_get(p_count => x_msg_count,
155: p_data => x_msg_data);
156:

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

150: IF fnd_msg_pub.Check_Msg_Level
151: (fnd_msg_pub.G_MSG_LVL_UNEXP_ERROR) THEN
152: fnd_msg_pub.add_exc_msg(G_PKG_NAME, l_api_name);
153: END IF;
154: fnd_msg_pub.count_and_get(p_count => x_msg_count,
155: p_data => x_msg_data);
156:
157: ec_debug.disable_debug;
158: END Extract_PYO_Outbound;