DBA Data[Home] [Help]

APPS.IGS_AD_LOCVENUE_ADDR_PKG SQL Statements

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

Line: 18

    x_last_update_date                  IN     DATE        DEFAULT NULL,
    x_last_updated_by                   IN     NUMBER      DEFAULT NULL,
    x_last_update_login                 IN     NUMBER      DEFAULT NULL
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 29-AUG-2000
  ||  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_AD_LOCVENUE_ADDR
      WHERE    rowid = x_rowid;
Line: 45

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 70

    new_references.last_updated_by                   := x_last_updated_by;
Line: 71

    new_references.last_update_login                 := x_last_update_login;
Line: 121

         SELECT   rowid
         FROM     HZ_LOCATIONS
         WHERE    LOCATION_ID = new_references.LOCATION_ID ;
Line: 144

            Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
Line: 191

      SELECT   rowid
      FROM     igs_ad_locvenue_addr
      WHERE    location_venue_addr_id = x_location_venue_addr_id
      FOR UPDATE NOWAIT;
Line: 226

      SELECT   rowid
      FROM     igs_ad_locvenue_addr
      WHERE   ((location_id = x_location_id));
Line: 258

    x_last_update_date                  IN     DATE        DEFAULT NULL,
    x_last_updated_by                   IN     NUMBER      DEFAULT NULL,
    x_last_update_login                 IN     NUMBER      DEFAULT NULL
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 29-AUG-2000
  ||  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
  ||  pkpatel         3-APR-2002      Bug NO: 2329883
  ||                                  Added the Check while update that whenever more than one record comes with
  ||                                  identfying_address_flag = 'Y', the previous records should be updated with
  ||                                  identfying_address_flag = 'N'
  ||  (reverse chronological order - newest change first)
  */

     CURSOR c_address(cp_location_venue_cd  igs_ad_locvenue_addr.location_venue_cd%TYPE,
                      cp_source_type        igs_ad_locvenue_addr.source_type%TYPE) IS
     SELECT rowid
     FROM   igs_ad_locvenue_addr
     WHERE  location_venue_cd = cp_location_venue_cd
     AND    source_type       = cp_source_type
     AND    identifying_address_flag = 'Y';
Line: 299

      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 304

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

    ELSIF (p_action = 'UPDATE') THEN
      -- Call all the procedures related to Before Update.
      OPEN   c_address(x_location_venue_cd, x_source_type);
Line: 322

			      UPDATE   igs_ad_locvenue_addr
				  SET      identifying_address_flag = 'N'
				  WHERE    rowid = l_rowid;
Line: 331

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

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

    ELSIF (p_action = 'VALIDATE_UPDATE') THEN
      check_constraints;
Line: 347

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_location_venue_addr_id            IN OUT NOCOPY NUMBER,
    x_location_id                       IN     NUMBER,
    x_location_venue_cd                 IN     VARCHAR2,
    x_source_type                       IN     VARCHAR2,
    x_identifying_address_flag          IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 29-AUG-2000
  ||  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)
  */
    CURSOR c IS
      SELECT   rowid
      FROM     igs_ad_locvenue_addr
      WHERE    location_venue_addr_id            = x_location_venue_addr_id;
Line: 377

    x_last_update_date           DATE;
Line: 378

    x_last_updated_by            NUMBER;
Line: 379

    x_last_update_login          NUMBER;
Line: 383

    x_program_update_date        DATE;
Line: 387

    x_last_update_date := SYSDATE;
Line: 389

      x_last_updated_by := 1;
Line: 390

      x_last_update_login := 0;
Line: 392

      x_last_updated_by := fnd_global.user_id;
Line: 393

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

      x_last_update_login := fnd_global.login_id;
Line: 397

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

        x_program_update_date    := NULL;
Line: 410

        x_program_update_date    := SYSDATE;
Line: 420

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_location_venue_addr_id            => x_location_venue_addr_id,
      x_location_id                       => x_location_id,
      x_location_venue_cd                 => x_location_venue_cd,
      x_source_type                       => x_source_type,
      x_identifying_address_flag          => x_identifying_address_flag,
      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: 434

    INSERT INTO igs_ad_locvenue_addr (
      location_venue_addr_id,
      location_id,
      location_venue_cd,
      source_type,
      identifying_address_flag,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      request_id,
      program_id,
      program_application_id,
      program_update_date
    ) VALUES (
      IGS_AD_LOCVENUE_ADDR_S.NEXTVAL,
      new_references.location_id,
      new_references.location_venue_cd,
      new_references.source_type,
      new_references.identifying_address_flag,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login ,
      x_request_id,
      x_program_id,
      x_program_application_id,
      x_program_update_date
    )RETURNING LOCATION_VENUE_ADDR_ID INTO X_LOCATION_VENUE_ADDR_ID;
Line: 474

  END insert_row;
Line: 495

      SELECT
        location_id,
        location_venue_cd,
        source_type,
        identifying_address_flag
      FROM  igs_ad_locvenue_addr
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 511

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_location_venue_addr_id            IN     NUMBER,
    x_location_id                       IN     NUMBER,
    x_location_venue_cd                 IN     VARCHAR2,
    x_source_type                       IN     VARCHAR2,
    x_identifying_address_flag          IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 29-AUG-2000
  ||  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: 556

    x_last_updated_by            NUMBER;
Line: 557

    x_last_update_login          NUMBER;
Line: 561

    x_program_update_date        DATE;
Line: 565

    x_last_update_date := SYSDATE;
Line: 567

      x_last_updated_by := 1;
Line: 568

      x_last_update_login := 0;
Line: 570

      x_last_updated_by := fnd_global.user_id;
Line: 571

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

      x_last_update_login := fnd_global.login_id;
Line: 575

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_location_venue_addr_id            => x_location_venue_addr_id,
      x_location_id                       => x_location_id,
      x_location_venue_cd                 => x_location_venue_cd,
      x_source_type                       => x_source_type,
      x_identifying_address_flag          => x_identifying_address_flag,
      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: 607

        x_program_update_date := old_references.program_update_date;
Line: 609

        x_program_update_date := SYSDATE;
Line: 613

    UPDATE igs_ad_locvenue_addr
      SET
        location_id                       = new_references.location_id,
        location_venue_cd                 = new_references.location_venue_cd,
        source_type                       = new_references.source_type,
        identifying_address_flag          = new_references.identifying_address_flag,
        last_update_date                  = x_last_update_date,
        last_updated_by                   = x_last_updated_by,
        last_update_login                 = x_last_update_login ,
        request_id                        = x_request_id,
        program_id                        = x_program_id,
        program_application_id            = x_program_application_id,
        program_update_date               = x_program_update_date
      WHERE rowid = x_rowid;
Line: 632

  END update_row;
Line: 647

  ||  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_ad_locvenue_addr
      WHERE    location_venue_addr_id            = x_location_venue_addr_id;
Line: 665

      insert_row (
        x_rowid,
        x_location_venue_addr_id,
        x_location_id,
        x_location_venue_cd,
        x_source_type,
        x_identifying_address_flag,
        x_mode
      );
Line: 678

    update_row (
      x_rowid,
      x_location_venue_addr_id,
      x_location_id,
      x_location_venue_cd,
      x_source_type,
      x_identifying_address_flag,
      x_mode
    );
Line: 691

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 29-AUG-2000
  ||  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: 710

    DELETE FROM igs_ad_locvenue_addr
    WHERE rowid = x_rowid;
Line: 717

  END delete_row;