DBA Data[Home] [Help]

APPS.IGS_AS_USEC_SESSNS_PKG SQL Statements

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

Line: 20

    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-OCT-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_as_usec_sessns
      WHERE    rowid = x_rowid;
Line: 49

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 76

    new_references.last_updated_by                   := x_last_updated_by;
Line: 77

    new_references.last_update_login                 := x_last_update_login;
Line: 96

      SELECT   rowid
      FROM     igs_as_usec_sessns
      WHERE    session_name = x_session_name
      AND      uoo_id = x_uoo_id
      FOR UPDATE NOWAIT;
Line: 134

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

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

    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-OCT-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_session_name,
      x_session_description,
      x_uoo_id,
      x_unit_section_occurrence_id,
      x_session_start_date_time,
      x_session_end_date_time,
      x_session_location_desc,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 197

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

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

    ELSIF (p_action='UPDATE') THEN
        check_parent_existance;
Line: 227

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_session_name                      IN     VARCHAR2,
    x_session_description               IN     VARCHAR2,
    x_uoo_id                            IN     NUMBER,
    x_unit_section_occurrence_id        IN     NUMBER,
    x_session_start_date_time           IN     DATE,
    x_session_end_date_time             IN     DATE,
    x_session_location_desc             IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 ,
    X_RETURN_STATUS                     OUT NOCOPY    VARCHAR2,
    X_MSG_DATA                          OUT NOCOPY    VARCHAR2,
    X_MSG_COUNT                         OUT NOCOPY    NUMBER

  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 14-OCT-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: 253

    x_last_updated_by            NUMBER;
Line: 254

    x_last_update_login          NUMBER;
Line: 259

    x_last_update_date := SYSDATE;
Line: 261

      x_last_updated_by := 1;
Line: 262

      x_last_update_login := 0;
Line: 264

      x_last_updated_by := fnd_global.user_id;
Line: 265

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

      x_last_update_login := fnd_global.login_id;
Line: 269

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

      fnd_message.set_token ('ROUTINE', 'IGS_AS_USEC_SESSNS_PKG.INSERT_ROW');
Line: 280

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_session_name                      => x_session_name,
      x_session_description               => x_session_description,
      x_uoo_id                            => x_uoo_id,
      x_unit_section_occurrence_id        => x_unit_section_occurrence_id,
      x_session_start_date_time           => x_session_start_date_time,
      x_session_end_date_time             => x_session_end_date_time,
      x_session_location_desc             => x_session_location_desc,
      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: 296

    INSERT INTO igs_as_usec_sessns (
      session_name,
      session_description,
      uoo_id,
      unit_section_occurrence_id,
      session_start_date_time,
      session_end_date_time,
      session_location_desc,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.session_name,
      new_references.session_description,
      new_references.uoo_id,
      new_references.unit_section_occurrence_id,
      new_references.session_start_date_time,
      new_references.session_end_date_time,
      new_references.session_location_desc,
      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: 351

         FND_MESSAGE.SET_TOKEN('NAME','Insert_Row : '||SQLERRM);
Line: 359

  END insert_row;
Line: 385

      SELECT
        session_description,
        unit_section_occurrence_id,
        session_start_date_time,
        session_end_date_time,
        session_location_desc
      FROM  igs_as_usec_sessns
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 404

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_session_name                      IN     VARCHAR2,
    x_session_description               IN     VARCHAR2,
    x_uoo_id                            IN     NUMBER,
    x_unit_section_occurrence_id        IN     NUMBER,
    x_session_start_date_time           IN     DATE,
    x_session_end_date_time             IN     DATE,
    x_session_location_desc             IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 ,
    X_RETURN_STATUS                     OUT NOCOPY    VARCHAR2 ,
    X_MSG_DATA                          OUT NOCOPY    VARCHAR2 ,
    X_MSG_COUNT                         OUT NOCOPY    NUMBER
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 14-OCT-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: 488

    x_last_updated_by            NUMBER;
Line: 489

    x_last_update_login          NUMBER;
Line: 494

    x_last_update_date := SYSDATE;
Line: 496

      x_last_updated_by := 1;
Line: 497

      x_last_update_login := 0;
Line: 499

      x_last_updated_by := fnd_global.user_id;
Line: 500

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

      x_last_update_login := fnd_global.login_id;
Line: 504

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

      fnd_message.set_token ('ROUTINE', 'IGS_AS_USEC_SESSNS_PKG.UPDATE_ROW');
Line: 515

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_session_name                      => x_session_name,
      x_session_description               => x_session_description,
      x_uoo_id                            => x_uoo_id,
      x_unit_section_occurrence_id        => x_unit_section_occurrence_id,
      x_session_start_date_time           => x_session_start_date_time,
      x_session_end_date_time             => x_session_end_date_time,
      x_session_location_desc             => x_session_location_desc,
      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: 531

    UPDATE igs_as_usec_sessns
      SET
        session_description               = new_references.session_description,
        unit_section_occurrence_id        = new_references.unit_section_occurrence_id,
        session_start_date_time           = new_references.session_start_date_time,
        session_end_date_time             = new_references.session_end_date_time,
        session_location_desc             = new_references.session_location_desc,
        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: 574

         FND_MESSAGE.SET_TOKEN('NAME','Update_Row : '||SQLERRM);
Line: 582

  END update_row;
Line: 602

  ||  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_as_usec_sessns
      WHERE    session_name                      = x_session_name
      AND      uoo_id                            = x_uoo_id;
Line: 626

      insert_row (
        x_rowid,
        x_session_name,
        x_session_description,
        x_uoo_id,
        x_unit_section_occurrence_id,
        x_session_start_date_time,
        x_session_end_date_time,
        x_session_location_desc,
        x_mode ,
        x_return_status,
        x_msg_data,
        x_msg_count
      );
Line: 644

    update_row (
      x_rowid,
      x_session_name,
      x_session_description,
      x_uoo_id,
      x_unit_section_occurrence_id,
      x_session_start_date_time,
      x_session_end_date_time,
      x_session_location_desc,
      x_mode ,
      x_return_status,
      x_msg_data,
      x_msg_count
    );
Line: 697

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2 ,
    X_RETURN_STATUS                     OUT NOCOPY    VARCHAR2 ,
    X_MSG_DATA                          OUT NOCOPY    VARCHAR2 ,
    X_MSG_COUNT                         OUT NOCOPY    NUMBER
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 14-OCT-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)
  */
  CURSOR c_child_rec (
                        p_session_name igs_as_usec_sessns.session_name%TYPE,
                        p_uoo_id        igs_as_usec_sessns.uoo_id%TYPE
                      )
   IS
      SELECT rowid
      FROM igs_as_sua_ses_atts
      WHERE session_name = p_session_name
      AND uoo_id = p_uoo_id;
Line: 726

      p_action => 'DELETE',
      x_rowid => x_rowid
    );
Line: 737

    igs_as_sua_ses_atts_pkg.delete_row
                                        (
                                                x_rowid          =>  c_child_rec_rec.rowid,
                                                X_RETURN_STATUS  =>  X_RETURN_STATUS ,
                                                X_MSG_DATA       =>  X_MSG_DATA      ,
                                                X_MSG_COUNT      =>  X_MSG_COUNT
                                        );
Line: 750

    DELETE FROM igs_as_usec_sessns
    WHERE rowid = x_rowid;
Line: 779

         FND_MESSAGE.SET_TOKEN('NAME','delete_Row : '||SQLERRM);
Line: 786

  END delete_row;
Line: 797

  ||  Purpose : Called by the parent table upon delete
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */
  CURSOR cur_rowid  IS
     SELECT rowid
     FROM igs_as_usec_sessns
     WHERE unit_section_occurrence_id = x_unit_section_occurrence_id;
Line: 832

  ||  Purpose : Called by the parent table upon delete
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */
  CURSOR cur_rowid  IS
     SELECT rowid
     FROM igs_as_usec_sessns
     WHERE uoo_id = x_uoo_id;