DBA Data[Home] [Help]

APPS.IBY_NETUTILS_PVT dependencies on FND_API

Line 365: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

361: --Raising Exception to handle errors if value is missing
362: IF ((x_baseurl IS NULL) OR (trim(x_baseurl) = '')) THEN
363: FND_MESSAGE.SET_NAME('IBY', 'IBY_204406');
364: FND_MSG_PUB.Add;
365: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
366: END IF;
367:
368: --appending '?' if not already present in the url
369: p_temp_var := SUBSTR(x_baseurl, -1);

Line 671: --RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

667: --
668: -- should return an expected error exception here as missing input is
669: -- considered a "normal" error
670: --
671: --RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
672: RAISE FND_API.G_EXC_ERROR;
673: ELSE
674: --Append this = to the input URL
675: p_url := p_url||p_name||'='||escape_url_chars(p_value,p_local_nls,p_remote_nls)||'&';

Line 672: RAISE FND_API.G_EXC_ERROR;

668: -- should return an expected error exception here as missing input is
669: -- considered a "normal" error
670: --
671: --RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
672: RAISE FND_API.G_EXC_ERROR;
673: ELSE
674: --Append this = to the input URL
675: p_url := p_url||p_name||'='||escape_url_chars(p_value,p_local_nls,p_remote_nls)||'&';
676: END IF;