DBA Data[Home] [Help]

APPS.ICX_SR_CUSTOM_PVT dependencies on FND_MSG_PUB

Line 58: fnd_msg_pub.initialize;

54:
55:
56: -- Initialize message list if p_init_msg_list is TRUE
57: if fnd_api.to_boolean(p_init_msg_list) then
58: fnd_msg_pub.initialize;
59: end if;
60:
61: -- Initialize API return status to success
62: p_return_status := fnd_api.g_ret_sts_success;

Line 85: fnd_msg_pub.count_and_get(p_count => p_msg_count,

81:
82: end if;
83:
84: -- Standard call to get message count and if count=1, get message info
85: fnd_msg_pub.count_and_get(p_count => p_msg_count,
86: p_data => p_msg_data);
87:
88: exception
89: when fnd_api.g_exc_error then

Line 93: fnd_msg_pub.count_and_get(p_count => p_msg_count,

89: when fnd_api.g_exc_error then
90: ROLLBACK to SR_DEFAULT_PVT;
91: p_return_status := fnd_api.g_ret_sts_error;
92:
93: fnd_msg_pub.count_and_get(p_count => p_msg_count,
94: p_data => p_msg_data);
95:
96:
97: when fnd_api.g_exc_unexpected_error then

Line 101: fnd_msg_pub.count_and_get(p_count => p_msg_count,

97: when fnd_api.g_exc_unexpected_error then
98: ROLLBACK to SR_DEFAULT_PVT;
99: p_return_status := fnd_api.g_ret_sts_unexp_error;
100:
101: fnd_msg_pub.count_and_get(p_count => p_msg_count,
102: p_data => p_msg_data);
103:
104: when others then
105: ROLLBACK to SR_DEFAULT_PVT;

Line 108: if fnd_msg_pub.Check_Msg_Level(fnd_msg_pub.g_msg_lvl_unexp_error) then

104: when others then
105: ROLLBACK to SR_DEFAULT_PVT;
106: p_return_status := fnd_api.g_ret_sts_unexp_error;
107:
108: if fnd_msg_pub.Check_Msg_Level(fnd_msg_pub.g_msg_lvl_unexp_error) then
109: fnd_msg_pub.Add_Exc_Msg(g_pkg_name,
110: l_api_name);
111: end if;
112:

Line 109: fnd_msg_pub.Add_Exc_Msg(g_pkg_name,

105: ROLLBACK to SR_DEFAULT_PVT;
106: p_return_status := fnd_api.g_ret_sts_unexp_error;
107:
108: if fnd_msg_pub.Check_Msg_Level(fnd_msg_pub.g_msg_lvl_unexp_error) then
109: fnd_msg_pub.Add_Exc_Msg(g_pkg_name,
110: l_api_name);
111: end if;
112:
113: fnd_msg_pub.count_and_get(p_count => p_msg_count,

Line 113: fnd_msg_pub.count_and_get(p_count => p_msg_count,

109: fnd_msg_pub.Add_Exc_Msg(g_pkg_name,
110: l_api_name);
111: end if;
112:
113: fnd_msg_pub.count_and_get(p_count => p_msg_count,
114: p_data => p_msg_data);
115:
116:
117: end sr_default;

Line 178: fnd_msg_pub.initialize;

174:
175:
176: -- Initialize message list if p_init_msg_list is TRUE
177: if fnd_api.to_boolean(p_init_msg_list) then
178: fnd_msg_pub.initialize;
179: end if;
180:
181: -- Initialize API return status to success
182: p_return_status := fnd_api.g_ret_sts_success;

Line 205: fnd_msg_pub.count_and_get(p_count => p_msg_count,

201:
202: end if;
203:
204: -- Standard call to get message count and if count=1, get message info
205: fnd_msg_pub.count_and_get(p_count => p_msg_count,
206: p_data => p_msg_data);
207:
208: exception
209: when fnd_api.g_exc_error then

Line 213: fnd_msg_pub.count_and_get(p_count => p_msg_count,

209: when fnd_api.g_exc_error then
210: ROLLBACK to SR_VALIDATE_PVT;
211: p_return_status := fnd_api.g_ret_sts_error;
212:
213: fnd_msg_pub.count_and_get(p_count => p_msg_count,
214: p_data => p_msg_data);
215:
216:
217: when fnd_api.g_exc_unexpected_error then

Line 221: fnd_msg_pub.count_and_get(p_count => p_msg_count,

217: when fnd_api.g_exc_unexpected_error then
218: ROLLBACK to SR_VALIDATE_PVT;
219: p_return_status := fnd_api.g_ret_sts_unexp_error;
220:
221: fnd_msg_pub.count_and_get(p_count => p_msg_count,
222: p_data => p_msg_data);
223:
224: when others then
225: ROLLBACK to SR_VALIDATE_PVT;

Line 228: if fnd_msg_pub.Check_Msg_Level(fnd_msg_pub.g_msg_lvl_unexp_error) then

224: when others then
225: ROLLBACK to SR_VALIDATE_PVT;
226: p_return_status := fnd_api.g_ret_sts_unexp_error;
227:
228: if fnd_msg_pub.Check_Msg_Level(fnd_msg_pub.g_msg_lvl_unexp_error) then
229: fnd_msg_pub.Add_Exc_Msg(g_pkg_name,
230: l_api_name);
231: end if;
232:

Line 229: fnd_msg_pub.Add_Exc_Msg(g_pkg_name,

225: ROLLBACK to SR_VALIDATE_PVT;
226: p_return_status := fnd_api.g_ret_sts_unexp_error;
227:
228: if fnd_msg_pub.Check_Msg_Level(fnd_msg_pub.g_msg_lvl_unexp_error) then
229: fnd_msg_pub.Add_Exc_Msg(g_pkg_name,
230: l_api_name);
231: end if;
232:
233: fnd_msg_pub.Count_And_Get(p_count => p_msg_count,

Line 233: fnd_msg_pub.Count_And_Get(p_count => p_msg_count,

229: fnd_msg_pub.Add_Exc_Msg(g_pkg_name,
230: l_api_name);
231: end if;
232:
233: fnd_msg_pub.Count_And_Get(p_count => p_msg_count,
234: p_data => p_msg_data);
235:
236:
237: end sr_validate;