DBA Data[Home] [Help]

APPS.QA_MQA_MWA_API dependencies on FND_INSTALLATION

Line 17: -- Wrapper to fnd_installation.get_app_info (which, having

13: CtxCharIds CtxElemCharIdTab := CtxElemCharIdTab(10, 11, 32, 146, 173);
14:
15: --
16: -- Return 1 if the application p_short_name is installed.
17: -- Wrapper to fnd_installation.get_app_info (which, having
18: -- a Boolean return value, is not compatible with current
19: -- JDBC versions.
20: --
21: FUNCTION app_installed(p_short_name IN VARCHAR2) RETURN NUMBER IS

Line 27: dummy := fnd_installation.get_app_info(p_short_name, l_status,

23: l_industry varchar2(10);
24: l_schema varchar2(30);
25: dummy boolean;
26: BEGIN
27: dummy := fnd_installation.get_app_info(p_short_name, l_status,
28: l_industry, l_schema);
29:
30: --
31: -- l_status will be 'I' if installed or 'N' if not.