DBA Data[Home] [Help]

APPS.CSI_SYSTEMS_PUB dependencies on FND_MSG_PUB

Line 61: fnd_msg_pub.initialize;

57:
58: -- initialize message list if p_init_msg_list is set to true.
59: IF fnd_api.to_boolean( p_init_msg_list )
60: THEN
61: fnd_msg_pub.initialize;
62: END IF;
63:
64:
65:

Line 133: fnd_msg_pub.count_and_get

129: END IF;
130: ****/
131:
132: -- standard call to get message count and if count is 1, get message info.
133: fnd_msg_pub.count_and_get
134: ( p_count => x_msg_count,
135: p_data => x_msg_data
136: );
137:

Line 142: fnd_msg_pub.count_and_get

138: EXCEPTION
139: WHEN fnd_api.g_exc_error THEN
140: -- ROLLBACK TO get_systems_pub;
141: x_return_status := fnd_api.g_ret_sts_error ;
142: fnd_msg_pub.count_and_get
143: (p_count => x_msg_count ,
144: p_data => x_msg_data
145: );
146:

Line 150: fnd_msg_pub.count_and_get

146:
147: WHEN fnd_api.g_exc_unexpected_error THEN
148: -- ROLLBACK TO get_systems_pub;
149: x_return_status := fnd_api.g_ret_sts_unexp_error ;
150: fnd_msg_pub.count_and_get
151: (p_count => x_msg_count ,
152: p_data => x_msg_data
153: );
154:

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

154:
155: WHEN OTHERS THEN
156: -- ROLLBACK TO get_systems_pub;
157: x_return_status := fnd_api.g_ret_sts_unexp_error ;
158: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
159: fnd_msg_pub.add_exc_msg(g_pkg_name ,l_api_name);
160: END IF;
161: fnd_msg_pub.count_and_get
162: (p_count => x_msg_count ,

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

155: WHEN OTHERS THEN
156: -- ROLLBACK TO get_systems_pub;
157: x_return_status := fnd_api.g_ret_sts_unexp_error ;
158: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
159: fnd_msg_pub.add_exc_msg(g_pkg_name ,l_api_name);
160: END IF;
161: fnd_msg_pub.count_and_get
162: (p_count => x_msg_count ,
163: p_data => x_msg_data

Line 161: fnd_msg_pub.count_and_get

157: x_return_status := fnd_api.g_ret_sts_unexp_error ;
158: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
159: fnd_msg_pub.add_exc_msg(g_pkg_name ,l_api_name);
160: END IF;
161: fnd_msg_pub.count_and_get
162: (p_count => x_msg_count ,
163: p_data => x_msg_data
164: );
165: END get_systems;

Line 213: fnd_msg_pub.initialize;

209:
210: -- initialize message list if p_init_msg_list is set to true.
211: IF fnd_api.to_boolean( p_init_msg_list )
212: THEN
213: fnd_msg_pub.initialize;
214: END IF;
215:
216:
217:

Line 292: fnd_msg_pub.count_and_get

288: END IF;
289: ****/
290:
291: -- standard call to get message count and if count is 1, get message info.
292: fnd_msg_pub.count_and_get
293: ( p_count => x_msg_count,
294: p_data => x_msg_data
295: );
296:

Line 301: fnd_msg_pub.count_and_get

297: EXCEPTION
298: WHEN fnd_api.g_exc_error THEN
299: ROLLBACK TO create_system_pub;
300: x_return_status := fnd_api.g_ret_sts_error ;
301: fnd_msg_pub.count_and_get
302: (p_count => x_msg_count ,
303: p_data => x_msg_data
304: );
305:

Line 309: fnd_msg_pub.count_and_get

305:
306: WHEN fnd_api.g_exc_unexpected_error THEN
307: ROLLBACK TO create_system_pub;
308: x_return_status := fnd_api.g_ret_sts_unexp_error ;
309: fnd_msg_pub.count_and_get
310: (p_count => x_msg_count ,
311: p_data => x_msg_data
312: );
313:

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

313:
314: WHEN OTHERS THEN
315: ROLLBACK TO create_system_pub;
316: x_return_status := fnd_api.g_ret_sts_unexp_error ;
317: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
318: fnd_msg_pub.add_exc_msg(g_pkg_name ,l_api_name);
319: END IF;
320: fnd_msg_pub.count_and_get
321: (p_count => x_msg_count ,

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

314: WHEN OTHERS THEN
315: ROLLBACK TO create_system_pub;
316: x_return_status := fnd_api.g_ret_sts_unexp_error ;
317: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
318: fnd_msg_pub.add_exc_msg(g_pkg_name ,l_api_name);
319: END IF;
320: fnd_msg_pub.count_and_get
321: (p_count => x_msg_count ,
322: p_data => x_msg_data

Line 320: fnd_msg_pub.count_and_get

316: x_return_status := fnd_api.g_ret_sts_unexp_error ;
317: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
318: fnd_msg_pub.add_exc_msg(g_pkg_name ,l_api_name);
319: END IF;
320: fnd_msg_pub.count_and_get
321: (p_count => x_msg_count ,
322: p_data => x_msg_data
323: );
324:

Line 420: fnd_msg_pub.initialize;

416:
417: -- initialize message list if p_init_msg_list is set to true.
418: IF fnd_api.to_boolean( p_init_msg_list )
419: THEN
420: fnd_msg_pub.initialize;
421: END IF;
422:
423:
424: -- initialize api return status to success

Line 670: fnd_msg_pub.count_and_get

666: END IF;
667: ****/
668:
669: -- standard call to get message count and if count is 1, get message info.
670: fnd_msg_pub.count_and_get
671: ( p_count => x_msg_count,
672: p_data => x_msg_data
673: );
674:

Line 679: fnd_msg_pub.count_and_get

675: EXCEPTION
676: WHEN fnd_api.g_exc_error THEN
677: ROLLBACK TO update_system_pub;
678: x_return_status := fnd_api.g_ret_sts_error ;
679: fnd_msg_pub.count_and_get
680: (p_count => x_msg_count ,
681: p_data => x_msg_data
682: );
683:

Line 687: fnd_msg_pub.count_and_get

683:
684: WHEN fnd_api.g_exc_unexpected_error THEN
685: ROLLBACK TO update_system_pub;
686: x_return_status := fnd_api.g_ret_sts_unexp_error ;
687: fnd_msg_pub.count_and_get
688: (p_count => x_msg_count ,
689: p_data => x_msg_data
690: );
691:

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

691:
692: WHEN OTHERS THEN
693: ROLLBACK TO update_system_pub;
694: x_return_status := fnd_api.g_ret_sts_unexp_error ;
695: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
696: fnd_msg_pub.add_exc_msg(g_pkg_name ,l_api_name);
697: END IF;
698: fnd_msg_pub.count_and_get
699: (p_count => x_msg_count ,

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

692: WHEN OTHERS THEN
693: ROLLBACK TO update_system_pub;
694: x_return_status := fnd_api.g_ret_sts_unexp_error ;
695: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
696: fnd_msg_pub.add_exc_msg(g_pkg_name ,l_api_name);
697: END IF;
698: fnd_msg_pub.count_and_get
699: (p_count => x_msg_count ,
700: p_data => x_msg_data

Line 698: fnd_msg_pub.count_and_get

694: x_return_status := fnd_api.g_ret_sts_unexp_error ;
695: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
696: fnd_msg_pub.add_exc_msg(g_pkg_name ,l_api_name);
697: END IF;
698: fnd_msg_pub.count_and_get
699: (p_count => x_msg_count ,
700: p_data => x_msg_data
701: );
702: END update_system;

Line 748: fnd_msg_pub.initialize;

744:
745: -- initialize message list if p_init_msg_list is set to true.
746: IF fnd_api.to_boolean( p_init_msg_list )
747: THEN
748: fnd_msg_pub.initialize;
749: END IF;
750:
751:
752: -- initialize api return status to success

Line 827: fnd_msg_pub.count_and_get

823: END IF;
824: ****/
825:
826: -- standard call to get message count and if count is 1, get message info.
827: fnd_msg_pub.count_and_get
828: ( p_count => x_msg_count,
829: p_data => x_msg_data
830: );
831:

Line 836: fnd_msg_pub.count_and_get

832: EXCEPTION
833: WHEN fnd_api.g_exc_error THEN
834: ROLLBACK TO expire_system_pub;
835: x_return_status := fnd_api.g_ret_sts_error ;
836: fnd_msg_pub.count_and_get
837: (p_count => x_msg_count ,
838: p_data => x_msg_data
839: );
840:

Line 844: fnd_msg_pub.count_and_get

840:
841: WHEN fnd_api.g_exc_unexpected_error THEN
842: ROLLBACK TO expire_system_pub;
843: x_return_status := fnd_api.g_ret_sts_unexp_error ;
844: fnd_msg_pub.count_and_get
845: (p_count => x_msg_count ,
846: p_data => x_msg_data
847: );
848:

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

848:
849: WHEN OTHERS THEN
850: ROLLBACK TO expire_system_pub;
851: x_return_status := fnd_api.g_ret_sts_unexp_error ;
852: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
853: fnd_msg_pub.add_exc_msg(g_pkg_name ,l_api_name);
854: END IF;
855: fnd_msg_pub.count_and_get
856: (p_count => x_msg_count ,

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

849: WHEN OTHERS THEN
850: ROLLBACK TO expire_system_pub;
851: x_return_status := fnd_api.g_ret_sts_unexp_error ;
852: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
853: fnd_msg_pub.add_exc_msg(g_pkg_name ,l_api_name);
854: END IF;
855: fnd_msg_pub.count_and_get
856: (p_count => x_msg_count ,
857: p_data => x_msg_data

Line 855: fnd_msg_pub.count_and_get

851: x_return_status := fnd_api.g_ret_sts_unexp_error ;
852: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
853: fnd_msg_pub.add_exc_msg(g_pkg_name ,l_api_name);
854: END IF;
855: fnd_msg_pub.count_and_get
856: (p_count => x_msg_count ,
857: p_data => x_msg_data
858: );
859: