DBA Data[Home] [Help]

APPS.FND_INSTALLATION2 dependencies on FND_INSTALLATION

Line 1: PACKAGE BODY FND_INSTALLATION2 AS

1: PACKAGE BODY FND_INSTALLATION2 AS
2: /* $Header: AFINST2B.pls 115.1 99/07/16 23:22:57 porting sh $ */
3:
4: --
5: -- Public Functions

Line 20: l_return := fnd_installation.get(appl_id, dep_appl_id, l_status,

16: BEGIN
17: status := 'N';
18: industry := 'N';
19:
20: l_return := fnd_installation.get(appl_id, dep_appl_id, l_status,
21: l_industry);
22: status := l_status;
23: industry := l_industry;
24:

Line 49: l_return := fnd_installation.get_app_info(application_short_name,

45: status := 'N';
46: industry := 'N';
47: oracle_schema := null;
48:
49: l_return := fnd_installation.get_app_info(application_short_name,
50: l_status, l_industry, l_oracle_schema);
51:
52: status := l_status;
53: industry := l_industry;

Line 76: l_return := fnd_installation.get_app_info_other(application_short_name,

72: status := 'N';
73: industry := 'N';
74: oracle_schema := null;
75:
76: l_return := fnd_installation.get_app_info_other(application_short_name,
77: target_schema, l_status, l_industry, l_oracle_schema);
78:
79: status := l_status;
80: industry := l_industry;

Line 88: END FND_INSTALLATION2;

84: when others then
85: return(FALSE);
86: END get_app_info_other;
87:
88: END FND_INSTALLATION2;