DBA Data[Home] [Help]

APPS.AD_MORG dependencies on FND_INSTALLATION

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

205: --
206:
207: if ( x_appl_short_name <> g_prev_product) then
208:
209: -- We need to call fnd_installation.get_app_info() every time we
210: -- are passed a new application short name.
211:
212: -- The x_appl_short_name <> g_prev_product comparison evaluates to
213: -- false when x_appl_short_name is null.

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

211:
212: -- The x_appl_short_name <> g_prev_product comparison evaluates to
213: -- false when x_appl_short_name is null.
214:
215: l_ign := fnd_installation.get_app_info(x_appl_short_name, l_status,
216: l_industry, l_oracle_schema);
217:
218: -- Cache the values so we can use them the next time add_list() is
219: -- called (if the same application name is passed):

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

267: -- If the x_alt_short_name parameter is not null, we're dealing with
268: -- a licensed localization table. This is an exceptional and hopefully
269: -- rare case. We cannot use the schema value associated with
270: -- x_appl_short_schema (see notes section) but we must call
271: -- fnd_installation.get_app_info() once again:
272:
273: if (g_load_table_stats = 'Y' and x_alt_short_name is not null) then
274:
275: l_ign := fnd_installation.get_app_info(x_alt_short_name, l_status,

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

271: -- fnd_installation.get_app_info() once again:
272:
273: if (g_load_table_stats = 'Y' and x_alt_short_name is not null) then
274:
275: l_ign := fnd_installation.get_app_info(x_alt_short_name, l_status,
276: l_industry, l_oracle_schema);
277:
278: -- We won't cache anything this time because it won't buy us much.
279:

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

368: -- Get the schema name to use for the ad_ddl call below. Note that this
369: -- used to be passed as parameter 1, but due to GSCC requirements, it is
370: -- deemed a much safer way to do it this way instead.
371: begin
372: if (NOT (FND_INSTALLATION.get_app_info('FND', inst_stat, ind, schema_nm)))
373: then
374: -- Check the status from the call.
375: if (inst_stat <> 'I') then
376: raise_application_error(-20001,'FND_INSTALLATION.GET_APP_INFO()'||

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

372: if (NOT (FND_INSTALLATION.get_app_info('FND', inst_stat, ind, schema_nm)))
373: then
374: -- Check the status from the call.
375: if (inst_stat <> 'I') then
376: raise_application_error(-20001,'FND_INSTALLATION.GET_APP_INFO()'||
377: ' installation status of FND = '||inst_stat||
378: ' '|| X_sequence_name||' not created.');
379: end if;
380: end if;

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

380: end if;
381: exception
382: when others then
383: raise_application_error(-20000, sqlerrm || ' during '||
384: 'FND_INSTALLATION.GET_APP_INFO()');
385: end;
386:
387:
388: statement := 'create sequence ' || X_sequence_name ||