DBA Data[Home] [Help]

APPS.INV_CHECK_PRODUCT_INSTALL dependencies on FND_API

Line 41: x_return_status := FND_API.G_RET_STS_SUCCESS ;

37: , x_msg_count OUT NOCOPY NUMBER
38: , x_msg_data OUT NOCOPY VARCHAR2) IS
39: l_installed BOOLEAN;
40: BEGIN
41: x_return_status := FND_API.G_RET_STS_SUCCESS ;
42: l_installed := fnd_installation.get(appl_id => p_application_id,
43: dep_appl_id => p_dep_application_id,
44: status => x_product_installed,
45: industry => x_industry);

Line 48: x_return_status := FND_API.G_RET_STS_ERROR;

44: status => x_product_installed,
45: industry => x_industry);
46:
47: IF NOT l_installed THEN
48: x_return_status := FND_API.G_RET_STS_ERROR;
49: x_product_installed := 'N';
50: END IF;
51: EXCEPTION
52: WHEN OTHERS THEN

Line 53: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;

49: x_product_installed := 'N';
50: END IF;
51: EXCEPTION
52: WHEN OTHERS THEN
53: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
54: END check_install;
55:
56: FUNCTION check_cse_install (
57: x_return_status OUT NOCOPY VARCHAR2

Line 71: x_return_status := fnd_api.g_ret_sts_success ;

67: l_industry VARCHAR2(30);
68: l_schema VARCHAR2(30);
69:
70: begin
71: x_return_status := fnd_api.g_ret_sts_success ;
72:
73: if (g_cse_installation_status is not null) then
74: l_status := INV_CHECK_PRODUCT_INSTALL.g_cse_installation_status;
75: else

Line 86: x_return_status := fnd_api.g_ret_sts_unexp_error ;

82: else return FALSE;
83: end if;
84: exception
85: when others then
86: x_return_status := fnd_api.g_ret_sts_unexp_error ;
87:
88: if (fnd_msg_pub.check_msg_level
89: (fnd_msg_pub.g_msg_lvl_unexp_error)) then
90: fnd_msg_pub.add_exc_msg(g_pkg_name, c_api_name);

Line 127: x_return_status := FND_API.G_RET_STS_SUCCESS ;

123: , x_return_status OUT NOCOPY VARCHAR2
124: , x_msg_count OUT NOCOPY NUMBER
125: , x_msg_data OUT NOCOPY VARCHAR2) IS
126: BEGIN
127: x_return_status := FND_API.G_RET_STS_SUCCESS ;
128: IF inv_check_product_install.g_eam_installed is NULL THEN
129: check_install
130: (p_application_id => 426
131: , p_dep_application_id => 426

Line 144: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;

140: END IF;
141:
142: EXCEPTION
143: WHEN OTHERS THEN
144: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
145: END check_eam_installed;
146:
147: PROCEDURE check_fte_installed
148: (x_fte_installed OUT NOCOPY VARCHAR2

Line 154: x_return_status := FND_API.G_RET_STS_SUCCESS ;

150: , x_return_status OUT NOCOPY VARCHAR2
151: , x_msg_count OUT NOCOPY NUMBER
152: , x_msg_data OUT NOCOPY VARCHAR2) IS
153: BEGIN
154: x_return_status := FND_API.G_RET_STS_SUCCESS ;
155: IF inv_check_product_install.g_fte_installed is NULL THEN
156: check_install(p_application_id => 716
157: , p_dep_application_id => 716
158: , x_product_installed => x_fte_installed

Line 170: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;

166: END IF;
167:
168: EXCEPTION
169: WHEN OTHERS THEN
170: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
171: END check_fte_installed;
172:
173: END INV_CHECK_PRODUCT_INSTALL;