DBA Data[Home] [Help]

APPS.INV_CHECK_PRODUCT_INSTALL dependencies on INV_CHECK_PRODUCT_INSTALL

Line 1: PACKAGE BODY INV_CHECK_PRODUCT_INSTALL AS

1: PACKAGE BODY INV_CHECK_PRODUCT_INSTALL AS
2: /* $Header: INVNLINB.pls 120.0 2005/05/25 05:45:13 appldev noship $ */
3:
4: -- Global constant holding package name
5: g_pkg_name constant varchar2(50) := 'INV_CHECK_PRODUCT_INSTALL';

Line 5: g_pkg_name constant varchar2(50) := 'INV_CHECK_PRODUCT_INSTALL';

1: PACKAGE BODY INV_CHECK_PRODUCT_INSTALL AS
2: /* $Header: INVNLINB.pls 120.0 2005/05/25 05:45:13 appldev noship $ */
3:
4: -- Global constant holding package name
5: g_pkg_name constant varchar2(50) := 'INV_CHECK_PRODUCT_INSTALL';
6:
7: /*
8: ** -------------------------------------------------------------------------
9: ** Function: check_cse_install

Line 74: l_status := INV_CHECK_PRODUCT_INSTALL.g_cse_installation_status;

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
76: l_return_val := fnd_installation.get_app_info(application_short_name => 'CSE',
77: status => l_status,
78: Industry => l_industry,

Line 104: l_status := inv_check_product_install.g_cse_installation_status;

100: l_schema VARCHAR2(30);
101:
102: BEGIN
103: if (g_cse_installation_status is not null) then
104: l_status := inv_check_product_install.g_cse_installation_status;
105: else
106: l_return_val := fnd_installation.get_app_info(application_short_name => 'CSE',
107: status => l_status,
108: Industry => l_industry,

Line 110: INV_CHECK_PRODUCT_INSTALL.g_cse_installation_status := l_status;

106: l_return_val := fnd_installation.get_app_info(application_short_name => 'CSE',
107: status => l_status,
108: Industry => l_industry,
109: oracle_schema => l_schema);
110: INV_CHECK_PRODUCT_INSTALL.g_cse_installation_status := l_status;
111: end if;
112: if (l_status='I') then return 'Y';
113: else return 'N';
114: end if;

Line 128: IF inv_check_product_install.g_eam_installed is NULL THEN

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
132: , x_product_installed => x_eam_installed

Line 155: IF inv_check_product_install.g_fte_installed is NULL THEN

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
159: , x_industry => x_industry

Line 173: END INV_CHECK_PRODUCT_INSTALL;

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;