DBA Data[Home] [Help]

APPS.FND_XDFDICTIONARY_PKG dependencies on FND_SEQUENCES

Line 461: -- Add a new sequence into FND_SEQUENCES. This is only called after checking

457: end InsertForeignKey;
458:
459: --
460: -- InsertSequence (PRIVATE))
461: -- Add a new sequence into FND_SEQUENCES. This is only called after checking
462: -- there is no such sequence exists in UploadSequence().
463: --
464: procedure InsertSequence (
465: x_application_id in number,

Line 482: insert into FND_SEQUENCES (

478: x_last_updated_by in number,
479: x_last_update_login in number
480: ) is
481: begin
482: insert into FND_SEQUENCES (
483: APPLICATION_ID,
484: SEQUENCE_ID,
485: SEQUENCE_NAME,
486: START_VALUE,

Line 501: FND_SEQUENCES_S.NEXTVAL,

497: CREATION_DATE,
498: CREATED_BY)
499: values (
500: x_application_id,
501: FND_SEQUENCES_S.NEXTVAL,
502: x_sequence_name,
503: x_start_value,
504: x_description,
505: x_increment_by,

Line 1437: -- Remove sequence from FND_SEQUENCES table.

1433: end RemoveForeignKey;
1434:
1435: --
1436: -- RemoveSequence (PUBLIC)
1437: -- Remove sequence from FND_SEQUENCES table.
1438: --
1439: procedure RemoveSequence(
1440: x_application_short_name in varchar2,
1441: x_sequence_name in varchar2) is

Line 1457: delete from fnd_sequences

1453: || x_application_short_name , TRUE);
1454: return;
1455: end;
1456:
1457: delete from fnd_sequences
1458: where application_id = appl_id
1459: and sequence_name = upper(x_sequence_name);
1460: if (SQL%ROWCOUNT = 0) then
1461: RAISE_APPLICATION_ERROR(

Line 1462: -20001, 'Sql no data found in fnd_sequences for sequence name '

1458: where application_id = appl_id
1459: and sequence_name = upper(x_sequence_name);
1460: if (SQL%ROWCOUNT = 0) then
1461: RAISE_APPLICATION_ERROR(
1462: -20001, 'Sql no data found in fnd_sequences for sequence name '
1463: || x_sequence_name , TRUE);
1464: return;
1465: end if;
1466:

Line 3430: from FND_SEQUENCES

3426:
3427: begin
3428: select LAST_UPDATED_BY, LAST_UPDATE_DATE
3429: into db_luby, db_ludate
3430: from FND_SEQUENCES
3431: where APPLICATION_ID = appl_id
3432: and SEQUENCE_NAME = x_sequence_name;
3433:
3434: if (upload_test(f_luby, f_ludate, db_luby,

Line 3439: update FND_SEQUENCES set

3435: db_ludate, X_CUSTOM_MODE)) then
3436:
3437:
3438: -- Check if this is a new table or old table
3439: update FND_SEQUENCES set
3440: START_VALUE = x_start_value,
3441: DESCRIPTION = x_description,
3442: INCREMENT_BY = x_increment_by,
3443: MIN_VALUE = x_min_value,