DBA Data[Home] [Help]

APPS.IGF_AP_PR_PRG_TYPE_PKG SQL Statements

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

Line: 17

    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : mesriniv
  ||  Created On : 09-OCT-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     igf_ap_pr_prg_type
      WHERE    rowid = x_rowid;
Line: 44

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 68

    new_references.last_updated_by                   := x_last_updated_by;
Line: 69

    new_references.last_update_login                 := x_last_update_login;
Line: 95

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

      SELECT   rowid
      FROM     igf_ap_pr_prg_type
      WHERE    ppt_id = x_ppt_id
      FOR UPDATE NOWAIT;
Line: 171

      SELECT   rowid
      FROM     igf_ap_pr_prg_type
      WHERE    igs_pr_cs_schdl_id = x_igs_pr_cs_schdl_id
      AND      cal_type =x_caL_type
      AND      sequence_number=x_sequence_number
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 235

      SELECT   rowid
      FROM     igf_ap_pr_prg_type
      WHERE   ((cal_type = x_cal_type) AND
               (sequence_number = x_sequence_number));
Line: 267

    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : mesriniv
  ||  Created On : 09-OCT-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
  ||  (reverse chronological order - newest change first)
  */
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_ppt_id,
      x_igs_pr_cs_schdl_id,
      x_cal_type,
      x_sequence_number,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 297

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

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

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

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_ppt_id                            IN OUT NOCOPY NUMBER,
    x_igs_pr_cs_schdl_id                IN     NUMBER,
    x_cal_type                          IN     VARCHAR2,
    x_sequence_number                   IN     NUMBER,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : mesriniv
  ||  Created On : 09-OCT-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)
  */

    x_last_update_date           DATE;
Line: 353

    x_last_updated_by            NUMBER;
Line: 354

    x_last_update_login          NUMBER;
Line: 358

    x_last_update_date := SYSDATE;
Line: 360

      x_last_updated_by := 1;
Line: 361

      x_last_update_login := 0;
Line: 363

      x_last_updated_by := fnd_global.user_id;
Line: 364

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

      x_last_update_login := fnd_global.login_id;
Line: 368

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

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_ppt_id                            => x_ppt_id,
      x_igs_pr_cs_schdl_id                => x_igs_pr_cs_schdl_id,
      x_cal_type                          => x_cal_type,
      x_sequence_number                   => x_sequence_number,
      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: 391

    INSERT INTO igf_ap_pr_prg_type (
      ppt_id,
      igs_pr_cs_schdl_id,
      cal_type,
      sequence_number,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      igf_ap_pr_prg_type_s.NEXTVAL,
      new_references.igs_pr_cs_schdl_id,
      new_references.cal_type,
      new_references.sequence_number,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    ) RETURNING ROWID, ppt_id INTO x_rowid, x_ppt_id;
Line: 413

  END insert_row;
Line: 433

      SELECT
        igs_pr_cs_schdl_id,
        cal_type,
        sequence_number
      FROM  igf_ap_pr_prg_type
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 448

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_ppt_id                            IN     NUMBER,
    x_igs_pr_cs_schdl_id                IN     NUMBER,
    x_cal_type                          IN     VARCHAR2,
    x_sequence_number                   IN     NUMBER,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : mesriniv
  ||  Created On : 09-OCT-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: 491

    x_last_updated_by            NUMBER;
Line: 492

    x_last_update_login          NUMBER;
Line: 496

    x_last_update_date := SYSDATE;
Line: 498

      x_last_updated_by := 1;
Line: 499

      x_last_update_login := 0;
Line: 501

      x_last_updated_by := fnd_global.user_id;
Line: 502

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

      x_last_update_login := fnd_global.login_id;
Line: 506

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_ppt_id                            => x_ppt_id,
      x_igs_pr_cs_schdl_id                => x_igs_pr_cs_schdl_id,
      x_cal_type                          => x_cal_type,
      x_sequence_number                   => x_sequence_number,
      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: 529

    UPDATE igf_ap_pr_prg_type
      SET
        igs_pr_cs_schdl_id                = new_references.igs_pr_cs_schdl_id,
        cal_type                          = new_references.cal_type,
        sequence_number                   = new_references.sequence_number,
        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: 543

  END update_row;
Line: 557

  ||  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     igf_ap_pr_prg_type
      WHERE    ppt_id                            = x_ppt_id;
Line: 575

      insert_row (
        x_rowid,
        x_ppt_id,
        x_igs_pr_cs_schdl_id,
        x_cal_type,
        x_sequence_number,
        x_mode
      );
Line: 587

    update_row (
      x_rowid,
      x_ppt_id,
      x_igs_pr_cs_schdl_id,
      x_cal_type,
      x_sequence_number,
      x_mode
    );
Line: 599

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : mesriniv
  ||  Created On : 09-OCT-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: 618

    DELETE FROM igf_ap_pr_prg_type
    WHERE rowid = x_rowid;
Line: 625

  END delete_row;