DBA Data[Home] [Help]

APPS.IGS_EN_SVS_AUTH_PKG SQL Statements

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

Line: 21

    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By :
  ||  Created On : 08-MAR-2006
  ||  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_en_svs_auth
      WHERE    rowid = x_rowid;
Line: 41

    SELECT SEVIS_AUTHORIZATION_NO
    FROM igs_en_svs_auth esa1
    WHERE person_id = cp_person_id
    AND SEVIS_AUTHORIZATION_NO = (SELECT  max(SEVIS_AUTHORIZATION_NO)
                                  FROM igs_en_svs_auth esa2
                                  WHERE esa2.person_id = esa1.person_id)
    FOR UPDATE;
Line: 60

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

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

    IF p_action = 'INSERT' THEN
      OPEN c_max_auth_no(x_person_id);
Line: 88

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

    new_references.last_update_date                  := x_last_update_date;
Line: 97

    new_references.last_updated_by                   := x_last_updated_by;
Line: 98

    new_references.last_update_login                 := x_last_update_login;
Line: 145

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

      SELECT   rowid
      FROM     igs_en_svs_auth
      WHERE    sevis_auth_id = x_sevis_auth_id
      FOR UPDATE NOWAIT;
Line: 221

      SELECT   rowid
      FROM     igs_en_svs_auth
      WHERE    person_id = x_person_id
      AND      sevis_authorization_code = x_sevis_authorization_code
      AND      start_dt = x_start_dt
      AND      cancel_flag <> 'Y'
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 250

    SELECT sac.rowid row_id
    FROM IGS_EN_SVS_AUTH_CAL sac
    WHERE sevis_auth_id = x_sevis_auth_id;
Line: 259

      IGS_EN_SVS_AUTH_CAL_PKG.DELETE_ROW(c_auth_cal_rec.row_id);
Line: 279

    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By :
  ||  Created On : 08-MAR-2006
  ||  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)
  */

    l_no_of_months NUMBER;
Line: 311

      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 316

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

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

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

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

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

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

    IF (p_action = 'INSERT' OR p_action = 'UPDATE') THEN
      IF igs_en_sevis.is_auth_rec_duration_exceeds(new_references.person_id,
                                                new_references.start_dt,
                                                new_references.end_dt,
                                                l_no_of_months) THEN
        FND_MESSAGE.Set_name('IGS', 'IGS_EN_AUTH_PERIOD_VAL');
Line: 364

  IF (p_action = 'UPDATE') AND new_references.cancel_flag = 'Y'
  AND new_references.cancel_flag <> old_references.cancel_flag THEN
    beforeudpate1(new_references.sevis_auth_id);
Line: 372

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_sevis_authorization_code          IN     VARCHAR2,
    x_start_dt                          IN     DATE,
    x_end_dt                            IN     DATE,
    x_comments                          IN     VARCHAR2,
    x_sevis_auth_id                     IN OUT NOCOPY NUMBER,
    x_sevis_authorization_no            IN OUT NOCOPY NUMBER,
    x_person_id                         IN     NUMBER,
    x_cancel_flag                       IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By :
  ||  Created On : 08-MAR-2006
  ||  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: 395

    x_last_updated_by            NUMBER;
Line: 396

    x_last_update_login          NUMBER;
Line: 400

    x_program_update_date        DATE;
Line: 404

    x_last_update_date := SYSDATE;
Line: 406

      x_last_updated_by := 1;
Line: 407

      x_last_update_login := 0;
Line: 409

      x_last_updated_by := fnd_global.user_id;
Line: 410

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

      x_last_update_login := fnd_global.login_id;
Line: 414

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

        x_program_update_date    := NULL;
Line: 427

        x_program_update_date    := SYSDATE;
Line: 431

      fnd_message.set_token ('ROUTINE', 'IGS_EN_SVS_AUTH_PKG.INSERT_ROW');
Line: 439

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_sevis_authorization_code            => x_sevis_authorization_code,
      x_start_dt                          => x_start_dt,
      x_end_dt                            => x_end_dt,
      x_comments                          => x_comments,
      x_sevis_auth_id                     => x_sevis_auth_id,
      x_sevis_authorization_no            => x_sevis_authorization_no,
      x_person_id                         => x_person_id,
      x_cancel_flag                 => x_cancel_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: 456

    INSERT INTO igs_en_svs_auth (
      sevis_authorization_code,
      start_dt,
      end_dt,
      comments,
      sevis_auth_id,
      sevis_authorization_no,
      person_id,
      cancel_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 (
      new_references.sevis_authorization_code,
      new_references.start_dt,
      new_references.end_dt,
      new_references.comments,
      igs_en_svs_auth_s.NEXTVAL,
      new_references.sevis_authorization_no,
      new_references.person_id,
      new_references.cancel_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 ROWID, sevis_auth_id,sevis_authorization_no
           INTO x_rowid, x_sevis_auth_id, x_sevis_authorization_no;
Line: 495

  END insert_row;
Line: 519

      SELECT
        sevis_authorization_code,
        start_dt,
        end_dt,
        comments,
        sevis_authorization_no,
        person_id,
        cancel_flag
      FROM  igs_en_svs_auth
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 538

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_sevis_authorization_code          IN     VARCHAR2,
    x_start_dt                          IN     DATE,
    x_end_dt                            IN     DATE,
    x_comments                          IN     VARCHAR2,
    x_sevis_auth_id                     IN     NUMBER,
    x_sevis_authorization_no            IN     NUMBER,
    x_person_id                         IN     NUMBER,
    x_cancel_flag                       IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By :
  ||  Created On : 08-MAR-2006
  ||  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: 589

    x_last_updated_by            NUMBER;
Line: 590

    x_last_update_login          NUMBER;
Line: 594

    x_program_update_date        DATE;
Line: 598

    x_last_update_date := SYSDATE;
Line: 600

      x_last_updated_by := 1;
Line: 601

      x_last_update_login := 0;
Line: 603

      x_last_updated_by := fnd_global.user_id;
Line: 604

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

      x_last_update_login := fnd_global.login_id;
Line: 608

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

      fnd_message.set_token ('ROUTINE', 'IGS_EN_SVS_AUTH_PKG.UPDATE_ROW');
Line: 619

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_sevis_authorization_code            => x_sevis_authorization_code,
      x_start_dt                          => x_start_dt,
      x_end_dt                            => x_end_dt,
      x_comments                          => x_comments,
      x_sevis_auth_id                     => x_sevis_auth_id,
      x_sevis_authorization_no            => x_sevis_authorization_no,
      x_person_id                         => x_person_id,
      x_cancel_flag                 => x_cancel_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: 644

        x_program_update_date := old_references.program_update_date;
Line: 646

        x_program_update_date := SYSDATE;
Line: 650

    UPDATE igs_en_svs_auth
      SET
        sevis_authorization_code            = new_references.sevis_authorization_code,
        start_dt                          = new_references.start_dt,
        end_dt                            = new_references.end_dt,
        comments                          = new_references.comments,
        sevis_authorization_no            = new_references.sevis_authorization_no,
        person_id                         = new_references.person_id,
        cancel_flag                 = new_references.cancel_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: 672

  END update_row;
Line: 690

  ||  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_en_svs_auth
      WHERE    sevis_auth_id                     = x_sevis_auth_id;
Line: 708

      insert_row (
        x_rowid,
        x_sevis_authorization_code,
        x_start_dt,
        x_end_dt,
        x_comments,
        x_sevis_auth_id,
        x_sevis_authorization_no,
        x_person_id,
        x_cancel_flag,
        x_mode
      );
Line: 724

    update_row (
      x_rowid,
      x_sevis_authorization_code,
      x_start_dt,
      x_end_dt,
      x_comments,
      x_sevis_auth_id,
      x_sevis_authorization_no,
      x_person_id,
      x_cancel_flag,
      x_mode
    );
Line: 740

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By :
  ||  Created On : 08-MAR-2006
  ||  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: 759

    DELETE FROM igs_en_svs_auth
    WHERE rowid = x_rowid;
Line: 766

  END delete_row;