DBA Data[Home] [Help]

APPS.AD_MORG dependencies on AD_DDL

Line 332: -- Get the schema name to use for the ad_ddl call below. Note that this

328:
329: pragma exception_init(sequence_exists, -955);
330:
331: begin
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)))

Line 356: ad_ddl.do_ddl(schema_nm, X_appl_short_name,

352: statement := 'create sequence ' || X_sequence_name ||
353: ' start with ' || to_char(X_seq_start_num) ||
354: ' increment by 1';
355:
356: ad_ddl.do_ddl(schema_nm, X_appl_short_name,
357: ad_ddl.create_sequence, statement, X_sequence_name);
358: exception
359: when sequence_exists then
360: null;

Line 357: ad_ddl.create_sequence, statement, X_sequence_name);

353: ' start with ' || to_char(X_seq_start_num) ||
354: ' increment by 1';
355:
356: ad_ddl.do_ddl(schema_nm, X_appl_short_name,
357: ad_ddl.create_sequence, statement, X_sequence_name);
358: exception
359: when sequence_exists then
360: null;
361: when others then