DBA Data[Home] [Help]

APPS.IGS_UC_REF_COUNTRY_PKG SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 17

    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 13-JUL-2006
  ||  Purpose : Initialises the Old and New references for the columns of the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */

    CURSOR cur_old_ref_values IS
      SELECT   *
      FROM     igs_uc_ref_country
      WHERE    rowid = x_rowid;
Line: 44

    IF ((cur_old_ref_values%NOTFOUND) AND (p_action NOT IN ('INSERT', 'VALIDATE_INSERT'))) THEN
      CLOSE cur_old_ref_values;
Line: 46

      fnd_message.set_name ('FND', 'FORM_RECORD_DELETED');
Line: 59

    IF (p_action = 'UPDATE') THEN
      new_references.creation_date                   := old_references.creation_date;
Line: 67

    new_references.last_update_date                  := x_last_update_date;
Line: 68

    new_references.last_updated_by                   := x_last_updated_by;
Line: 69

    new_references.last_update_login                 := x_last_update_login;
Line: 87

      SELECT   rowid
      FROM     igs_uc_ref_country
      WHERE    country_code = x_country_code
      FOR UPDATE NOWAIT;
Line: 118

    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 13-JUL-2006
  ||  Purpose : Initialises the columns, Checks Constraints, Calls the
  ||            Trigger Handlers for the table, before any DML operation.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_country_code,
      x_description,
      x_type,
      x_imported,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 148

    IF (p_action = 'INSERT') THEN
      -- Call all the procedures related to Before Insert.
      IF ( get_pk_for_validation(
             new_references.country_code
           )
         ) THEN
        fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
Line: 158

    ELSIF (p_action = 'VALIDATE_INSERT') THEN
      -- Call all the procedures related to Before Insert.
      IF ( get_pk_for_validation (
             new_references.country_code
           )
         ) THEN
        fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
Line: 173

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_country_code                      IN     VARCHAR2,
    x_description                       IN     VARCHAR2,
    x_type                              IN     VARCHAR2,
    x_imported                          IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 13-JUL-2006
  ||  Purpose : Handles the INSERT DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */

    x_last_update_date           DATE;
Line: 192

    x_last_updated_by            NUMBER;
Line: 193

    x_last_update_login          NUMBER;
Line: 197

    x_last_update_date := SYSDATE;
Line: 199

      x_last_updated_by := 1;
Line: 200

      x_last_update_login := 0;
Line: 202

      x_last_updated_by := fnd_global.user_id;
Line: 203

      IF (x_last_updated_by IS NULL) THEN
        x_last_updated_by := -1;
Line: 206

      x_last_update_login := fnd_global.login_id;
Line: 207

      IF (x_last_update_login IS NULL) THEN
        x_last_update_login := -1;
Line: 212

      fnd_message.set_token ('ROUTINE', 'IGS_UC_REF_COUNTRY_PKG.INSERT_ROW');
Line: 218

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_country_code                      => x_country_code,
      x_description                       => x_description,
      x_type                              => x_type,
      x_imported                          => x_imported,
      x_creation_date                     => x_last_update_date,
      x_created_by                        => x_last_updated_by,
      x_last_update_date                  => x_last_update_date,
      x_last_updated_by                   => x_last_updated_by,
      x_last_update_login                 => x_last_update_login
    );
Line: 231

    INSERT INTO igs_uc_ref_country (
      country_code,
      description,
      type,
      imported,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.country_code,
      new_references.description,
      new_references.type,
      new_references.imported,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    ) RETURNING ROWID INTO x_rowid;
Line: 253

  END insert_row;
Line: 273

      SELECT
        description,
        type,
        imported
      FROM  igs_uc_ref_country
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 288

      fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
Line: 313

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_country_code                      IN     VARCHAR2,
    x_description                       IN     VARCHAR2,
    x_type                              IN     VARCHAR2,
    x_imported                          IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 13-JUL-2006
  ||  Purpose : Handles the UPDATE DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */
    x_last_update_date           DATE ;
Line: 331

    x_last_updated_by            NUMBER;
Line: 332

    x_last_update_login          NUMBER;
Line: 336

    x_last_update_date := SYSDATE;
Line: 338

      x_last_updated_by := 1;
Line: 339

      x_last_update_login := 0;
Line: 341

      x_last_updated_by := fnd_global.user_id;
Line: 342

      IF x_last_updated_by IS NULL THEN
        x_last_updated_by := -1;
Line: 345

      x_last_update_login := fnd_global.login_id;
Line: 346

      IF (x_last_update_login IS NULL) THEN
        x_last_update_login := -1;
Line: 351

      fnd_message.set_token ('ROUTINE', 'IGS_UC_REF_COUNTRY_PKG.UPDATE_ROW');
Line: 357

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_country_code                      => x_country_code,
      x_description                       => x_description,
      x_type                              => x_type,
      x_imported                          => x_imported,
      x_creation_date                     => x_last_update_date,
      x_created_by                        => x_last_updated_by,
      x_last_update_date                  => x_last_update_date,
      x_last_updated_by                   => x_last_updated_by,
      x_last_update_login                 => x_last_update_login
    );
Line: 370

    UPDATE igs_uc_ref_country
      SET
        description                       = new_references.description,
        type                              = new_references.type,
        imported                          = new_references.imported,
        last_update_date                  = x_last_update_date,
        last_updated_by                   = x_last_updated_by,
        last_update_login                 = x_last_update_login
      WHERE rowid = x_rowid;
Line: 384

  END update_row;
Line: 398

  ||  Purpose : Adds a row if there is no existing row, otherwise updates existing row in the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c1 IS
      SELECT   rowid
      FROM     igs_uc_ref_country
      WHERE    country_code                      = x_country_code;
Line: 416

      insert_row (
        x_rowid,
        x_country_code,
        x_description,
        x_type,
        x_imported,
        x_mode
      );
Line: 428

    update_row (
      x_rowid,
      x_country_code,
      x_description,
      x_type,
      x_imported,
      x_mode
    );
Line: 440

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 13-JUL-2006
  ||  Purpose : Handles the DELETE DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */
  BEGIN

    before_dml (
      p_action => 'DELETE',
      x_rowid => x_rowid
    );
Line: 459

    DELETE FROM igs_uc_ref_country
    WHERE rowid = x_rowid;
Line: 466

  END delete_row;