DBA Data[Home] [Help]

APPS.OE_INSTALL dependencies on FND_INSTALLATION

Line 51: -- Make a call to fnd_installation.get function to check for the

47: /* Check if the global variable is set */
48: if G_PRODUCT_STATUS = FND_API.G_MISS_CHAR THEN
49:
50: -- Return the product status of Order Management
51: -- Make a call to fnd_installation.get function to check for the
52: -- installation status of Order Management and return the status.
53:
54: l_ret_val := fnd_installation.get(l_ont_application_id,l_ont_application_id,l_status,l_industry);
55: if (l_status = 'I') then

Line 54: l_ret_val := fnd_installation.get(l_ont_application_id,l_ont_application_id,l_status,l_industry);

50: -- Return the product status of Order Management
51: -- Make a call to fnd_installation.get function to check for the
52: -- installation status of Order Management and return the status.
53:
54: l_ret_val := fnd_installation.get(l_ont_application_id,l_ont_application_id,l_status,l_industry);
55: if (l_status = 'I') then
56: G_PRODUCT_STATUS := 'I';
57: return(G_PRODUCT_STATUS);
58: