DBA Data[Home] [Help]

APPS.AD_MORG dependencies on AD_DDL

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

364:
365: pragma exception_init(sequence_exists, -955);
366:
367: begin
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)))

Line 392: ad_ddl.do_ddl(schema_nm, X_appl_short_name,

388: statement := 'create sequence ' || X_sequence_name ||
389: ' start with ' || to_char(X_seq_start_num) ||
390: ' increment by 1';
391:
392: ad_ddl.do_ddl(schema_nm, X_appl_short_name,
393: ad_ddl.create_sequence, statement, X_sequence_name);
394: exception
395: when sequence_exists then
396: null;

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

389: ' start with ' || to_char(X_seq_start_num) ||
390: ' increment by 1';
391:
392: ad_ddl.do_ddl(schema_nm, X_appl_short_name,
393: ad_ddl.create_sequence, statement, X_sequence_name);
394: exception
395: when sequence_exists then
396: null;
397: when others then