DBA Data[Home] [Help]

APPS.HZ_EXT_ATTRIBUTE_BO_PVT dependencies on FND_MSG_PUB

Line 91: FND_MSG_PUB.ADD;

87: IF(p_ext_attr_objs(i).row_identifier IS NULL) THEN
88: FND_MESSAGE.SET_NAME('AR', 'HZ_API_HOOK_ERROR');
89: FND_MESSAGE.SET_TOKEN('PROCEDURE', 'hz_ext_attribute_bo_pvt.save_ext_attributes');
90: FND_MESSAGE.SET_TOKEN('ERROR', 'row identifier is null');
91: FND_MSG_PUB.ADD;
92: RAISE FND_API.G_EXC_ERROR;
93: END IF;
94: IF((l_current_row IS NULL) OR
95: (NOT (l_current_row = p_ext_attr_objs(i).row_identifier))) THEN

Line 191: FND_MSG_PUB.ADD;

187: IF x_return_status <> FND_API.G_RET_STS_SUCCESS THEN
188: FND_MESSAGE.SET_NAME('AR', 'HZ_API_HOOK_ERROR');
189: FND_MESSAGE.SET_TOKEN('PROCEDURE', 'hz_ext_attribute_bo_pvt.save_ext_attributes');
190: FND_MESSAGE.SET_TOKEN('ERROR', 'save ext attributes, parent type and id: '||p_parent_obj_type||' '||p_parent_obj_id);
191: FND_MSG_PUB.ADD;
192: RAISE FND_API.G_EXC_ERROR;
193: END IF;
194:
195: -- Debug info.

Line 212: fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false,

208: WHEN fnd_api.g_exc_error THEN
209: ROLLBACK TO save_ext_attributes_pvt;
210: x_return_status := fnd_api.g_ret_sts_error;
211:
212: fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false,
213: p_count => x_msg_count,
214: p_data => x_msg_data);
215:
216: -- Debug info.

Line 233: fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false,

229: WHEN fnd_api.g_exc_unexpected_error THEN
230: ROLLBACK TO save_ext_attributes_pvt;
231: x_return_status := fnd_api.g_ret_sts_unexp_error;
232:
233: fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false,
234: p_count => x_msg_count,
235: p_data => x_msg_data);
236:
237: -- Debug info.

Line 256: fnd_msg_pub.add;

252: x_return_status := fnd_api.g_ret_sts_unexp_error;
253:
254: fnd_message.set_name('AR', 'HZ_API_OTHERS_EXCEP');
255: fnd_message.set_token('ERROR' ,SQLERRM);
256: fnd_msg_pub.add;
257:
258: fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false,
259: p_count => x_msg_count,
260: p_data => x_msg_data);

Line 258: fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false,

254: fnd_message.set_name('AR', 'HZ_API_OTHERS_EXCEP');
255: fnd_message.set_token('ERROR' ,SQLERRM);
256: fnd_msg_pub.add;
257:
258: fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false,
259: p_count => x_msg_count,
260: p_data => x_msg_data);
261:
262: -- Debug info.