DBA Data[Home] [Help]

APPS.IBY_BANKACCXFR_PUB dependencies on IBY_DEBUG_PUB

Line 273: iby_debug_pub.add('Unpack status error');

269: -----------------------------------------------------------------------
270: --Raising Exception to handle errors in unpacking resulting html file.
271: -----------------------------------------------------------------------
272: IF (l_status = -1) THEN
273: iby_debug_pub.add('Unpack status error');
274: FND_MESSAGE.SET_NAME('IBY', 'IBY_204403_HTML_UNPACK_ERROR');
275: FND_MSG_PUB.Add;
276: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
277: END IF;

Line 283: iby_debug_pub.add('Names count=0');

279: --------------------------------------------------------
280: --Raising Exception to handle Servlet related errors.
281: --------------------------------------------------------
282: IF (l_names.COUNT = 0) THEN
283: iby_debug_pub.add('Names count=0');
284: FND_MESSAGE.SET_NAME('IBY', 'IBY_204402_JSERVLET_ERROR');
285: FND_MSG_PUB.Add;
286: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
287: END IF;

Line 294: iby_debug_pub.add('Exit OraPmtBankAccXfrBatchReq');

290: -- Set return status to success and return
291: -------------------------------------------------------------------------
292: x_return_status := FND_API.G_RET_STS_SUCCESS ;
293:
294: iby_debug_pub.add('Exit OraPmtBankAccXfrBatchReq');
295:
296: EXCEPTION
297:
298: WHEN FND_API.G_EXC_ERROR THEN

Line 300: iby_debug_pub.add('In G_EXC_ERROR Exception');

296: EXCEPTION
297:
298: WHEN FND_API.G_EXC_ERROR THEN
299:
300: iby_debug_pub.add('In G_EXC_ERROR Exception');
301: x_return_status := FND_API.G_RET_STS_ERROR ;
302: FND_MSG_PUB.Count_And_Get ( p_count => x_msg_count,
303: p_data => x_msg_data
304: );

Line 307: iby_debug_pub.add('In G_EXC_UNEXPECTED_ERROR Exception');

303: p_data => x_msg_data
304: );
305: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
306:
307: iby_debug_pub.add('In G_EXC_UNEXPECTED_ERROR Exception');
308: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
309: FND_MSG_PUB.Count_And_Get ( p_count => x_msg_count,
310: p_data => x_msg_data
311: );

Line 324: iby_debug_pub.add('x_return_status=' || x_return_status);

320: FND_MSG_PUB.Count_And_Get ( p_count => x_msg_count,
321: p_data => x_msg_data
322: );
323:
324: iby_debug_pub.add('x_return_status=' || x_return_status);
325: iby_debug_pub.add('Exit Exception');
326:
327: END OraPmtBatchReq;
328:

Line 325: iby_debug_pub.add('Exit Exception');

321: p_data => x_msg_data
322: );
323:
324: iby_debug_pub.add('x_return_status=' || x_return_status);
325: iby_debug_pub.add('Exit Exception');
326:
327: END OraPmtBatchReq;
328:
329: END IBY_BANKACCXFR_PUB;