DBA Data[Home] [Help]

APPS.POS_PUB_HISTORY_BO_PKG dependencies on FND_MSG_PUB

Line 15: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_error) THEN

11: --
12: -- Private utility procedure to add an FND message to
13: -- indicate an error has occurred.
14: --
15: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_error) THEN
16: fnd_msg_pub.add_exc_msg(
17: p_pkg_name => p_pkg_name,
18: p_procedure_name => p_api_name,
19: p_error_text => sqlerrm(p_err_code));

Line 16: fnd_msg_pub.add_exc_msg(

12: -- Private utility procedure to add an FND message to
13: -- indicate an error has occurred.
14: --
15: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_error) THEN
16: fnd_msg_pub.add_exc_msg(
17: p_pkg_name => p_pkg_name,
18: p_procedure_name => p_api_name,
19: p_error_text => sqlerrm(p_err_code));
20: END IF;

Line 77: fnd_msg_pub.initialize;

73: END IF;
74:
75: -- Initialize message list if p_init_msg_list is set to TRUE.
76: IF fnd_api.to_boolean(nvl(p_init_msg_list, fnd_api.g_true)) THEN
77: fnd_msg_pub.initialize;
78: END IF;
79:
80: IF (p_party_id IS NULL OR p_party_id = 0) THEN
81: IF (p_orig_system IS NOT NULL AND p_orig_system_reference IS NOT NULL) THEN

Line 135: fnd_msg_pub.count_and_get(

131:
132: EXCEPTION
133: WHEN fnd_api.g_exc_error THEN
134: x_return_status := fnd_api.g_ret_sts_error;
135: fnd_msg_pub.count_and_get(
136: p_count => x_msg_count,
137: p_data => x_msg_data);
138:
139: WHEN fnd_api.g_exc_unexpected_error THEN

Line 141: fnd_msg_pub.count_and_get(

137: p_data => x_msg_data);
138:
139: WHEN fnd_api.g_exc_unexpected_error THEN
140: x_return_status := fnd_api.g_ret_sts_unexp_error;
141: fnd_msg_pub.count_and_get(
142: p_count => x_msg_count,
143: p_data => x_msg_data);
144:
145: WHEN OTHERS THEN

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

143: p_data => x_msg_data);
144:
145: WHEN OTHERS THEN
146: x_return_status := fnd_api.g_ret_sts_unexp_error;
147: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
148: fnd_msg_pub.add_exc_msg(
149: p_pkg_name => g_pkg_name,
150: p_procedure_name => l_api_name,
151: p_error_text => sqlerrm);

Line 148: fnd_msg_pub.add_exc_msg(

144:
145: WHEN OTHERS THEN
146: x_return_status := fnd_api.g_ret_sts_unexp_error;
147: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
148: fnd_msg_pub.add_exc_msg(
149: p_pkg_name => g_pkg_name,
150: p_procedure_name => l_api_name,
151: p_error_text => sqlerrm);
152: END IF;

Line 153: fnd_msg_pub.count_and_get(

149: p_pkg_name => g_pkg_name,
150: p_procedure_name => l_api_name,
151: p_error_text => sqlerrm);
152: END IF;
153: fnd_msg_pub.count_and_get(
154: p_count => x_msg_count,
155: p_data => x_msg_data);
156:
157: END get_pos_pub_history_bo_tbl;

Line 322: fnd_msg_pub.initialize;

318: END IF;
319:
320: -- Initialize message list if p_init_msg_list is set to TRUE.
321: IF fnd_api.to_boolean(nvl(p_init_msg_list, fnd_api.g_true)) THEN
322: fnd_msg_pub.initialize;
323: END IF;
324:
325: -- Verify required fields
326: IF p_target_system is NULL OR

Line 364: fnd_msg_pub.count_and_get(

360:
361: EXCEPTION
362: WHEN fnd_api.g_exc_error THEN
363: x_return_status := fnd_api.g_ret_sts_error;
364: fnd_msg_pub.count_and_get(
365: p_count => x_msg_count,
366: p_data => x_msg_data);
367:
368: WHEN fnd_api.g_exc_unexpected_error THEN

Line 370: fnd_msg_pub.count_and_get(

366: p_data => x_msg_data);
367:
368: WHEN fnd_api.g_exc_unexpected_error THEN
369: x_return_status := fnd_api.g_ret_sts_unexp_error;
370: fnd_msg_pub.count_and_get(
371: p_count => x_msg_count,
372: p_data => x_msg_data);
373:
374: WHEN OTHERS THEN

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

372: p_data => x_msg_data);
373:
374: WHEN OTHERS THEN
375: x_return_status := fnd_api.g_ret_sts_unexp_error;
376: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
377: fnd_msg_pub.add_exc_msg(
378: p_pkg_name => g_pkg_name,
379: p_procedure_name => l_api_name,
380: p_error_text => sqlerrm);

Line 377: fnd_msg_pub.add_exc_msg(

373:
374: WHEN OTHERS THEN
375: x_return_status := fnd_api.g_ret_sts_unexp_error;
376: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
377: fnd_msg_pub.add_exc_msg(
378: p_pkg_name => g_pkg_name,
379: p_procedure_name => l_api_name,
380: p_error_text => sqlerrm);
381: END IF;

Line 382: fnd_msg_pub.count_and_get(

378: p_pkg_name => g_pkg_name,
379: p_procedure_name => l_api_name,
380: p_error_text => sqlerrm);
381: END IF;
382: fnd_msg_pub.count_and_get(
383: p_count => x_msg_count,
384: p_data => x_msg_data);
385:
386: END create_publication_response;