DBA Data[Home] [Help]

APPS.PA_CI_IMPACTS_PUB dependencies on FND_MSG_PUB

Line 49: fnd_msg_pub.initialize;

45: SAVEPOINT create_ci_impact;
46: END IF;
47:
48: IF p_init_msg_list = 'T' THEN
49: fnd_msg_pub.initialize;
50: END IF;
51:
52: x_return_status := 'S';
53: x_msg_count := 0;

Line 102: x_msg_count := FND_MSG_PUB.Count_Msg;

98: x_msg_count => x_msg_count,
99: x_msg_data => x_msg_data
100: );
101: END IF;
102: x_msg_count := FND_MSG_PUB.Count_Msg;
103: IF x_msg_count = 1 THEN
104: pa_interface_utils_pub.get_messages ( p_encoded => 'T'
105: ,p_msg_index => 1
106: ,p_data => x_msg_data

Line 121: fnd_msg_pub.add_exc_msg(p_pkg_name => 'PA_CI_IMPACTS_PUB',

117: ROLLBACK TO create_ci_impact;
118: END IF;
119:
120: x_return_status := 'U';
121: fnd_msg_pub.add_exc_msg(p_pkg_name => 'PA_CI_IMPACTS_PUB',
122: p_procedure_name => 'CREATE_CI_IMPACT',
123: p_error_text => SUBSTRB(SQLERRM,1,240));
124:
125: fnd_msg_pub.count_and_get(p_count => x_msg_count,

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

121: fnd_msg_pub.add_exc_msg(p_pkg_name => 'PA_CI_IMPACTS_PUB',
122: p_procedure_name => 'CREATE_CI_IMPACT',
123: p_error_text => SUBSTRB(SQLERRM,1,240));
124:
125: fnd_msg_pub.count_and_get(p_count => x_msg_count,
126: p_data => x_msg_data);
127: END create_ci_impact;
128:
129: PROCEDURE delete_ci_impact (

Line 153: fnd_msg_pub.initialize;

149: SAVEPOINT delete_ci_impact;
150: END IF;
151:
152: IF p_init_msg_list = 'T' THEN
153: fnd_msg_pub.initialize;
154: END IF;
155:
156: x_return_status := 'S';
157: x_msg_count := 0;

Line 178: x_msg_count := FND_MSG_PUB.Count_Msg;

174:
175: );
176: END IF;
177:
178: x_msg_count := FND_MSG_PUB.Count_Msg;
179: IF x_msg_count = 1 THEN
180: pa_interface_utils_pub.get_messages ( p_encoded => 'T'
181: ,p_msg_index => 1
182: ,p_data => x_msg_data

Line 199: fnd_msg_pub.add_exc_msg(p_pkg_name => 'PA_CI_IMPACT',

195: ROLLBACK TO delete_ci_impact;
196: END IF;
197:
198: x_return_status := 'U';
199: fnd_msg_pub.add_exc_msg(p_pkg_name => 'PA_CI_IMPACT',
200: p_procedure_name => 'DELETE_CI_IMPACT',
201: p_error_text => SUBSTRB(SQLERRM,1,240));
202:
203: fnd_msg_pub.count_and_get(p_count => x_msg_count,

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

199: fnd_msg_pub.add_exc_msg(p_pkg_name => 'PA_CI_IMPACT',
200: p_procedure_name => 'DELETE_CI_IMPACT',
201: p_error_text => SUBSTRB(SQLERRM,1,240));
202:
203: fnd_msg_pub.count_and_get(p_count => x_msg_count,
204: p_data => x_msg_data);
205: END delete_ci_impact;
206:
207: PROCEDURE update_ci_impact (

Line 263: fnd_msg_pub.initialize;

259: SAVEPOINT update_ci_impact;
260: END IF;
261:
262: IF p_init_msg_list = 'T' THEN
263: fnd_msg_pub.initialize;
264: END IF;
265:
266: x_return_status := 'S';
267: x_msg_count := 0;

Line 349: x_msg_count := FND_MSG_PUB.Count_Msg;

345:
346:
347: END IF;
348:
349: x_msg_count := FND_MSG_PUB.Count_Msg;
350: IF x_msg_count = 1 THEN
351: pa_interface_utils_pub.get_messages ( p_encoded => 'T'
352: ,p_msg_index => 1
353: ,p_data => x_msg_data

Line 379: fnd_msg_pub.add_exc_msg(p_pkg_name => 'PA_CI_IMPACTS_PUB',

375: ROLLBACK TO update_ci_impact;
376: END IF;
377:
378: x_return_status := 'U';
379: fnd_msg_pub.add_exc_msg(p_pkg_name => 'PA_CI_IMPACTS_PUB',
380: p_procedure_name => 'UPDATE_CI_IMPACT',
381: p_error_text => SUBSTRB(SQLERRM,1,240));
382:
383: fnd_msg_pub.count_and_get(p_count => x_msg_count,

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

379: fnd_msg_pub.add_exc_msg(p_pkg_name => 'PA_CI_IMPACTS_PUB',
380: p_procedure_name => 'UPDATE_CI_IMPACT',
381: p_error_text => SUBSTRB(SQLERRM,1,240));
382:
383: fnd_msg_pub.count_and_get(p_count => x_msg_count,
384: p_data => x_msg_data);
385: END update_ci_impact;
386:
387: END PA_CI_IMPACTS_pub;