DBA Data[Home] [Help]

APPS.IGS_FI_CR_ACTIVITIES_PKG SQL Statements

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

Line: 26

    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER,
    x_gl_date                           IN     DATE,
    x_gl_posted_date                    IN     DATE,
    x_posting_control_id                IN     NUMBER
  ) AS
  /*
  ||  Created By : BDEVARAK
  ||  Created On : 26-APR-2001
  ||  Purpose : Initialises the Old and New references for the columns of the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  smadathi     01-Nov-2002        Enh. Bug 2584986. Added new column GL_DATE,GL_POSTED_DATE,
  ||                                  POSTING_CONTROL_ID. Also removed all DEFAULT CLAUSES
  ||  (reverse chronological order - newest change first)
  */

    CURSOR cur_old_ref_values IS
      SELECT   *
      FROM     IGS_FI_CR_ACTIVITIES
      WHERE    rowid = x_rowid;
Line: 58

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 95

    new_references.last_updated_by                   := x_last_updated_by;
Line: 96

    new_references.last_update_login                 := x_last_update_login;
Line: 120

        Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
Line: 132

        Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
Line: 145

            Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
Line: 156

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

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

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

      SELECT   rowid
      FROM     igs_fi_cr_activities
      WHERE    credit_activity_id = x_credit_activity_id
      FOR UPDATE NOWAIT;
Line: 262

      SELECT   rowid
      FROM     igs_fi_bill_trnsctns
      WHERE   ((bill_id = x_bill_id));
Line: 296

      SELECT   rowid
      FROM     igs_fi_cr_activities
      WHERE   ((credit_id = x_credit_id));
Line: 331

      SELECT   rowid
      FROM     igs_fi_cr_activities
      WHERE   ((posting_id = x_posting_id));
Line: 371

    x_last_update_date                  IN     DATE ,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER,
    x_gl_date                           IN     DATE,
    x_gl_posted_date                    IN     DATE,
    x_posting_control_id                IN     NUMBER

  ) AS
  /*
  ||  Created By : BDEVARAK
  ||  Created On : 26-APR-2001
  ||  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
  ||  smadathi     01-Nov-2002        Enh. Bug 2584986. Added new column GL_DATE,GL_POSTED_DATE,
  ||                                  POSTING_CONTROL_ID. Also removed all DEFAULT CLAUSES
  ||  (reverse chronological order - newest change first)
  */
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_credit_activity_id,
      x_credit_id,
      x_status,
      x_transaction_date,
      x_amount,
      x_dr_account_cd,
      x_cr_account_cd,
      x_dr_gl_ccid,
      x_cr_gl_ccid,
      x_bill_id,
      x_bill_number,
      x_bill_date,
      x_posting_id,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      x_gl_date,
      x_gl_posted_date,
      x_posting_control_id
    );
Line: 419

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

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

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

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_credit_activity_id                IN OUT NOCOPY NUMBER,
    x_credit_id                         IN     NUMBER,
    x_status                            IN     VARCHAR2,
    x_transaction_date                  IN     DATE,
    x_amount                            IN     NUMBER,
    x_dr_account_cd                     IN     VARCHAR2,
    x_cr_account_cd                     IN     VARCHAR2,
    x_dr_gl_ccid                        IN     NUMBER,
    x_cr_gl_ccid                        IN     NUMBER,
    x_bill_id                           IN     NUMBER,
    x_bill_number                       IN     VARCHAR2,
    x_bill_date                         IN     DATE,
    x_posting_id                        IN     NUMBER,
    x_mode                              IN     VARCHAR2,
    x_gl_date                           IN     DATE,
    x_gl_posted_date                    IN     DATE,
    x_posting_control_id                IN     NUMBER
  ) AS
  /*
  ||  Created By : BDEVARAK
  ||  Created On : 26-APR-2001
  ||  Purpose : Handles the INSERT DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  smadathi     01-Nov-2002        Enh. Bug 2584986. Added new column GL_DATE,GL_POSTED_DATE,
  ||                                  POSTING_CONTROL_ID. Also removed all DEFAULT CLAUSES
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c IS
      SELECT   rowid
      FROM     igs_fi_cr_activities
      WHERE    credit_activity_id                = x_credit_activity_id;
Line: 489

    x_last_update_date           DATE;
Line: 490

    x_last_updated_by            NUMBER;
Line: 491

    x_last_update_login          NUMBER;
Line: 495

    x_program_update_date        DATE;
Line: 499

    x_last_update_date := SYSDATE;
Line: 501

      x_last_updated_by := 1;
Line: 502

      x_last_update_login := 0;
Line: 504

      x_last_updated_by := fnd_global.user_id;
Line: 505

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

      x_last_update_login := fnd_global.login_id;
Line: 509

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

        x_program_update_date    := NULL;
Line: 522

        x_program_update_date    := SYSDATE;
Line: 530

    SELECT    igs_fi_cr_activities_s.NEXTVAL
    INTO      x_credit_activity_id
    FROM      dual;
Line: 535

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_credit_activity_id                => x_credit_activity_id,
      x_credit_id                         => x_credit_id,
      x_status                            => x_status,
      x_transaction_date                  => x_transaction_date,
      x_amount                            => x_amount,
      x_dr_account_cd                     => x_dr_account_cd,
      x_cr_account_cd                     => x_cr_account_cd,
      x_dr_gl_ccid                        => x_dr_gl_ccid,
      x_cr_gl_ccid                        => x_cr_gl_ccid,
      x_bill_id                           => x_bill_id,
      x_bill_number                       => x_bill_number,
      x_bill_date                         => x_bill_date,
      x_posting_id                        => x_posting_id,
      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 ,
      x_gl_date                           => x_gl_date,
      x_gl_posted_date                    => x_gl_posted_date,
      x_posting_control_id                => x_posting_control_id
    );
Line: 560

    INSERT INTO igs_fi_cr_activities (
      credit_activity_id,
      credit_id,
      status,
      transaction_date,
      amount,
      dr_account_cd,
      cr_account_cd,
      dr_gl_ccid,
      cr_gl_ccid,
      bill_id,
      bill_number,
      bill_date,
      posting_id,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      request_id,
      program_id,
      program_application_id,
      program_update_date ,
      gl_date,
      gl_posted_date,
      posting_control_id
    ) VALUES (
      new_references.credit_activity_id,
      new_references.credit_id,
      new_references.status,
      new_references.transaction_date,
      new_references.amount,
      new_references.dr_account_cd,
      new_references.cr_account_cd,
      new_references.dr_gl_ccid,
      new_references.cr_gl_ccid,
      new_references.bill_id,
      new_references.bill_number,
      new_references.bill_date,
      new_references.posting_id,
      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 ,
      new_references.gl_date,
      new_references.gl_posted_date,
      new_references.posting_control_id
    );
Line: 622

  END insert_row;
Line: 657

      SELECT
        credit_id,
        status,
        transaction_date,
        amount,
        dr_account_cd,
        cr_account_cd,
        dr_gl_ccid,
        cr_gl_ccid,
        bill_id,
        bill_number,
        bill_date,
        posting_id ,
        gl_date,
        gl_posted_date,
        posting_control_id
      FROM  igs_fi_cr_activities
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 684

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_credit_activity_id                IN     NUMBER,
    x_credit_id                         IN     NUMBER,
    x_status                            IN     VARCHAR2,
    x_transaction_date                  IN     DATE,
    x_amount                            IN     NUMBER,
    x_dr_account_cd                     IN     VARCHAR2,
    x_cr_account_cd                     IN     VARCHAR2,
    x_dr_gl_ccid                        IN     NUMBER,
    x_cr_gl_ccid                        IN     NUMBER,
    x_bill_id                           IN     NUMBER,
    x_bill_number                       IN     VARCHAR2,
    x_bill_date                         IN     DATE,
    x_posting_id                        IN     NUMBER,
    x_mode                              IN     VARCHAR2,
    x_gl_date                           IN     DATE,
    x_gl_posted_date                    IN     DATE ,
    x_posting_control_id                IN     NUMBER
  ) AS
  /*
  ||  Created By : BDEVARAK
  ||  Created On : 26-APR-2001
  ||  Purpose : Handles the UPDATE DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  smadathi     01-Nov-2002        Enh. Bug 2584986. Added new column GL_DATE,GL_POSTED_DATE,
  ||                                  POSTING_CONTROL_ID. Also removed all DEFAULT CLAUSES
  ||  (reverse chronological order - newest change first)
  */
    x_last_update_date           DATE ;
Line: 753

    x_last_updated_by            NUMBER;
Line: 754

    x_last_update_login          NUMBER;
Line: 758

    x_program_update_date        DATE;
Line: 762

    x_last_update_date := SYSDATE;
Line: 764

      x_last_updated_by := 1;
Line: 765

      x_last_update_login := 0;
Line: 767

      x_last_updated_by := fnd_global.user_id;
Line: 768

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

      x_last_update_login := fnd_global.login_id;
Line: 772

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_credit_activity_id                => x_credit_activity_id,
      x_credit_id                         => x_credit_id,
      x_status                            => x_status,
      x_transaction_date                  => x_transaction_date,
      x_amount                            => x_amount,
      x_dr_account_cd                     => x_dr_account_cd,
      x_cr_account_cd                     => x_cr_account_cd,
      x_dr_gl_ccid                        => x_dr_gl_ccid,
      x_cr_gl_ccid                        => x_cr_gl_ccid,
      x_bill_id                           => x_bill_id,
      x_bill_number                       => x_bill_number,
      x_bill_date                         => x_bill_date,
      x_posting_id                        => x_posting_id,
      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 ,
      x_gl_date                           => x_gl_date,
      x_gl_posted_date                    => x_gl_posted_date,
      x_posting_control_id                => x_posting_control_id
    );
Line: 815

        x_program_update_date := old_references.program_update_date;
Line: 817

        x_program_update_date := SYSDATE;
Line: 821

    UPDATE igs_fi_cr_activities
      SET
        credit_id                         = new_references.credit_id,
        status                            = new_references.status,
        transaction_date                  = new_references.transaction_date,
        amount                            = new_references.amount,
        dr_account_cd                     = new_references.dr_account_cd,
        cr_account_cd                     = new_references.cr_account_cd,
        dr_gl_ccid                        = new_references.dr_gl_ccid,
        cr_gl_ccid                        = new_references.cr_gl_ccid,
        bill_id                           = new_references.bill_id,
        bill_number                       = new_references.bill_number,
        bill_date                         = new_references.bill_date,
        posting_id                        = new_references.posting_id,
        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 ,
	gl_date                           = new_references.gl_date,
        gl_posted_date                    = new_references.gl_posted_date,
        posting_control_id                = new_references.posting_control_id
      WHERE rowid = x_rowid;
Line: 851

  END update_row;
Line: 877

  ||  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
  ||  smadathi     01-Nov-2002        Enh. Bug 2584986. Added new column GL_DATE,GL_POSTED_DATE,
  ||                                  POSTING_CONTROL_ID. Also removed all DEFAULT CLAUSES
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c1 IS
      SELECT   rowid
      FROM     igs_fi_cr_activities
      WHERE    credit_activity_id                = x_credit_activity_id;
Line: 897

      insert_row (
        x_rowid,
        x_credit_activity_id,
        x_credit_id,
        x_status,
        x_transaction_date,
        x_amount,
        x_dr_account_cd,
        x_cr_account_cd,
        x_dr_gl_ccid,
        x_cr_gl_ccid,
        x_bill_id,
        x_bill_number,
        x_bill_date,
        x_posting_id,
        x_mode,
	x_gl_date,
	x_gl_posted_date,
	x_posting_control_id
      );
Line: 921

    update_row (
      x_rowid,
      x_credit_activity_id,
      x_credit_id,
      x_status,
      x_transaction_date,
      x_amount,
      x_dr_account_cd,
      x_cr_account_cd,
      x_dr_gl_ccid,
      x_cr_gl_ccid,
      x_bill_id,
      x_bill_number,
      x_bill_date,
      x_posting_id,
      x_mode ,
      x_gl_date,
      x_gl_posted_date,
      x_posting_control_id
    );
Line: 945

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : BDEVARAK
  ||  Created On : 26-APR-2001
  ||  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: 964

    DELETE FROM igs_fi_cr_activities
    WHERE rowid = x_rowid;
Line: 971

  END delete_row;