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 678: --RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

674: --
675: -- should return an expected error exception here as missing input is
676: -- considered a "normal" error
677: --
678: --RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
679: RAISE FND_API.G_EXC_ERROR;
680: ELSE
681: --Append this = to the input URL
682: p_url := p_url||p_name||'='||escape_url_chars(p_value,p_local_nls,p_remote_nls)||'&';

Line 679: RAISE FND_API.G_EXC_ERROR;

675: -- should return an expected error exception here as missing input is
676: -- considered a "normal" error
677: --
678: --RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
679: RAISE FND_API.G_EXC_ERROR;
680: ELSE
681: --Append this = to the input URL
682: p_url := p_url||p_name||'='||escape_url_chars(p_value,p_local_nls,p_remote_nls)||'&';
683: END IF;