DBA Data[Home] [Help]

APPS.IGS_PS_FAC_ASG_TASK_PKG SQL Statements

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

Line: 20

    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 : kkillams
  ||  Created On : 17-JAN-2002
  ||  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_ps_fac_asg_task
      WHERE    rowid = x_rowid;
Line: 47

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 74

    new_references.last_updated_by                   := x_last_updated_by;
Line: 75

    new_references.last_update_login                 := x_last_update_login;
Line: 98

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

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

      SELECT   rowid
      FROM     igs_ps_fac_asg_task
      WHERE    fac_wl_id = x_fac_wl_id
      AND      faculty_task_type = x_faculty_task_type
      FOR UPDATE NOWAIT;
Line: 167

      SELECT   rowid
      FROM     igs_ps_fac_asg_task
      WHERE   ((fac_wl_id = x_fac_wl_id));
Line: 188

  PROCEDURE before_insert_update(p_inserting IN BOOLEAN,
                                 p_updating  IN BOOLEAN) AS
  /*
  ||  Created By : sarakshi
  ||  Created On : 03-Jun-2003
  ||  Purpose :To prevent inserting/updating a record for which the faculty task type is closed
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */

  CURSOR c_closed(cp_c_fac_task_type igs_ps_fac_task_typ.faculty_task_type%TYPE) IS
  SELECT 'X'
  FROM   IGS_PS_FAC_TASK_TYP
  WHERE  FACULTY_TASK_TYPE=cp_c_fac_task_type
  AND    CLOSED_IND = 'Y';
Line: 208

    IF p_inserting THEN
      OPEN c_closed(new_references.faculty_task_type);
Line: 232

  END before_insert_update;
Line: 246

    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 : kkillams
  ||  Created On : 17-JAN-2002
  ||  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
  || smvk         13-Mar-2003         Bug # 2476026. Nullified the value of l_rowid.
  ||  (reverse chronological order - newest change first)
  */
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_fac_wl_id,
      x_faculty_task_type,
      x_confirmed_ind,
      x_num_rollover_period,
      x_rollover_flag,
      x_dept_budget_cd,
      x_default_wl,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 280

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

      before_insert_update(TRUE,FALSE);
Line: 293

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

      before_insert_update(FALSE,TRUE);
Line: 297

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

      before_insert_update(TRUE,FALSE);
Line: 316

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_fac_wl_id                         IN     NUMBER,
    x_faculty_task_type                 IN     VARCHAR2,
    x_confirmed_ind                     IN     VARCHAR2,
    x_num_rollover_period               IN     NUMBER,
    x_rollover_flag                     IN     VARCHAR2,
    x_dept_budget_cd                    IN     VARCHAR2,
    x_default_wl                        IN     NUMBER,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : kkillams
  ||  Created On : 17-JAN-2002
  ||  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_ps_fac_asg_task
      WHERE    fac_wl_id                         = x_fac_wl_id
      AND      faculty_task_type                 = x_faculty_task_type;
Line: 342

    x_last_update_date           DATE;
Line: 343

    x_last_updated_by            NUMBER;
Line: 344

    x_last_update_login          NUMBER;
Line: 348

    x_last_update_date := SYSDATE;
Line: 350

      x_last_updated_by := 1;
Line: 351

      x_last_update_login := 0;
Line: 353

      x_last_updated_by := fnd_global.user_id;
Line: 354

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

      x_last_update_login := fnd_global.login_id;
Line: 358

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

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_fac_wl_id                         => x_fac_wl_id,
      x_faculty_task_type                 => x_faculty_task_type,
      x_confirmed_ind                     => x_confirmed_ind,
      x_num_rollover_period               => x_num_rollover_period,
      x_rollover_flag                     => x_rollover_flag,
      x_dept_budget_cd                    => x_dept_budget_cd,
      x_default_wl                        => x_default_wl,
      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: 384

    INSERT INTO igs_ps_fac_asg_task (
      fac_wl_id,
      faculty_task_type,
      confirmed_ind,
      num_rollover_period,
      rollover_flag,
      dept_budget_cd,
      default_wl,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.fac_wl_id,
      new_references.faculty_task_type,
      new_references.confirmed_ind,
      new_references.num_rollover_period,
      new_references.rollover_flag,
      new_references.dept_budget_cd,
      new_references.default_wl,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 420

  END insert_row;
Line: 443

      SELECT
        confirmed_ind,
        num_rollover_period,
        rollover_flag,
        dept_budget_cd,
        default_wl
      FROM  igs_ps_fac_asg_task
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 460

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_fac_wl_id                         IN     NUMBER,
    x_faculty_task_type                 IN     VARCHAR2,
    x_confirmed_ind                     IN     VARCHAR2,
    x_num_rollover_period               IN     NUMBER,
    x_rollover_flag                     IN     VARCHAR2,
    x_dept_budget_cd                    IN     VARCHAR2,
    x_default_wl                        IN     NUMBER,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : kkillams
  ||  Created On : 17-JAN-2002
  ||  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: 508

    x_last_updated_by            NUMBER;
Line: 509

    x_last_update_login          NUMBER;
Line: 513

    x_last_update_date := SYSDATE;
Line: 515

      x_last_updated_by := 1;
Line: 516

      x_last_update_login := 0;
Line: 518

      x_last_updated_by := fnd_global.user_id;
Line: 519

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

      x_last_update_login := fnd_global.login_id;
Line: 523

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_fac_wl_id                         => x_fac_wl_id,
      x_faculty_task_type                 => x_faculty_task_type,
      x_confirmed_ind                     => x_confirmed_ind,
      x_num_rollover_period               => x_num_rollover_period,
      x_rollover_flag                     => x_rollover_flag,
      x_dept_budget_cd                    => x_dept_budget_cd,
      x_default_wl                        => x_default_wl,
      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: 549

    UPDATE igs_ps_fac_asg_task
      SET
        confirmed_ind                     = new_references.confirmed_ind,
        num_rollover_period               = new_references.num_rollover_period,
        rollover_flag                     = new_references.rollover_flag,
        dept_budget_cd                    = new_references.dept_budget_cd,
        default_wl                        = new_references.default_wl,
        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: 565

  END update_row;
Line: 582

  ||  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_ps_fac_asg_task
      WHERE    fac_wl_id                         = x_fac_wl_id
      AND      faculty_task_type                 = x_faculty_task_type;
Line: 601

      insert_row (
        x_rowid,
        x_fac_wl_id,
        x_faculty_task_type,
        x_confirmed_ind,
        x_num_rollover_period,
        x_rollover_flag,
        x_dept_budget_cd,
        x_default_wl,
        x_mode
      );
Line: 616

    update_row (
      x_rowid,
      x_fac_wl_id,
      x_faculty_task_type,
      x_confirmed_ind,
      x_num_rollover_period,
      x_rollover_flag,
      x_dept_budget_cd,
      x_default_wl,
      x_mode
    );
Line: 631

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : kkillams
  ||  Created On : 17-JAN-2002
  ||  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: 650

    DELETE FROM igs_ps_fac_asg_task
    WHERE rowid = x_rowid;
Line: 657

  END delete_row;