DBA Data[Home] [Help]

APPS.CTO_WORKBENCH_UTIL_PK dependencies on FND_API

Line 764: if l_return_status in (fnd_api.g_ret_sts_error,

760: x_line_level => l_line_level,
761: x_return_status => l_return_status);
762:
763: -- no config line id, return null.
764: if l_return_status in (fnd_api.g_ret_sts_error,
765: fnd_api.g_ret_sts_unexp_error) then
766: return null;
767: end if;
768:

Line 765: fnd_api.g_ret_sts_unexp_error) then

761: x_return_status => l_return_status);
762:
763: -- no config line id, return null.
764: if l_return_status in (fnd_api.g_ret_sts_error,
765: fnd_api.g_ret_sts_unexp_error) then
766: return null;
767: end if;
768:
769: -- No need to process for lower level items.

Line 934: x_return_status := fnd_api.g_ret_sts_success;

930: x_return_status OUT NOCOPY varchar2) IS
931:
932: Begin
933:
934: x_return_status := fnd_api.g_ret_sts_success;
935:
936: -- Std item
937: If p_ato_line_id is null then
938: x_config_line_id := p_line_id;

Line 986: when FND_API.G_EXC_ERROR THEN

982: end if; -- if item_type in (model, class)
983:
984: Exception
985:
986: when FND_API.G_EXC_ERROR THEN
987: x_return_status := FND_API.G_RET_STS_ERROR;
988: x_config_line_id := null;
989: x_line_level := null;
990:

Line 987: x_return_status := FND_API.G_RET_STS_ERROR;

983:
984: Exception
985:
986: when FND_API.G_EXC_ERROR THEN
987: x_return_status := FND_API.G_RET_STS_ERROR;
988: x_config_line_id := null;
989: x_line_level := null;
990:
991: when FND_API.G_EXC_UNEXPECTED_ERROR then

Line 991: when FND_API.G_EXC_UNEXPECTED_ERROR then

987: x_return_status := FND_API.G_RET_STS_ERROR;
988: x_config_line_id := null;
989: x_line_level := null;
990:
991: when FND_API.G_EXC_UNEXPECTED_ERROR then
992: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
993: x_config_line_id := null;
994: x_line_level := null;
995:

Line 992: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

988: x_config_line_id := null;
989: x_line_level := null;
990:
991: when FND_API.G_EXC_UNEXPECTED_ERROR then
992: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
993: x_config_line_id := null;
994: x_line_level := null;
995:
996: when others then

Line 997: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

993: x_config_line_id := null;
994: x_line_level := null;
995:
996: when others then
997: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
998: x_config_line_id := null;
999: x_line_level := null;
1000:
1001: End find_config_line_and_level;