DBA Data[Home] [Help]

APPS.IBY_UTILITY_PVT dependencies on FND_MSG_PUB

Line 142: FND_MSG_PUB.ADD;

138: fnd_message.set_name('IBY', 'IBY_G_SQL_ERR');
139: fnd_message.set_token('API', p_pkg_name || '.' || p_api_name);
140: fnd_message.set_token('SQLCODE', l_ora_err_code);
141: fnd_message.set_token('SQLERRM', l_ora_err_msg);
142: FND_MSG_PUB.ADD;
143:
144: END IF;
145:
146: FND_MSG_PUB.Count_And_Get(

Line 146: FND_MSG_PUB.Count_And_Get(

142: FND_MSG_PUB.ADD;
143:
144: END IF;
145:
146: FND_MSG_PUB.Count_And_Get(
147: p_count => x_msg_count,
148: p_data => x_msg_data);
149:
150: iby_debug_pub.add('x_msg_count: ' || x_msg_count);

Line 237: FND_MSG_PUB.ADD;

233: -- go +1 character past the token concatenator
234: --
235: l_index := l_tok_concat + 1;
236: END LOOP;
237: FND_MSG_PUB.ADD;
238: --
239: -- no IBY message found; simply put the exact text of
240: -- the exception into the FND_MSG stack
241: --

Line 245: FND_MSG_PUB.ADD;

241: --
242: ELSE
243: FND_MESSAGE.SET_NAME('IBY', 'IBY_9999');
244: FND_MESSAGE.SET_TOKEN('MESSAGE_TEXT',p_err_msg);
245: FND_MSG_PUB.ADD;
246: END IF;
247: END handleException;
248:
249: