DBA Data[Home] [Help]

APPS.INV_CHECK_PRODUCT_INSTALL dependencies on FND_INSTALLATION

Line 42: l_installed := fnd_installation.get(appl_id => p_application_id,

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);
46:

Line 76: l_return_val := fnd_installation.get_app_info(application_short_name => 'CSE',

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,
79: oracle_schema => l_schema);
80: end if;

Line 106: l_return_val := fnd_installation.get_app_info(application_short_name => 'CSE',

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,
109: oracle_schema => l_schema);
110: INV_CHECK_PRODUCT_INSTALL.g_cse_installation_status := l_status;