DBA Data[Home] [Help]

APPS.IGW_PROP_PERSON_DEGREES_PVT dependencies on FND_MSG_PUB

Line 35: fnd_msg_pub.initialize;

31: END IF;
32:
33: -- initialize message list if p_init_msg_list is true
34: if FND_API.to_boolean(nvl(p_init_msg_list, FND_API.G_FALSE)) then
35: fnd_msg_pub.initialize;
36: end if;
37:
38: -- initialize return_status to success
39: x_return_status := fnd_api.g_ret_sts_success;

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

81: end if;
82:
83:
84: -- standard call to get message count and if count is 1, get message info
85: fnd_msg_pub.count_and_get(p_count => x_msg_count,
86: p_data => x_msg_data);
87:
88:
89: EXCEPTION

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

93: END IF;
94:
95: x_return_status := FND_API.G_RET_STS_ERROR;
96:
97: fnd_msg_pub.count_and_get(p_count => x_msg_count,
98: p_data => x_msg_data);
99:
100:
101: WHEN OTHERS THEN

Line 108: fnd_msg_pub.add_exc_msg(p_pkg_name => 'IGW_PROP_PERSON_DEGREES_PVT',

104: END IF;
105:
106: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
107:
108: fnd_msg_pub.add_exc_msg(p_pkg_name => 'IGW_PROP_PERSON_DEGREES_PVT',
109: p_procedure_name => 'UPDATE_PROP_PERSON_DEGREES',
110: p_error_text => SUBSTRB(SQLERRM,1,240));
111:
112: fnd_msg_pub.count_and_get(p_count => x_msg_count,

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

108: fnd_msg_pub.add_exc_msg(p_pkg_name => 'IGW_PROP_PERSON_DEGREES_PVT',
109: p_procedure_name => 'UPDATE_PROP_PERSON_DEGREES',
110: p_error_text => SUBSTRB(SQLERRM,1,240));
111:
112: fnd_msg_pub.count_and_get(p_count => x_msg_count,
113: p_data => x_msg_data);
114:
115:
116: END update_prop_person_degrees;

Line 137: FND_MSG_PUB.Add;

133: WHEN NO_DATA_FOUND THEN
134: x_return_status := FND_API.G_RET_STS_ERROR;
135: -- FND_MESSAGE.SET_NAME('IGW','IGW_SS_RECORD_CHANGED');
136: FND_MESSAGE.SET_NAME('IGW','IGW_DIFFERENT_MESSAGE');
137: FND_MSG_PUB.Add;
138: raise fnd_api.g_exc_error;
139:
140: WHEN OTHERS THEN
141: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

Line 142: fnd_msg_pub.add_exc_msg(p_pkg_name => 'IGW_PROP_PERSON_DEGREES_PVT',

138: raise fnd_api.g_exc_error;
139:
140: WHEN OTHERS THEN
141: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
142: fnd_msg_pub.add_exc_msg(p_pkg_name => 'IGW_PROP_PERSON_DEGREES_PVT',
143: p_procedure_name => 'CHECK_LOCK',
144: p_error_text => SUBSTRB(SQLERRM,1,240));
145: raise fnd_api.g_exc_unexpected_error;
146:

Line 153: l_msg_count := fnd_msg_pub.count_msg;

149: -------------------------------------------------------------------------------------------------------
150: PROCEDURE CHECK_ERRORS is
151: l_msg_count NUMBER;
152: BEGIN
153: l_msg_count := fnd_msg_pub.count_msg;
154: IF (l_msg_count > 0) THEN
155: RAISE FND_API.G_EXC_ERROR;
156: END IF;
157:

Line 175: fnd_msg_pub.add;

171:
172: IF (IGW_SECURITY.ALLOW_MODIFY ('NARRATIVE', P_PROPOSAL_ID, FND_GLOBAL.USER_ID) = 'N') THEN
173: x_return_status:= FND_API.G_RET_STS_ERROR;
174: fnd_message.set_name('IGW', 'IGW_NO_RIGHTS');
175: fnd_msg_pub.add;
176: END IF;
177:
178: EXCEPTION
179:

Line 182: fnd_msg_pub.add_exc_msg(p_pkg_name => 'IGW_PROP_NARRATIVES_PVT',

178: EXCEPTION
179:
180: WHEN OTHERS THEN
181: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
182: fnd_msg_pub.add_exc_msg(p_pkg_name => 'IGW_PROP_NARRATIVES_PVT',
183: p_procedure_name => 'VALIDATE_LOGGED_USER_RIGHTS',
184: p_error_text => SUBSTRB(SQLERRM,1,240));
185: raise fnd_api.g_exc_unexpected_error;
186: END VALIDATE_LOGGED_USER_RIGHTS;

Line 245: fnd_msg_pub.initialize;

241: END IF;
242:
243: -- initialize message list if p_init_msg_list is set to true
244: if FND_API.to_boolean(nvl(p_init_msg_list, FND_API.G_FALSE)) then
245: fnd_msg_pub.initialize;
246: end if;
247:
248: -- initialize return status to success
249: x_return_status := fnd_api.g_ret_sts_success;

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

366: end if;
367:
368:
369: -- standard call to get message count and if count is 1, get message info
370: fnd_msg_pub.count_and_get(p_count => x_msg_count,
371: p_data => x_msg_data);
372:
373:
374: EXCEPTION

Line 382: fnd_msg_pub.add_exc_msg(p_pkg_name => 'IGW_PROP_PERSON_DEGREES_PVT',

378: END IF;
379:
380: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
381:
382: fnd_msg_pub.add_exc_msg(p_pkg_name => 'IGW_PROP_PERSON_DEGREES_PVT',
383: p_procedure_name => 'POPULATE_BIO_TABLES',
384: p_error_text => SUBSTRB(SQLERRM,1,240));
385:
386: fnd_msg_pub.count_and_get(p_count => x_msg_count,

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

382: fnd_msg_pub.add_exc_msg(p_pkg_name => 'IGW_PROP_PERSON_DEGREES_PVT',
383: p_procedure_name => 'POPULATE_BIO_TABLES',
384: p_error_text => SUBSTRB(SQLERRM,1,240));
385:
386: fnd_msg_pub.count_and_get(p_count => x_msg_count,
387: p_data => x_msg_data);
388:
389: END POPULATE_BIO_TABLES;
390: