DBA Data[Home] [Help]

APPS.IGS_UC_APP_ADDRESES_PKG SQL Statements

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

Line: 38

    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 : 14-JUL-2003
  ||  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_app_addreses
      WHERE    rowid = x_rowid;
Line: 65

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 110

    new_references.last_updated_by                   := x_last_updated_by;
Line: 111

    new_references.last_update_login                 := x_last_update_login;
Line: 158

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

      SELECT   rowid
      FROM     igs_uc_app_addreses
      WHERE    app_no = x_app_no
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 214

      SELECT   rowid
      FROM     igs_uc_app_addreses
      WHERE   ((app_no = x_app_no));
Line: 266

    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 : 14-JUL-2003
  ||  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_address_area,
      x_address1,
      x_address2,
      x_address3,
      x_address4,
      x_post_code,
      x_mail_sort,
      x_telephone,
      x_fax,
      x_email,
      x_home_address1,
      x_home_address2,
      x_home_address3,
      x_home_address4,
      x_home_postcode,
      x_home_phone,
      x_home_fax,
      x_home_email,
      x_sent_to_oss_flag,
      x_ad_batch_id,
      x_ad_interface_id,
      x_mobile,
      x_country_code,
      x_home_country_code,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 317

    IF (p_action = 'INSERT') THEN
      -- Call all the procedures related to Before Insert.
      check_uniqueness;
Line: 321

    ELSIF (p_action = 'UPDATE') THEN
      -- Call all the procedures related to Before Update.
      check_uniqueness;
Line: 325

    ELSIF (p_action = 'VALIDATE_INSERT') THEN
      -- Call all the procedures related to Before Insert.
      check_uniqueness;
Line: 328

    ELSIF (p_action = 'VALIDATE_UPDATE') THEN
      check_uniqueness;
Line: 335

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_app_no                            IN     NUMBER,
    x_address_area                      IN     VARCHAR2,
    x_address1                          IN     VARCHAR2,
    x_address2                          IN     VARCHAR2,
    x_address3                          IN     VARCHAR2,
    x_address4                          IN     VARCHAR2,
    x_post_code                         IN     VARCHAR2,
    x_mail_sort                         IN     VARCHAR2,
    x_telephone                         IN     VARCHAR2,
    x_fax                               IN     VARCHAR2,
    x_email                             IN     VARCHAR2,
    x_home_address1                     IN     VARCHAR2,
    x_home_address2                     IN     VARCHAR2,
    x_home_address3                     IN     VARCHAR2,
    x_home_address4                     IN     VARCHAR2,
    x_home_postcode                     IN     VARCHAR2,
    x_home_phone                        IN     VARCHAR2,
    x_home_fax                          IN     VARCHAR2,
    x_home_email                        IN     VARCHAR2,
    x_sent_to_oss_flag                  IN     VARCHAR2,
    x_ad_batch_id                       IN     NUMBER,
    x_ad_interface_id                   IN     NUMBER,
    x_mobile                            IN     VARCHAR2,
    x_country_code                      IN     VARCHAR2,
    x_home_country_code                 IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 14-JUL-2003
  ||  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: 375

    x_last_updated_by            NUMBER;
Line: 376

    x_last_update_login          NUMBER;
Line: 380

    x_last_update_date := SYSDATE;
Line: 382

      x_last_updated_by := 1;
Line: 383

      x_last_update_login := 0;
Line: 385

      x_last_updated_by := fnd_global.user_id;
Line: 386

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

      x_last_update_login := fnd_global.login_id;
Line: 390

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

      fnd_message.set_token ('ROUTINE', 'IGS_UC_APP_ADDRESES_PKG.INSERT_ROW');
Line: 401

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_app_no                            => x_app_no,
      x_address_area                      => x_address_area,
      x_address1                          => x_address1,
      x_address2                          => x_address2,
      x_address3                          => x_address3,
      x_address4                          => x_address4,
      x_post_code                         => x_post_code,
      x_mail_sort                         => x_mail_sort,
      x_telephone                         => x_telephone,
      x_fax                               => x_fax,
      x_email                             => x_email,
      x_home_address1                     => x_home_address1,
      x_home_address2                     => x_home_address2,
      x_home_address3                     => x_home_address3,
      x_home_address4                     => x_home_address4,
      x_home_postcode                     => x_home_postcode,
      x_home_phone                        => x_home_phone,
      x_home_fax                          => x_home_fax,
      x_home_email                        => x_home_email,
      x_sent_to_oss_flag                  => x_sent_to_oss_flag,
      x_ad_batch_id                       => x_ad_batch_id,
      x_ad_interface_id                   => x_ad_interface_id,
      x_mobile                            => x_mobile,
      x_country_code                      => x_country_code,
      x_home_country_code                 => x_home_country_code,
      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: 435

    INSERT INTO igs_uc_app_addreses (
      app_no,
      address_area,
      address1,
      address2,
      address3,
      address4,
      post_code,
      mail_sort,
      telephone,
      fax,
      email,
      home_address1,
      home_address2,
      home_address3,
      home_address4,
      home_postcode,
      home_phone,
      home_fax,
      home_email,
      sent_to_oss_flag,
      ad_batch_id,
      ad_interface_id,
      mobile,
      country_code,
      home_country_code,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.app_no,
      new_references.address_area,
      new_references.address1,
      new_references.address2,
      new_references.address3,
      new_references.address4,
      new_references.post_code,
      new_references.mail_sort,
      new_references.telephone,
      new_references.fax,
      new_references.email,
      new_references.home_address1,
      new_references.home_address2,
      new_references.home_address3,
      new_references.home_address4,
      new_references.home_postcode,
      new_references.home_phone,
      new_references.home_fax,
      new_references.home_email,
      new_references.sent_to_oss_flag,
      new_references.ad_batch_id,
      new_references.ad_interface_id,
      new_references.mobile,
      new_references.country_code,
      new_references.home_country_code,
      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: 499

  END insert_row;
Line: 540

      SELECT
        app_no,
        address_area,
        address1,
        address2,
        address3,
        address4,
        post_code,
        mail_sort,
        telephone,
        fax,
        email,
        home_address1,
        home_address2,
        home_address3,
        home_address4,
        home_postcode,
        home_phone,
        home_fax,
        home_email,
        sent_to_oss_flag,
        ad_batch_id,
        ad_interface_id,
        mobile,
        country_code,
        home_country_code
      FROM  igs_uc_app_addreses
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 577

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_app_no                            IN     NUMBER,
    x_address_area                      IN     VARCHAR2,
    x_address1                          IN     VARCHAR2,
    x_address2                          IN     VARCHAR2,
    x_address3                          IN     VARCHAR2,
    x_address4                          IN     VARCHAR2,
    x_post_code                         IN     VARCHAR2,
    x_mail_sort                         IN     VARCHAR2,
    x_telephone                         IN     VARCHAR2,
    x_fax                               IN     VARCHAR2,
    x_email                             IN     VARCHAR2,
    x_home_address1                     IN     VARCHAR2,
    x_home_address2                     IN     VARCHAR2,
    x_home_address3                     IN     VARCHAR2,
    x_home_address4                     IN     VARCHAR2,
    x_home_postcode                     IN     VARCHAR2,
    x_home_phone                        IN     VARCHAR2,
    x_home_fax                          IN     VARCHAR2,
    x_home_email                        IN     VARCHAR2,
    x_sent_to_oss_flag                  IN     VARCHAR2,
    x_ad_batch_id                       IN     NUMBER,
    x_ad_interface_id                   IN     NUMBER,
    x_mobile                            IN     VARCHAR2,
    x_country_code                      IN     VARCHAR2,
    x_home_country_code                 IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 14-JUL-2003
  ||  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: 663

    x_last_updated_by            NUMBER;
Line: 664

    x_last_update_login          NUMBER;
Line: 668

    x_last_update_date := SYSDATE;
Line: 670

      x_last_updated_by := 1;
Line: 671

      x_last_update_login := 0;
Line: 673

      x_last_updated_by := fnd_global.user_id;
Line: 674

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

      x_last_update_login := fnd_global.login_id;
Line: 678

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

      fnd_message.set_token ('ROUTINE', 'IGS_UC_APP_ADDRESES_PKG.UPDATE_ROW');
Line: 689

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_app_no                            => x_app_no,
      x_address_area                      => x_address_area,
      x_address1                          => x_address1,
      x_address2                          => x_address2,
      x_address3                          => x_address3,
      x_address4                          => x_address4,
      x_post_code                         => x_post_code,
      x_mail_sort                         => x_mail_sort,
      x_telephone                         => x_telephone,
      x_fax                               => x_fax,
      x_email                             => x_email,
      x_home_address1                     => x_home_address1,
      x_home_address2                     => x_home_address2,
      x_home_address3                     => x_home_address3,
      x_home_address4                     => x_home_address4,
      x_home_postcode                     => x_home_postcode,
      x_home_phone                        => x_home_phone,
      x_home_fax                          => x_home_fax,
      x_home_email                        => x_home_email,
      x_sent_to_oss_flag                  => x_sent_to_oss_flag,
      x_ad_batch_id                       => x_ad_batch_id,
      x_ad_interface_id                   => x_ad_interface_id,
      x_mobile                            => x_mobile,
      x_country_code                      => x_country_code,
      x_home_country_code                 => x_home_country_code,
      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: 723

    UPDATE igs_uc_app_addreses
      SET
        app_no                            = new_references.app_no,
        address_area                      = new_references.address_area,
        address1                          = new_references.address1,
        address2                          = new_references.address2,
        address3                          = new_references.address3,
        address4                          = new_references.address4,
        post_code                         = new_references.post_code,
        mail_sort                         = new_references.mail_sort,
        telephone                         = new_references.telephone,
        fax                               = new_references.fax,
        email                             = new_references.email,
        home_address1                     = new_references.home_address1,
        home_address2                     = new_references.home_address2,
        home_address3                     = new_references.home_address3,
        home_address4                     = new_references.home_address4,
        home_postcode                     = new_references.home_postcode,
        home_phone                        = new_references.home_phone,
        home_fax                          = new_references.home_fax,
        home_email                        = new_references.home_email,
        sent_to_oss_flag                  = new_references.sent_to_oss_flag,
        ad_batch_id                       = new_references.ad_batch_id,
        ad_interface_id                   = new_references.ad_interface_id,
        mobile                            = new_references.mobile,
        country_code                      = new_references.country_code,
        home_country_code                 = new_references.home_country_code,
        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: 759

  END update_row;
Line: 794

  ||  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_app_addreses
      WHERE    app_no = x_app_no;
Line: 812

      insert_row (
        x_rowid,
        x_app_no,
        x_address_area,
        x_address1,
        x_address2,
        x_address3,
        x_address4,
        x_post_code,
        x_mail_sort,
        x_telephone,
        x_fax,
        x_email,
        x_home_address1,
        x_home_address2,
        x_home_address3,
        x_home_address4,
        x_home_postcode,
        x_home_phone,
        x_home_fax,
        x_home_email,
        x_sent_to_oss_flag,
        x_ad_batch_id,
        x_ad_interface_id,
        x_mobile,
        x_country_code,
        x_home_country_code,
        x_mode
      );
Line: 845

    update_row (
      x_rowid,
      x_app_no,
      x_address_area,
      x_address1,
      x_address2,
      x_address3,
      x_address4,
      x_post_code,
      x_mail_sort,
      x_telephone,
      x_fax,
      x_email,
      x_home_address1,
      x_home_address2,
      x_home_address3,
      x_home_address4,
      x_home_postcode,
      x_home_phone,
      x_home_fax,
      x_home_email,
      x_sent_to_oss_flag,
      x_ad_batch_id,
      x_ad_interface_id,
      x_mobile,
      x_country_code,
      x_home_country_code,
      x_mode
    );
Line: 878

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 14-JUL-2003
  ||  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: 897

    DELETE FROM igs_uc_app_addreses
    WHERE rowid = x_rowid;
Line: 904

  END delete_row;