DBA Data[Home] [Help]

APPS.CTO_WORKBENCH_UTIL_PK dependencies on FND_API

Line 674: if l_return_status in (fnd_api.g_ret_sts_error,

670: x_line_level => l_line_level,
671: x_return_status => l_return_status);
672:
673: -- no config line id, return null.
674: if l_return_status in (fnd_api.g_ret_sts_error,
675: fnd_api.g_ret_sts_unexp_error) then
676: return null;
677: end if;
678:

Line 675: fnd_api.g_ret_sts_unexp_error) then

671: x_return_status => l_return_status);
672:
673: -- no config line id, return null.
674: if l_return_status in (fnd_api.g_ret_sts_error,
675: fnd_api.g_ret_sts_unexp_error) then
676: return null;
677: end if;
678:
679: -- No need to process for lower level items.

Line 844: x_return_status := fnd_api.g_ret_sts_success;

840: x_return_status OUT NOCOPY varchar2) IS
841:
842: Begin
843:
844: x_return_status := fnd_api.g_ret_sts_success;
845:
846: -- Std item
847: If p_ato_line_id is null then
848: x_config_line_id := p_line_id;

Line 885: when FND_API.G_EXC_ERROR THEN

881: end if; -- if item_type in (model, class)
882:
883: Exception
884:
885: when FND_API.G_EXC_ERROR THEN
886: x_return_status := FND_API.G_RET_STS_ERROR;
887: x_config_line_id := null;
888: x_line_level := null;
889:

Line 886: x_return_status := FND_API.G_RET_STS_ERROR;

882:
883: Exception
884:
885: when FND_API.G_EXC_ERROR THEN
886: x_return_status := FND_API.G_RET_STS_ERROR;
887: x_config_line_id := null;
888: x_line_level := null;
889:
890: when FND_API.G_EXC_UNEXPECTED_ERROR then

Line 890: when FND_API.G_EXC_UNEXPECTED_ERROR then

886: x_return_status := FND_API.G_RET_STS_ERROR;
887: x_config_line_id := null;
888: x_line_level := null;
889:
890: when FND_API.G_EXC_UNEXPECTED_ERROR then
891: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
892: x_config_line_id := null;
893: x_line_level := null;
894:

Line 891: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

887: x_config_line_id := null;
888: x_line_level := null;
889:
890: when FND_API.G_EXC_UNEXPECTED_ERROR then
891: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
892: x_config_line_id := null;
893: x_line_level := null;
894:
895: when others then

Line 896: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

892: x_config_line_id := null;
893: x_line_level := null;
894:
895: when others then
896: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
897: x_config_line_id := null;
898: x_line_level := null;
899:
900: End find_config_line_and_level;