DBA Data[Home] [Help]

APPS.IGS_UC_INST_CONTS_PKG SQL Statements

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

Line: 12

    x_updater                           IN     VARCHAR2,
    x_name                              IN     VARCHAR2,
    x_post                              IN     VARCHAR2,
    x_address1                          IN     VARCHAR2,
    x_address2                          IN     VARCHAR2,
    x_address3                          IN     VARCHAR2,
    x_address4                          IN     VARCHAR2,
    x_telephone                         IN     VARCHAR2,
    x_fax                               IN     VARCHAR2,
    x_email                             IN     VARCHAR2,
    x_sent_to_ucas                      IN     VARCHAR2,
    x_creation_date                     IN     DATE    ,
    x_created_by                        IN     NUMBER  ,
    x_last_update_date                  IN     DATE    ,
    x_last_updated_by                   IN     NUMBER  ,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : rgopalan
  ||  Created On : 01-OCT-2001
  ||  Purpose : Initialises the Old and New references for the columns of the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  || smaddali 10-jun-03  Obsoleting datetimestamp column for ucfd203 -multiple cycled build ,bug#2669208
  ||  (reverse chronological order - newest change first)
  */

    CURSOR cur_old_ref_values IS
      SELECT   *
      FROM     IGS_UC_INST_CONTS
      WHERE    rowid = x_rowid;
Line: 53

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

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

    new_references.updater                           := x_updater;
Line: 76

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

    new_references.last_update_date                  := x_last_update_date;
Line: 85

    new_references.last_updated_by                   := x_last_updated_by;
Line: 86

    new_references.last_update_login                 := x_last_update_login;
Line: 123

      SELECT   rowid
      FROM     igs_uc_inst_conts
      WHERE    contact_code = x_contact_code ;
Line: 148

    x_updater                           IN     VARCHAR2,
    x_name                              IN     VARCHAR2,
    x_post                              IN     VARCHAR2,
    x_address1                          IN     VARCHAR2,
    x_address2                          IN     VARCHAR2,
    x_address3                          IN     VARCHAR2,
    x_address4                          IN     VARCHAR2,
    x_telephone                         IN     VARCHAR2,
    x_fax                               IN     VARCHAR2,
    x_email                             IN     VARCHAR2,
    x_sent_to_ucas                      IN     VARCHAR2,
    x_creation_date                     IN     DATE    ,
    x_created_by                        IN     NUMBER  ,
    x_last_update_date                  IN     DATE    ,
    x_last_updated_by                   IN     NUMBER  ,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : rgopalan
  ||  Created On : 01-OCT-2001
  ||  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
  || smaddali 10-jun-03  Obsoleting datetimestamp column for ucfd203 -multiple cycled build ,bug#2669208
  ||  (reverse chronological order - newest change first)
  */
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_contact_code,
      x_updater,
      x_name,
      x_post,
      x_address1,
      x_address2,
      x_address3,
      x_address4,
      x_telephone,
      x_fax,
      x_email,
      x_sent_to_ucas,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 200

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

    ELSIF (p_action = 'DELETE') THEN
      -- Call all the procedures related to Before Delete.
      check_child_existance;
Line: 213

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

    ELSIF (p_action = 'VALIDATE_DELETE') THEN
      check_child_existance;
Line: 230

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_contact_code                      IN OUT NOCOPY VARCHAR2,
    x_updater                           IN     VARCHAR2,
    x_name                              IN     VARCHAR2,
    x_post                              IN     VARCHAR2,
    x_address1                          IN     VARCHAR2,
    x_address2                          IN     VARCHAR2,
    x_address3                          IN     VARCHAR2,
    x_address4                          IN     VARCHAR2,
    x_telephone                         IN     VARCHAR2,
    x_fax                               IN     VARCHAR2,
    x_email                             IN     VARCHAR2,
    x_sent_to_ucas                      IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : rgopalan
  ||  Created On : 01-OCT-2001
  ||  Purpose : Handles the INSERT DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  || smaddali 10-jun-03  Obsoleting datetimestamp column for ucfd203 -multiple cycled build ,bug#2669208
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c IS
      SELECT   rowid
      FROM     igs_uc_inst_conts
      WHERE    contact_code                      = x_contact_code;
Line: 261

    x_last_update_date           DATE;
Line: 262

    x_last_updated_by            NUMBER;
Line: 263

    x_last_update_login          NUMBER;
Line: 267

    x_last_update_date := SYSDATE;
Line: 269

      x_last_updated_by := 1;
Line: 270

      x_last_update_login := 0;
Line: 272

      x_last_updated_by := fnd_global.user_id;
Line: 273

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

      x_last_update_login := fnd_global.login_id;
Line: 277

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

/*    SELECT    igs_uc_inst_conts_s.NEXTVAL
    INTO      x_contact_code
    FROM      dual;
Line: 291

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_contact_code                      => x_contact_code,
      x_updater                           => x_updater,
      x_name                              => x_name,
      x_post                              => x_post,
      x_address1                          => x_address1,
      x_address2                          => x_address2,
      x_address3                          => x_address3,
      x_address4                          => x_address4,
      x_telephone                         => x_telephone,
      x_fax                               => x_fax,
      x_email                             => x_email,
      x_sent_to_ucas                      => x_sent_to_ucas,
      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: 312

    INSERT INTO igs_uc_inst_conts (
      contact_code,
      updater,
      name,
      post,
      address1,
      address2,
      address3,
      address4,
      telephone,
      fax,
      email,
      sent_to_ucas,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.contact_code,
      new_references.updater,
      new_references.name,
      new_references.post,
      new_references.address1,
      new_references.address2,
      new_references.address3,
      new_references.address4,
      new_references.telephone,
      new_references.fax,
      new_references.email,
      new_references.sent_to_ucas,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 358

  END insert_row;
Line: 364

    x_updater                           IN     VARCHAR2,
    x_name                              IN     VARCHAR2,
    x_post                              IN     VARCHAR2,
    x_address1                          IN     VARCHAR2,
    x_address2                          IN     VARCHAR2,
    x_address3                          IN     VARCHAR2,
    x_address4                          IN     VARCHAR2,
    x_telephone                         IN     VARCHAR2,
    x_fax                               IN     VARCHAR2,
    x_email                             IN     VARCHAR2,
    x_sent_to_ucas                      IN     VARCHAR2
  ) AS
  /*
  ||  Created By : rgopalan
  ||  Created On : 01-OCT-2001
  ||  Purpose : Handles the LOCK mechanism for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  || smaddali 10-jun-03  Obsoleting datetimestamp column for ucfd203 -multiple cycled build ,bug#2669208
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c1 IS
      SELECT
        updater,
        name,
        post,
        address1,
        address2,
        address3,
        address4,
        telephone,
        fax,
        email,
        sent_to_ucas
      FROM  igs_uc_inst_conts
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 410

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

        ((tlinfo.updater = x_updater) OR ((tlinfo.updater IS NULL) AND (X_updater IS NULL)))
        AND (tlinfo.name = x_name)
        AND (tlinfo.post = x_post)
        AND (tlinfo.address1 = x_address1)
        AND ((tlinfo.address2 = x_address2) OR ((tlinfo.address2 IS NULL) AND (X_address2 IS NULL)))
        AND ((tlinfo.address3 = x_address3) OR ((tlinfo.address3 IS NULL) AND (X_address3 IS NULL)))
        AND ((tlinfo.address4 = x_address4) OR ((tlinfo.address4 IS NULL) AND (X_address4 IS NULL)))
        AND ((tlinfo.telephone = x_telephone) OR ((tlinfo.telephone IS NULL) AND (X_telephone IS NULL)))
        AND ((tlinfo.fax = x_fax) OR ((tlinfo.fax IS NULL) AND (X_fax IS NULL)))
        AND ((tlinfo.email = x_email) OR ((tlinfo.email IS NULL) AND (X_email IS NULL)))
        AND (tlinfo.sent_to_ucas = x_sent_to_ucas)
       ) THEN
      NULL;
Line: 443

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_contact_code                      IN     VARCHAR2,
    x_updater                           IN     VARCHAR2,
    x_name                              IN     VARCHAR2,
    x_post                              IN     VARCHAR2,
    x_address1                          IN     VARCHAR2,
    x_address2                          IN     VARCHAR2,
    x_address3                          IN     VARCHAR2,
    x_address4                          IN     VARCHAR2,
    x_telephone                         IN     VARCHAR2,
    x_fax                               IN     VARCHAR2,
    x_email                             IN     VARCHAR2,
    x_sent_to_ucas                      IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : rgopalan
  ||  Created On : 01-OCT-2001
  ||  Purpose : Handles the UPDATE DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  || smaddali 10-jun-03  Obsoleting datetimestamp column for ucfd203 -multiple cycled build ,bug#2669208
  ||  (reverse chronological order - newest change first)
  */
    x_last_update_date           DATE ;
Line: 470

    x_last_updated_by            NUMBER;
Line: 471

    x_last_update_login          NUMBER;
Line: 475

    x_last_update_date := SYSDATE;
Line: 477

      x_last_updated_by := 1;
Line: 478

      x_last_update_login := 0;
Line: 480

      x_last_updated_by := fnd_global.user_id;
Line: 481

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

      x_last_update_login := fnd_global.login_id;
Line: 485

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_contact_code                      => x_contact_code,
      x_updater                           => x_updater,
      x_name                              => x_name,
      x_post                              => x_post,
      x_address1                          => x_address1,
      x_address2                          => x_address2,
      x_address3                          => x_address3,
      x_address4                          => x_address4,
      x_telephone                         => x_telephone,
      x_fax                               => x_fax,
      x_email                             => x_email,
      x_sent_to_ucas                      => x_sent_to_ucas,
      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: 516

    UPDATE igs_uc_inst_conts
      SET
        updater                           = new_references.updater,
        name                              = new_references.name,
        post                              = new_references.post,
        address1                          = new_references.address1,
        address2                          = new_references.address2,
        address3                          = new_references.address3,
        address4                          = new_references.address4,
        telephone                         = new_references.telephone,
        fax                               = new_references.fax,
        email                             = new_references.email,
        sent_to_ucas                      = new_references.sent_to_ucas,
        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: 538

  END update_row;
Line: 544

    x_updater                           IN     VARCHAR2,
    x_name                              IN     VARCHAR2,
    x_post                              IN     VARCHAR2,
    x_address1                          IN     VARCHAR2,
    x_address2                          IN     VARCHAR2,
    x_address3                          IN     VARCHAR2,
    x_address4                          IN     VARCHAR2,
    x_telephone                         IN     VARCHAR2,
    x_fax                               IN     VARCHAR2,
    x_email                             IN     VARCHAR2,
    x_sent_to_ucas                      IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : rgopalan
  ||  Created On : 01-OCT-2001
  ||  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
  || smaddali 10-jun-03  Obsoleting datetimestamp column for ucfd203 -multiple cycled build ,bug#2669208
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c1 IS
      SELECT   rowid
      FROM     igs_uc_inst_conts
      WHERE    contact_code                      = x_contact_code;
Line: 579

      insert_row (
        x_rowid,
        x_contact_code,
        x_updater,
        x_name,
        x_post,
        x_address1,
        x_address2,
        x_address3,
        x_address4,
        x_telephone,
        x_fax,
        x_email,
        x_sent_to_ucas,
        x_mode
      );
Line: 599

    update_row (
      x_rowid,
      x_contact_code,
      x_updater,
      x_name,
      x_post,
      x_address1,
      x_address2,
      x_address3,
      x_address4,
      x_telephone,
      x_fax,
      x_email,
      x_sent_to_ucas,
      x_mode
    );
Line: 619

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : rgopalan
  ||  Created On : 01-OCT-2001
  ||  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: 638

    DELETE FROM igs_uc_inst_conts
    WHERE rowid = x_rowid;
Line: 645

  END delete_row;