DBA Data[Home] [Help]

APPS.IGS_AS_SUA_SES_ATTS_PKG SQL Statements

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

Line: 18

    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By :
  ||  Created On : 15-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_sua_ses_atts
      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: 91

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

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

      SELECT   rowid
      FROM     igs_as_sua_ses_atts
      WHERE    person_id = x_person_id
      AND      course_cd = x_course_cd
      AND      uoo_id = x_uoo_id
      AND      session_name = x_session_name
      FOR UPDATE NOWAIT;
Line: 159

    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By :
  ||  Created On : 15-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_person_id,
      x_course_cd,
      x_uoo_id,
      x_session_name,
      x_attendance_flag,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 190

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

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_person_id                         IN     NUMBER,
    x_course_cd                         IN     VARCHAR2,
    x_uoo_id                            IN     NUMBER,
    x_session_name                      IN     VARCHAR2,
    x_attendance_flag                   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 :
  ||  Created On : 15-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: 247

    x_last_updated_by            NUMBER;
Line: 248

    x_last_update_login          NUMBER;
Line: 253

    x_last_update_date := SYSDATE;
Line: 255

      x_last_updated_by := 1;
Line: 256

      x_last_update_login := 0;
Line: 258

      x_last_updated_by := fnd_global.user_id;
Line: 259

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

      x_last_update_login := fnd_global.login_id;
Line: 263

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

      fnd_message.set_token ('ROUTINE', 'IGS_AS_SUA_SES_ATTS_PKG.INSERT_ROW');
Line: 274

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_person_id                         => x_person_id,
      x_course_cd                         => x_course_cd,
      x_uoo_id                            => x_uoo_id,
      x_session_name                      => x_session_name,
      x_attendance_flag                   => x_attendance_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: 291

 INSERT INTO igs_as_sua_ses_atts (
      person_id,
      course_cd,
      uoo_id,
      session_name,
      attendance_flag,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.person_id,
      new_references.course_cd,
      new_references.uoo_id,
      new_references.session_name,
      new_references.attendance_flag,
      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: 358

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

 END insert_row;
Line: 390

      SELECT
        attendance_flag
      FROM  igs_as_sua_ses_atts
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 404

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_person_id                         IN     NUMBER,
    x_course_cd                         IN     VARCHAR2,
    x_uoo_id                            IN     NUMBER,
    x_session_name                      IN     VARCHAR2,
    x_attendance_flag                   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 :
  ||  Created On : 15-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: 483

    x_last_updated_by            NUMBER;
Line: 484

    x_last_update_login          NUMBER;
Line: 489

    x_last_update_date := SYSDATE;
Line: 491

      x_last_updated_by := 1;
Line: 492

      x_last_update_login := 0;
Line: 494

      x_last_updated_by := fnd_global.user_id;
Line: 495

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

      x_last_update_login := fnd_global.login_id;
Line: 499

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

      fnd_message.set_token ('ROUTINE', 'IGS_AS_SUA_SES_ATTS_PKG.UPDATE_ROW');
Line: 510

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_person_id                         => x_person_id,
      x_course_cd                         => x_course_cd,
      x_uoo_id                            => x_uoo_id,
      x_session_name                      => x_session_name,
      x_attendance_flag                   => x_attendance_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: 527

 UPDATE igs_as_sua_ses_atts
      SET
        attendance_flag                   = new_references.attendance_flag,
        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: 583

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

 END update_row;
Line: 610

  ||  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_sua_ses_atts
      WHERE    person_id                         = x_person_id
      AND      course_cd                         = x_course_cd
      AND      uoo_id                            = x_uoo_id
      AND      session_name                      = x_session_name;
Line: 632

      insert_row (
        x_rowid,
        x_person_id,
        x_course_cd,
        x_uoo_id,
        x_session_name,
        x_attendance_flag,
        x_mode ,
        x_return_status,
        x_msg_data,
        x_msg_count
      );
Line: 648

    update_row (
      x_rowid,
      x_person_id,
      x_course_cd,
      x_uoo_id,
      x_session_name,
      x_attendance_flag,
      x_mode ,
        x_return_status,
        x_msg_data,
        x_msg_count
    );
Line: 688

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

  PROCEDURE delete_row (
    x_rowid 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 :
  ||  Created On : 15-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)
  */
  BEGIN

  FND_MSG_PUB.initialize;
Line: 720

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

 DELETE FROM igs_as_sua_ses_atts
    WHERE rowid = x_rowid;
Line: 768

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

  END delete_row;
Line: 786

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

  ||  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_sua_ses_atts
     WHERE person_id = x_person_id
     AND   course_cd = x_course_cd
     AND   uoo_id    = x_uoo_id;