DBA Data[Home] [Help]

APPS.IGS_UC_ENQ_DETAILS_PKG SQL Statements

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

Line: 27

    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 : 17-SEP-2002
  ||  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_enq_details
      WHERE    rowid = x_rowid;
Line: 54

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 88

    new_references.last_updated_by                   := x_last_updated_by;
Line: 89

    new_references.last_update_login                 := x_last_update_login;
Line: 107

      SELECT   rowid
      FROM     igs_uc_enq_details
      WHERE    app_no = x_app_no ;
Line: 147

    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 : 17-SEP-2002
  ||  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_app_no,
      x_surname,
      x_given_names,
      x_sex,
      x_birth_dt,
      x_prefix,
      x_address_line1,
      x_address_line2,
      x_address_line3,
      x_address_line4,
      x_country,
      x_postcode,
      x_email,
      x_telephone,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 187

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_app_no                            IN     NUMBER,
    x_surname                           IN     VARCHAR2,
    x_given_names                       IN     VARCHAR2,
    x_sex                               IN     VARCHAR2,
    x_birth_dt                          IN     DATE,
    x_prefix                            IN     VARCHAR2,
    x_address_line1                     IN     VARCHAR2,
    x_address_line2                     IN     VARCHAR2,
    x_address_line3                     IN     VARCHAR2,
    x_address_line4                     IN     VARCHAR2,
    x_country                           IN     VARCHAR2,
    x_postcode                          IN     VARCHAR2,
    x_email                             IN     VARCHAR2,
    x_telephone                         IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 17-SEP-2002
  ||  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: 241

    x_last_updated_by            NUMBER;
Line: 242

    x_last_update_login          NUMBER;
Line: 246

    x_last_update_date := SYSDATE;
Line: 248

      x_last_updated_by := 1;
Line: 249

      x_last_update_login := 0;
Line: 251

      x_last_updated_by := fnd_global.user_id;
Line: 252

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

      x_last_update_login := fnd_global.login_id;
Line: 256

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

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_app_no                            => x_app_no,
      x_surname                           => x_surname,
      x_given_names                       => x_given_names,
      x_sex                               => x_sex,
      x_birth_dt                          => x_birth_dt,
      x_prefix                            => x_prefix,
      x_address_line1                     => x_address_line1,
      x_address_line2                     => x_address_line2,
      x_address_line3                     => x_address_line3,
      x_address_line4                     => x_address_line4,
      x_country                           => x_country,
      x_postcode                          => x_postcode,
      x_email                             => x_email,
      x_telephone                         => x_telephone,
      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: 289

    INSERT INTO igs_uc_enq_details (
      app_no,
      surname,
      given_names,
      sex,
      birth_dt,
      prefix,
      address_line1,
      address_line2,
      address_line3,
      address_line4,
      country,
      postcode,
      email,
      telephone,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.app_no,
      new_references.surname,
      new_references.given_names,
      new_references.sex,
      new_references.birth_dt,
      new_references.prefix,
      new_references.address_line1,
      new_references.address_line2,
      new_references.address_line3,
      new_references.address_line4,
      new_references.country,
      new_references.postcode,
      new_references.email,
      new_references.telephone,
      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: 331

  END insert_row;
Line: 361

      SELECT
        surname,
        given_names,
        sex,
        birth_dt,
        prefix,
        address_line1,
        address_line2,
        address_line3,
        address_line4,
        country,
        postcode,
        email,
        telephone
      FROM  igs_uc_enq_details
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 386

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_app_no                            IN     NUMBER,
    x_surname                           IN     VARCHAR2,
    x_given_names                       IN     VARCHAR2,
    x_sex                               IN     VARCHAR2,
    x_birth_dt                          IN     DATE,
    x_prefix                            IN     VARCHAR2,
    x_address_line1                     IN     VARCHAR2,
    x_address_line2                     IN     VARCHAR2,
    x_address_line3                     IN     VARCHAR2,
    x_address_line4                     IN     VARCHAR2,
    x_country                           IN     VARCHAR2,
    x_postcode                          IN     VARCHAR2,
    x_email                             IN     VARCHAR2,
    x_telephone                         IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 17-SEP-2002
  ||  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: 449

    x_last_updated_by            NUMBER;
Line: 450

    x_last_update_login          NUMBER;
Line: 454

    x_last_update_date := SYSDATE;
Line: 456

      x_last_updated_by := 1;
Line: 457

      x_last_update_login := 0;
Line: 459

      x_last_updated_by := fnd_global.user_id;
Line: 460

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

      x_last_update_login := fnd_global.login_id;
Line: 464

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_app_no                            => x_app_no,
      x_surname                           => x_surname,
      x_given_names                       => x_given_names,
      x_sex                               => x_sex,
      x_birth_dt                          => x_birth_dt,
      x_prefix                            => x_prefix,
      x_address_line1                     => x_address_line1,
      x_address_line2                     => x_address_line2,
      x_address_line3                     => x_address_line3,
      x_address_line4                     => x_address_line4,
      x_country                           => x_country,
      x_postcode                          => x_postcode,
      x_email                             => x_email,
      x_telephone                         => x_telephone,
      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: 497

    UPDATE igs_uc_enq_details
      SET
        surname                           = new_references.surname,
        given_names                       = new_references.given_names,
        sex                               = new_references.sex,
        birth_dt                          = new_references.birth_dt,
        prefix                            = new_references.prefix,
        address_line1                     = new_references.address_line1,
        address_line2                     = new_references.address_line2,
        address_line3                     = new_references.address_line3,
        address_line4                     = new_references.address_line4,
        country                           = new_references.country,
        postcode                          = new_references.postcode,
        email                             = new_references.email,
        telephone                         = new_references.telephone,
        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: 521

  END update_row;
Line: 545

  ||  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_enq_details
      WHERE    app_no                            = x_app_no;
Line: 563

      insert_row (
        x_rowid,
        x_app_no,
        x_surname,
        x_given_names,
        x_sex,
        x_birth_dt,
        x_prefix,
        x_address_line1,
        x_address_line2,
        x_address_line3,
        x_address_line4,
        x_country,
        x_postcode,
        x_email,
        x_telephone,
        x_mode
      );
Line: 585

    update_row (
      x_rowid,
      x_app_no,
      x_surname,
      x_given_names,
      x_sex,
      x_birth_dt,
      x_prefix,
      x_address_line1,
      x_address_line2,
      x_address_line3,
      x_address_line4,
      x_country,
      x_postcode,
      x_email,
      x_telephone,
      x_mode
    );
Line: 607

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 17-SEP-2002
  ||  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: 626

    DELETE FROM igs_uc_enq_details
    WHERE rowid = x_rowid;
Line: 633

  END delete_row;