DBA Data[Home] [Help]

APPS.AD_MORG dependencies on FND_INSTALLATION

Line 173: -- We need to call fnd_installation.get_app_info() every time we

169: --
170:
171: if ( x_appl_short_name <> g_prev_product) then
172:
173: -- We need to call fnd_installation.get_app_info() every time we
174: -- are passed a new application short name.
175:
176: -- The x_appl_short_name <> g_prev_product comparison evaluates to
177: -- false when x_appl_short_name is null.

Line 179: l_ign := fnd_installation.get_app_info(x_appl_short_name, l_status,

175:
176: -- The x_appl_short_name <> g_prev_product comparison evaluates to
177: -- false when x_appl_short_name is null.
178:
179: l_ign := fnd_installation.get_app_info(x_appl_short_name, l_status,
180: l_industry, l_oracle_schema);
181:
182: -- Cache the values so we can use them the next time add_list() is
183: -- called (if the same application name is passed):

Line 235: -- fnd_installation.get_app_info() once again:

231: -- If the x_alt_short_name parameter is not null, we're dealing with
232: -- a licensed localization table. This is an exceptional and hopefully
233: -- rare case. We cannot use the schema value associated with
234: -- x_appl_short_schema (see notes section) but we must call
235: -- fnd_installation.get_app_info() once again:
236:
237: if (g_load_table_stats = 'Y' and x_alt_short_name is not null) then
238:
239: l_ign := fnd_installation.get_app_info(x_alt_short_name, l_status,

Line 239: l_ign := fnd_installation.get_app_info(x_alt_short_name, l_status,

235: -- fnd_installation.get_app_info() once again:
236:
237: if (g_load_table_stats = 'Y' and x_alt_short_name is not null) then
238:
239: l_ign := fnd_installation.get_app_info(x_alt_short_name, l_status,
240: l_industry, l_oracle_schema);
241:
242: -- We won't cache anything this time because it won't buy us much.
243:

Line 336: if (NOT (FND_INSTALLATION.get_app_info('FND', inst_stat, ind, schema_nm)))

332: -- Get the schema name to use for the ad_ddl call below. Note that this
333: -- used to be passed as parameter 1, but due to GSCC requirements, it is
334: -- deemed a much safer way to do it this way instead.
335: begin
336: if (NOT (FND_INSTALLATION.get_app_info('FND', inst_stat, ind, schema_nm)))
337: then
338: -- Check the status from the call.
339: if (inst_stat <> 'I') then
340: raise_application_error(-20001,'FND_INSTALLATION.GET_APP_INFO()'||

Line 340: raise_application_error(-20001,'FND_INSTALLATION.GET_APP_INFO()'||

336: if (NOT (FND_INSTALLATION.get_app_info('FND', inst_stat, ind, schema_nm)))
337: then
338: -- Check the status from the call.
339: if (inst_stat <> 'I') then
340: raise_application_error(-20001,'FND_INSTALLATION.GET_APP_INFO()'||
341: ' installation status of FND = '||inst_stat||
342: ' '|| X_sequence_name||' not created.');
343: end if;
344: end if;

Line 348: 'FND_INSTALLATION.GET_APP_INFO()');

344: end if;
345: exception
346: when others then
347: raise_application_error(-20000, sqlerrm || ' during '||
348: 'FND_INSTALLATION.GET_APP_INFO()');
349: end;
350:
351:
352: statement := 'create sequence ' || X_sequence_name ||