DBA Data[Home] [Help]

APPS.IGS_PE_FUND_EXCL_PKG SQL Statements

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

Line: 23

    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : prabhat.patel
  ||  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     igs_pe_fund_excl
      WHERE    rowid = x_rowid;
Line: 50

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 80

    new_references.last_updated_by                   := x_last_updated_by;
Line: 81

    new_references.last_update_login                 := x_last_update_login;
Line: 135

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

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

      SELECT   rowid
      FROM     igs_pe_fund_excl
      WHERE    fund_excl_id = x_fund_excl_id
      FOR UPDATE NOWAIT;
Line: 224

      SELECT   rowid
      FROM     igs_pe_fund_excl
      WHERE    person_id = x_person_id
      AND      encumbrance_type = x_encumbrance_type
      AND      pen_start_dt = x_pen_start_dt
      AND      s_encmb_effect_type = x_s_encmb_effect_type
      AND      pee_start_dt = x_pee_start_dt
      AND      pee_sequence_number = x_pee_sequence_number
      AND      fund_code = x_fund_code
      AND      pfe_start_dt = x_pfe_start_dt
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 266

      SELECT   rowid
      FROM     igs_pe_fund_excl
      WHERE   ((fund_code = x_fund_code));
Line: 306

      SELECT   rowid
      FROM     igs_pe_fund_excl
      WHERE   ((encumbrance_type = x_encumbrance_type) AND
               (pee_sequence_number = x_sequence_number) AND
               (pee_start_dt = x_pee_start_dt) AND
               (pen_start_dt = x_pen_start_dt) AND
               (person_id = x_person_id) AND
               (s_encmb_effect_type = x_s_encmb_effect_type));
Line: 332

  PROCEDURE BeforeRowInsertUpdate(
     p_inserting IN BOOLEAN,
     p_updating IN BOOLEAN,
     p_deleting IN BOOLEAN
    ) AS

	l_message_name  VARCHAR2(30);
Line: 343

                (p_inserting OR (p_updating AND
                (old_references.pfe_start_dt <> new_references.pfe_start_dt)))
                THEN
                IF igs_en_val_pce.enrp_val_encmb_dt (
                                new_references.pfe_start_dt,
                                l_message_name) = FALSE THEN
                       FND_MESSAGE.SET_NAME('IGS', l_message_name);
Line: 357

        IF p_inserting THEN
               IF igs_en_val_pce.enrp_val_encmb_dts (
                                new_references.pee_start_dt,
                                new_references.pfe_start_dt,
                                l_message_name) = FALSE THEN
                      FND_MESSAGE.SET_NAME('IGS', l_message_name);
Line: 371

                (p_inserting OR (p_updating AND
                (NVL(old_references.expiry_dt, IGS_GE_DATE.IGSDATE('1900/01/01'))
                <> new_references.expiry_dt)))
                THEN
				IF igs_en_val_pce.enrp_val_strt_exp_dt (
                                new_references.pfe_start_dt,
                                new_references.expiry_dt,
                                l_message_name) = FALSE THEN
                          FND_MESSAGE.SET_NAME('IGS', l_message_name);
Line: 396

        IF p_inserting THEN
                IF new_references.s_encmb_effect_type NOT IN ('EX_AWD','EX_DISB','EX_SP_AWD','EX_SP_DISB') THEN
                      FND_MESSAGE.SET_NAME('IGS', 'IGS_EN_CANT_CREATE_REC_ENCUMB');
Line: 404

  END BeforeRowInsertUpdate;
Line: 406

  PROCEDURE AfterRowInsertUpdateDelete(
     p_inserting IN BOOLEAN,
     p_updating IN BOOLEAN,
     p_deleting IN BOOLEAN
    ) IS
	 l_check         VARCHAR2(1);
Line: 414

     SELECT 'X'
     FROM  igs_pe_fund_excl
     WHERE person_id = new_references.person_id AND
           encumbrance_type        = new_references.encumbrance_type    AND
           pen_start_dt            = new_references.pen_start_dt        AND
           s_encmb_effect_type     = new_references.s_encmb_effect_type AND
           pee_start_dt            = new_references.pee_start_dt        AND
           fund_code               = new_references.fund_code     AND
		   expiry_dt IS NULL AND
           pfe_start_dt            <>  new_references.pfe_start_dt;
Line: 437

  END AfterRowInsertUpdateDelete;
Line: 454

    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : prabhat.patel
  ||  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_fund_excl_id,
      x_person_id,
      x_encumbrance_type,
      x_pen_start_dt,
      x_s_encmb_effect_type,
      x_pee_start_dt,
      x_pee_sequence_number,
      x_fund_code,
      x_pfe_start_dt,
      x_expiry_dt,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 490

    IF (p_action = 'INSERT') THEN
      -- Call all the procedures related to Before Insert.

	  	  beforerowinsertupdate(
           p_inserting => TRUE,
           p_updating  => FALSE,
           p_deleting  => FALSE);
Line: 508

    ELSIF (p_action = 'UPDATE') THEN
      -- Call all the procedures related to Before Update.
	  	  beforerowinsertupdate(
           p_inserting => FALSE,
           p_updating  => TRUE,
           p_deleting  => FALSE);
Line: 517

    ELSIF (p_action = 'VALIDATE_INSERT') THEN
      -- Call all the procedures related to Before Insert.
	  	  beforerowinsertupdate(
           p_inserting => TRUE,
           p_updating  => FALSE,
           p_deleting  => FALSE);
Line: 533

    ELSIF (p_action = 'VALIDATE_UPDATE') THEN

		  beforerowinsertupdate(
           p_inserting => FALSE,
           p_updating  => TRUE,
           p_deleting  => FALSE);
Line: 552

    IF (p_action = 'INSERT') THEN
      -- Call all the procedures related to After Insert.
      AfterRowInsertUpdateDelete
	  ( p_inserting => TRUE,
	    p_updating  => FALSE,
		p_deleting  => FALSE);
Line: 559

    ELSIF (p_action = 'UPDATE') THEN
      -- Call all the procedures related to After Update.
      AfterRowInsertUpdateDelete
	  ( p_inserting => FALSE,
	    p_updating  => TRUE,
		p_deleting  => FALSE);
Line: 566

    ELSIF (p_action = 'DELETE') THEN
      -- Call all the procedures related to After Delete.
      NULL;
Line: 573

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_fund_excl_id                      IN OUT NOCOPY NUMBER,
    x_person_id                         IN     NUMBER,
    x_encumbrance_type                  IN     VARCHAR2,
    x_pen_start_dt                      IN     DATE,
    x_s_encmb_effect_type               IN     VARCHAR2,
    x_pee_start_dt                      IN     DATE,
    x_pee_sequence_number               IN     NUMBER,
    x_fund_code                         IN     VARCHAR2,
    x_pfe_start_dt                      IN     DATE,
    x_expiry_dt                         IN     DATE,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : prabhat.patel
  ||  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: 598

    x_last_updated_by            NUMBER;
Line: 599

    x_last_update_login          NUMBER;
Line: 603

    x_last_update_date := SYSDATE;
Line: 605

      x_last_updated_by := 1;
Line: 606

      x_last_update_login := 0;
Line: 608

      x_last_updated_by := fnd_global.user_id;
Line: 609

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

      x_last_update_login := fnd_global.login_id;
Line: 613

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

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_fund_excl_id                      => x_fund_excl_id,
      x_person_id                         => x_person_id,
      x_encumbrance_type                  => x_encumbrance_type,
      x_pen_start_dt                      => x_pen_start_dt,
      x_s_encmb_effect_type               => x_s_encmb_effect_type,
      x_pee_start_dt                      => x_pee_start_dt,
      x_pee_sequence_number               => x_pee_sequence_number,
      x_fund_code                         => x_fund_code,
      x_pfe_start_dt                      => x_pfe_start_dt,
      x_expiry_dt                         => x_expiry_dt,
      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: 642

    INSERT INTO igs_pe_fund_excl (
      fund_excl_id,
      person_id,
      encumbrance_type,
      pen_start_dt,
      s_encmb_effect_type,
      pee_start_dt,
      pee_sequence_number,
      fund_code,
      pfe_start_dt,
      expiry_dt,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      igs_pe_fund_excl_s.NEXTVAL,
      new_references.person_id,
      new_references.encumbrance_type,
      new_references.pen_start_dt,
      new_references.s_encmb_effect_type,
      new_references.pee_start_dt,
      new_references.pee_sequence_number,
      new_references.fund_code,
      new_references.pfe_start_dt,
      new_references.expiry_dt,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    ) RETURNING ROWID, fund_excl_id INTO x_rowid, x_fund_excl_id;
Line: 681

      p_action => 'INSERT'
     );
Line: 684

  END insert_row;
Line: 710

      SELECT
        person_id,
        encumbrance_type,
        pen_start_dt,
        s_encmb_effect_type,
        pee_start_dt,
        pee_sequence_number,
        fund_code,
        pfe_start_dt,
        expiry_dt
      FROM  igs_pe_fund_excl
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 731

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_fund_excl_id                      IN     NUMBER,
    x_person_id                         IN     NUMBER,
    x_encumbrance_type                  IN     VARCHAR2,
    x_pen_start_dt                      IN     DATE,
    x_s_encmb_effect_type               IN     VARCHAR2,
    x_pee_start_dt                      IN     DATE,
    x_pee_sequence_number               IN     NUMBER,
    x_fund_code                         IN     VARCHAR2,
    x_pfe_start_dt                      IN     DATE,
    x_expiry_dt                         IN     DATE,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : prabhat.patel
  ||  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: 786

    x_last_updated_by            NUMBER;
Line: 787

    x_last_update_login          NUMBER;
Line: 791

    x_last_update_date := SYSDATE;
Line: 793

      x_last_updated_by := 1;
Line: 794

      x_last_update_login := 0;
Line: 796

      x_last_updated_by := fnd_global.user_id;
Line: 797

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

      x_last_update_login := fnd_global.login_id;
Line: 801

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_fund_excl_id                      => x_fund_excl_id,
      x_person_id                         => x_person_id,
      x_encumbrance_type                  => x_encumbrance_type,
      x_pen_start_dt                      => x_pen_start_dt,
      x_s_encmb_effect_type               => x_s_encmb_effect_type,
      x_pee_start_dt                      => x_pee_start_dt,
      x_pee_sequence_number               => x_pee_sequence_number,
      x_fund_code                         => x_fund_code,
      x_pfe_start_dt                      => x_pfe_start_dt,
      x_expiry_dt                         => x_expiry_dt,
      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: 830

    UPDATE igs_pe_fund_excl
      SET
        person_id                         = new_references.person_id,
        encumbrance_type                  = new_references.encumbrance_type,
        pen_start_dt                      = new_references.pen_start_dt,
        s_encmb_effect_type               = new_references.s_encmb_effect_type,
        pee_start_dt                      = new_references.pee_start_dt,
        pee_sequence_number               = new_references.pee_sequence_number,
        fund_code                         = new_references.fund_code,
        pfe_start_dt                      = new_references.pfe_start_dt,
        expiry_dt                         = new_references.expiry_dt,
        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: 851

      p_action => 'UPDATE'
     );
Line: 854

  END update_row;
Line: 874

  ||  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_pe_fund_excl
      WHERE    fund_excl_id                      = x_fund_excl_id;
Line: 892

      insert_row (
        x_rowid,
        x_fund_excl_id,
        x_person_id,
        x_encumbrance_type,
        x_pen_start_dt,
        x_s_encmb_effect_type,
        x_pee_start_dt,
        x_pee_sequence_number,
        x_fund_code,
        x_pfe_start_dt,
        x_expiry_dt,
        x_mode
      );
Line: 910

    update_row (
      x_rowid,
      x_fund_excl_id,
      x_person_id,
      x_encumbrance_type,
      x_pen_start_dt,
      x_s_encmb_effect_type,
      x_pee_start_dt,
      x_pee_sequence_number,
      x_fund_code,
      x_pfe_start_dt,
      x_expiry_dt,
      x_mode
    );
Line: 928

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : prabhat.patel
  ||  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: 947

    DELETE FROM igs_pe_fund_excl
    WHERE rowid = x_rowid;
Line: 954

  END delete_row;