DBA Data[Home] [Help]

APPS.IBY_UTILITY_PVT dependencies on FND_MSG_PUB

Line 153: FND_MSG_PUB.ADD;

149: fnd_message.set_name('IBY', 'IBY_G_SQL_ERR');
150: fnd_message.set_token('API', p_pkg_name || '.' || p_api_name);
151: fnd_message.set_token('SQLCODE', l_ora_err_code);
152: fnd_message.set_token('SQLERRM', l_ora_err_msg);
153: FND_MSG_PUB.ADD;
154:
155: END IF;
156:
157: FND_MSG_PUB.Count_And_Get(

Line 157: FND_MSG_PUB.Count_And_Get(

153: FND_MSG_PUB.ADD;
154:
155: END IF;
156:
157: FND_MSG_PUB.Count_And_Get(
158: p_count => x_msg_count,
159: p_data => x_msg_data);
160:
161: iby_debug_pub.add('x_msg_count: ' || x_msg_count);

Line 248: FND_MSG_PUB.ADD;

244: -- go +1 character past the token concatenator
245: --
246: l_index := l_tok_concat + 1;
247: END LOOP;
248: FND_MSG_PUB.ADD;
249: --
250: -- no IBY message found; simply put the exact text of
251: -- the exception into the FND_MSG stack
252: --

Line 256: FND_MSG_PUB.ADD;

252: --
253: ELSE
254: FND_MESSAGE.SET_NAME('IBY', 'IBY_9999');
255: FND_MESSAGE.SET_TOKEN('MESSAGE_TEXT',p_err_msg);
256: FND_MSG_PUB.ADD;
257: END IF;
258: END handleException;
259:
260: