DBA Data[Home] [Help]

APPS.IGS_FI_REFUND_SETUP_PKG SQL Statements

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

Line: 18

    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 : [email protected]
  ||  Created On : 26-FEB-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_fi_refund_setup
      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: 89

      SELECT   rowid
      FROM     igs_fi_refund_setup
      WHERE    refund_setup_id = x_refund_setup_id
      FOR UPDATE NOWAIT;
Line: 127

  		SELECT start_date ,
  		        end_date
  		FROM  igs_fi_refund_setup
  		WHERE refund_setup_id<>p_refund_setup_id OR
  			p_refund_setup_id IS NULL;
Line: 176

  PROCEDURE  beforerowinsertupdate(
   p_inserting 	 			IN	BOOLEAN    DEFAULT NULL,
   p_updating 				IN	BOOLEAN	   DEFAULT NULL
   ) AS
    /*
  ||  Created By : [email protected]
  ||  Created On : 27-FEB-2002
  ||  Purpose : Checks Constraints, Calls the
  ||            Trigger Handlers for the table, before insert or update.
  ||
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
 */
  l_sysdate	DATE :=trunc(SYSDATE);
Line: 194

  IF (p_inserting) THEN
    -- Call all the procedures related to Before Insert.
      IF ( get_pk_for_validation(
             new_references.refund_setup_id
           )
         ) THEN
        fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
Line: 317

  END beforerowinsertupdate;
Line: 329

    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 : [email protected]
  ||  Created On : 26-FEB-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
  || sbaliga	    27-feb-2002	     Included code for checking for tolerance periods
  ||				     overlap as part of refunds build#2144600
  ||  (reverse chronological order - newest change first)
  */
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_refund_setup_id,
      x_start_date,
      x_end_date,
      x_amount_high,
      x_amount_low,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 362

    IF (p_action = 'INSERT') OR (p_action= 'VALIDATE_INSERT') THEN
      -- Call all the procedures related to Before Insert.
       beforerowinsertupdate(p_inserting => TRUE);
Line: 365

    ELSIF (p_action = 'VALIDATE_UPDATE') THEN
        -- Call all the procedures related to Before Update.
      beforerowinsertupdate(p_updating => TRUE);
Line: 373

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_refund_setup_id                   IN OUT NOCOPY NUMBER,
    x_start_date                        IN     DATE,
    x_end_date                          IN     DATE,
    x_amount_high                       IN     NUMBER,
    x_amount_low                        IN     NUMBER,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 26-FEB-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_fi_refund_setup
      WHERE    refund_setup_id                   = x_refund_setup_id;
Line: 396

    x_last_update_date           DATE;
Line: 397

    x_last_updated_by            NUMBER;
Line: 398

    x_last_update_login          NUMBER;
Line: 402

    x_last_update_date := SYSDATE;
Line: 404

      x_last_updated_by := 1;
Line: 405

      x_last_update_login := 0;
Line: 407

      x_last_updated_by := fnd_global.user_id;
Line: 408

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

      x_last_update_login := fnd_global.login_id;
Line: 412

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

    SELECT    igs_fi_refund_setup_s.NEXTVAL
    INTO      x_refund_setup_id
    FROM      dual;
Line: 426

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_refund_setup_id                   => x_refund_setup_id,
      x_start_date                        => x_start_date,
      x_end_date                          => x_end_date,
      x_amount_high                       => x_amount_high,
      x_amount_low                        => x_amount_low,
      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: 440

    INSERT INTO igs_fi_refund_setup (
      refund_setup_id,
      start_date,
      end_date,
      amount_high,
      amount_low,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.refund_setup_id,
      new_references.start_date,
      new_references.end_date,
      new_references.amount_high,
      new_references.amount_low,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 472

  END insert_row;
Line: 493

      SELECT
        start_date,
        end_date,
        amount_high,
        amount_low
      FROM  igs_fi_refund_setup
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 509

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_refund_setup_id                   IN     NUMBER,
    x_start_date                        IN     DATE,
    x_end_date                          IN     DATE,
    x_amount_high                       IN     NUMBER,
    x_amount_low                        IN     NUMBER,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 26-FEB-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: 554

    x_last_updated_by            NUMBER;
Line: 555

    x_last_update_login          NUMBER;
Line: 559

    x_last_update_date := SYSDATE;
Line: 561

      x_last_updated_by := 1;
Line: 562

      x_last_update_login := 0;
Line: 564

      x_last_updated_by := fnd_global.user_id;
Line: 565

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

      x_last_update_login := fnd_global.login_id;
Line: 569

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_refund_setup_id                   => x_refund_setup_id,
      x_start_date                        => x_start_date,
      x_end_date                          => x_end_date,
      x_amount_high                       => x_amount_high,
      x_amount_low                        => x_amount_low,
      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: 593

    UPDATE igs_fi_refund_setup
      SET
        start_date                        = new_references.start_date,
        end_date                          = new_references.end_date,
        amount_high                       = new_references.amount_high,
        amount_low                        = new_references.amount_low,
        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: 608

  END update_row;
Line: 623

  ||  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_fi_refund_setup
      WHERE    refund_setup_id                   = x_refund_setup_id;
Line: 641

      insert_row (
        x_rowid,
        x_refund_setup_id,
        x_start_date,
        x_end_date,
        x_amount_high,
        x_amount_low,
        x_mode
      );
Line: 654

    update_row (
      x_rowid,
      x_refund_setup_id,
      x_start_date,
      x_end_date,
      x_amount_high,
      x_amount_low,
      x_mode
    );
Line: 667

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 26-FEB-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: 686

    DELETE FROM igs_fi_refund_setup
    WHERE rowid = x_rowid;
Line: 693

  END delete_row;