DBA Data[Home] [Help]

APPS.JTF_RS_TEAMS_PUB dependencies on FND_MSG_PUB

Line 71: fnd_msg_pub.initialize;

67:
68:
69: IF fnd_api.to_boolean(p_init_msg_list) THEN
70:
71: fnd_msg_pub.initialize;
72:
73: END IF;
74:
75:

Line 83: fnd_msg_pub.add;

79:
80: -- dbms_output.put_line('Team Name cannot be null');
81:
82: fnd_message.set_name('JTF', 'JTF_RS_TEAM_NAME_NULL');
83: fnd_msg_pub.add;
84:
85: x_return_status := fnd_api.g_ret_sts_unexp_error;
86:
87: RAISE fnd_api.g_exc_unexpected_error;

Line 99: fnd_msg_pub.add;

95:
96: -- dbms_output.put_line('Start Date Active cannot be null');
97:
98: fnd_message.set_name('JTF', 'JTF_RS_START_DATE_NULL');
99: fnd_msg_pub.add;
100:
101: x_return_status := fnd_api.g_ret_sts_unexp_error;
102:
103: RAISE fnd_api.g_exc_unexpected_error;

Line 143: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data);

139: COMMIT WORK;
140:
141: END IF;
142:
143: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data);
144:
145:
146: EXCEPTION
147:

Line 159: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data);

155: ROLLBACK TO create_resource_team_pub;
156:
157: x_return_status := fnd_api.g_ret_sts_unexp_error;
158:
159: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data);
160:
161:
162: WHEN OTHERS THEN
163:

Line 174: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data);

170: ROLLBACK TO create_resource_team_pub;
171:
172: x_return_status := fnd_api.g_ret_sts_unexp_error;
173:
174: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data);
175:
176:
177: END create_resource_team;
178:

Line 235: fnd_msg_pub.initialize;

231:
232:
233: IF fnd_api.to_boolean(p_init_msg_list) THEN
234:
235: fnd_msg_pub.initialize;
236:
237: END IF;
238:
239:

Line 300: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data);

296: COMMIT WORK;
297:
298: END IF;
299:
300: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data);
301:
302:
303: EXCEPTION
304:

Line 316: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data);

312: ROLLBACK TO update_resource_team_pub;
313:
314: x_return_status := fnd_api.g_ret_sts_unexp_error;
315:
316: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data);
317:
318:
319: WHEN OTHERS THEN
320:

Line 331: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data);

327: ROLLBACK TO update_resource_team_pub;
328:
329: x_return_status := fnd_api.g_ret_sts_unexp_error;
330:
331: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data);
332:
333:
334:
335: END update_resource_team;