DBA Data[Home] [Help]

APPS.IGS_FI_POSTING_INT_PKG SQL Statements

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

Line: 27

    x_last_update_date                  IN     DATE        ,
    x_last_updated_by                   IN     NUMBER      ,
    x_last_update_login                 IN     NUMBER      ,
    x_posting_control_id                IN     NUMBER
  ) AS
  /*
  ||  Created By : BDEVARAK
  ||  Created On : 02-MAY-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        06-Nov-2002     Enh. Bug 2584986. Added new column POSTING_CONTROL_ID. Also
  ||                                  removed DEFAULT  clause
  ||  (reverse chronological order - newest change first)
  */

    CURSOR cur_old_ref_values IS
      SELECT   *
      FROM     IGS_FI_POSTING_INT_ALL
      WHERE    rowid = x_rowid;
Line: 57

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 92

    new_references.last_updated_by                   := x_last_updated_by;
Line: 93

    new_references.last_update_login                 := x_last_update_login;
Line: 116

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

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

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

      SELECT   rowid
      FROM     igs_fi_posting_int_all
      WHERE    posting_id = x_posting_id
      FOR UPDATE NOWAIT;
Line: 229

    x_last_update_date                  IN     DATE        ,
    x_last_updated_by                   IN     NUMBER      ,
    x_last_update_login                 IN     NUMBER      ,
    x_posting_control_id                IN     NUMBER
  ) AS
  /*
  ||  Created By : BDEVARAK
  ||  Created On : 02-MAY-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        06-Nov-2002     Enh. Bug 2584986. Added new column POSTING_CONTROL_ID. Also
  ||                                  removed DEFAULT  clause
  ||  (reverse chronological order - newest change first)
  */
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_posting_id,
      x_batch_name,
      x_accounting_date,
      x_transaction_date,
      x_currency_cd,
      x_dr_account_cd,
      x_cr_account_cd,
      x_dr_gl_code_ccid,
      x_cr_gl_code_ccid,
      x_amount,
      x_source_transaction_id,
      x_source_transaction_type,
      x_status,
      x_orig_appl_fee_ref,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      x_posting_control_id
    );
Line: 273

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

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

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

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_posting_id                        IN OUT NOCOPY NUMBER,
    x_batch_name                        IN     VARCHAR2,
    x_accounting_date                   IN     DATE,
    x_transaction_date                  IN     DATE,
    x_currency_cd                       IN     VARCHAR2    ,
    x_dr_account_cd                     IN     VARCHAR2    ,
    x_cr_account_cd                     IN     VARCHAR2    ,
    x_dr_gl_code_ccid                   IN     NUMBER      ,
    x_cr_gl_code_ccid                   IN     NUMBER      ,
    x_amount                            IN     NUMBER      ,
    x_source_transaction_id             IN     NUMBER      ,
    x_source_transaction_type           IN     VARCHAR2    ,
    x_status                            IN     VARCHAR2    ,
    x_orig_appl_fee_ref                 IN     VARCHAR2    ,
    x_mode                              IN     VARCHAR2    ,
    x_posting_control_id                IN     NUMBER
  ) AS
  /*
  ||  Created By : BDEVARAK
  ||  Created On : 02-MAY-2001
  ||  Purpose : Handles the INSERT DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  smadathi        06-Nov-2002     Enh. Bug 2584986. Added new column POSTING_CONTROL_ID. Also
  ||                                  removed DEFAULT  clause
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c IS
      SELECT   rowid
      FROM     igs_fi_posting_int_all
      WHERE    posting_id                        = x_posting_id;
Line: 342

    x_last_update_date           DATE;
Line: 343

    x_last_updated_by            NUMBER;
Line: 344

    x_last_update_login          NUMBER;
Line: 348

    x_program_update_date        DATE;
Line: 352

    x_last_update_date := SYSDATE;
Line: 354

      x_last_updated_by := 1;
Line: 355

      x_last_update_login := 0;
Line: 357

      x_last_updated_by := fnd_global.user_id;
Line: 358

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

      x_last_update_login := fnd_global.login_id;
Line: 362

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

        x_program_update_date    := NULL;
Line: 375

        x_program_update_date    := SYSDATE;
Line: 383

    SELECT    igs_fi_posting_int_s.NEXTVAL
    INTO      x_posting_id
    FROM      dual;
Line: 390

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_posting_id                        => x_posting_id,
      x_batch_name                        => x_batch_name,
      x_accounting_date                   => x_accounting_date,
      x_transaction_date                  => x_transaction_date,
      x_currency_cd                       => x_currency_cd,
      x_dr_account_cd                     => x_dr_account_cd,
      x_cr_account_cd                     => x_cr_account_cd,
      x_dr_gl_code_ccid                   => x_dr_gl_code_ccid,
      x_cr_gl_code_ccid                   => x_cr_gl_code_ccid,
      x_amount                            => x_amount,
      x_source_transaction_id             => x_source_transaction_id,
      x_source_transaction_type           => x_source_transaction_type,
      x_status                            => x_status,
      x_orig_appl_fee_ref                 => x_orig_appl_fee_ref,
      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_posting_control_id                => x_posting_control_id
    );
Line: 414

    INSERT INTO igs_fi_posting_int_all (
      posting_id,
      batch_name,
      accounting_date,
      transaction_date,
      currency_cd,
      dr_account_cd,
      cr_account_cd,
      dr_gl_code_ccid,
      cr_gl_code_ccid,
      amount,
      source_transaction_id,
      source_transaction_type,
      status,
      orig_appl_fee_ref,
      org_id,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      request_id,
      program_id,
      program_application_id,
      program_update_date ,
      posting_control_id
    ) VALUES (
      new_references.posting_id,
      new_references.batch_name,
      new_references.accounting_date,
      new_references.transaction_date,
      new_references.currency_cd,
      new_references.dr_account_cd,
      new_references.cr_account_cd,
      new_references.dr_gl_code_ccid,
      new_references.cr_gl_code_ccid,
      new_references.amount,
      new_references.source_transaction_id,
      new_references.source_transaction_type,
      new_references.status,
      new_references.orig_appl_fee_ref,
      new_references.org_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.posting_control_id
    );
Line: 476

  END insert_row;
Line: 509

      SELECT
        batch_name,
        accounting_date,
        transaction_date,
        currency_cd,
        dr_account_cd,
        cr_account_cd,
        dr_gl_code_ccid,
        cr_gl_code_ccid,
        amount,
        source_transaction_id,
        source_transaction_type,
        status,
	orig_appl_fee_ref,
	posting_control_id
      FROM  igs_fi_posting_int_all
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 535

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_posting_id                        IN     NUMBER,
    x_batch_name                        IN     VARCHAR2,
    x_accounting_date                   IN     DATE,
    x_transaction_date                  IN     DATE,
    x_currency_cd                       IN     VARCHAR2    ,
    x_dr_account_cd                     IN     VARCHAR2    ,
    x_cr_account_cd                     IN     VARCHAR2    ,
    x_dr_gl_code_ccid                   IN     NUMBER      ,
    x_cr_gl_code_ccid                   IN     NUMBER      ,
    x_amount                            IN     NUMBER      ,
    x_source_transaction_id             IN     NUMBER      ,
    x_source_transaction_type           IN     VARCHAR2    ,
    x_status                            IN     VARCHAR2    ,
    x_orig_appl_fee_ref                 IN     VARCHAR2    ,
    x_mode                              IN     VARCHAR2    ,
    x_posting_control_id                IN     NUMBER
  ) AS
  /*
  ||  Created By : BDEVARAK
  ||  Created On : 02-MAY-2001
  ||  Purpose : Handles the UPDATE DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  smadathi        06-Nov-2002     Enh. Bug 2584986. Added new column POSTING_CONTROL_ID. Also
  ||                                  removed DEFAULT  clause
  ||  (reverse chronological order - newest change first)
  */
    x_last_update_date           DATE ;
Line: 602

    x_last_updated_by            NUMBER;
Line: 603

    x_last_update_login          NUMBER;
Line: 607

    x_program_update_date        DATE;
Line: 611

    x_last_update_date := SYSDATE;
Line: 613

      x_last_updated_by := 1;
Line: 614

      x_last_update_login := 0;
Line: 616

      x_last_updated_by := fnd_global.user_id;
Line: 617

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

      x_last_update_login := fnd_global.login_id;
Line: 621

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_posting_id                        => x_posting_id,
      x_batch_name                        => x_batch_name,
      x_accounting_date                   => x_accounting_date,
      x_transaction_date                  => x_transaction_date,
      x_currency_cd                       => x_currency_cd,
      x_dr_account_cd                     => x_dr_account_cd,
      x_cr_account_cd                     => x_cr_account_cd,
      x_dr_gl_code_ccid                   => x_dr_gl_code_ccid,
      x_cr_gl_code_ccid                   => x_cr_gl_code_ccid,
      x_amount                            => x_amount,
      x_source_transaction_id             => x_source_transaction_id,
      x_source_transaction_type           => x_source_transaction_type,
      x_status                            => x_status,
      x_orig_appl_fee_ref                 => x_orig_appl_fee_ref,
      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_posting_control_id                => x_posting_control_id
    );
Line: 663

        x_program_update_date := old_references.program_update_date;
Line: 665

        x_program_update_date := SYSDATE;
Line: 669

    UPDATE igs_fi_posting_int_all
      SET
        batch_name                        = new_references.batch_name,
        accounting_date                   = new_references.accounting_date,
        transaction_date                  = new_references.transaction_date,
        currency_cd                       = new_references.currency_cd,
        dr_account_cd                     = new_references.dr_account_cd,
        cr_account_cd                     = new_references.cr_account_cd,
        dr_gl_code_ccid                   = new_references.dr_gl_code_ccid,
        cr_gl_code_ccid                   = new_references.cr_gl_code_ccid,
        amount                            = new_references.amount,
        source_transaction_id             = new_references.source_transaction_id,
        source_transaction_type           = new_references.source_transaction_type,
        status                            = new_references.status,
	orig_appl_fee_ref                 = new_references.orig_appl_fee_ref,
        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 ,
	posting_control_id                = x_posting_control_id
      WHERE rowid = x_rowid;
Line: 698

  END update_row;
Line: 723

  ||  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        06-Nov-2002     Enh. Bug 2584986. Added new column POSTING_CONTROL_ID. Also
  ||                                  removed DEFAULT  clause
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c1 IS
      SELECT   rowid
      FROM     igs_fi_posting_int_all
      WHERE    posting_id                        = x_posting_id;
Line: 743

      insert_row (
        x_rowid,
        x_posting_id,
        x_batch_name,
        x_accounting_date,
        x_transaction_date,
        x_currency_cd,
        x_dr_account_cd,
        x_cr_account_cd,
        x_dr_gl_code_ccid,
        x_cr_gl_code_ccid,
        x_amount,
        x_source_transaction_id,
        x_source_transaction_type,
        x_status,
	x_orig_appl_fee_ref,
        x_mode ,
	x_posting_control_id
      );
Line: 766

    update_row (
      x_rowid,
      x_posting_id,
      x_batch_name,
      x_accounting_date,
      x_transaction_date,
      x_currency_cd,
      x_dr_account_cd,
      x_cr_account_cd,
      x_dr_gl_code_ccid,
      x_cr_gl_code_ccid,
      x_amount,
      x_source_transaction_id,
      x_source_transaction_type,
      x_status,
      x_orig_appl_fee_ref,
      x_mode ,
      x_posting_control_id
    );
Line: 789

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : BDEVARAK
  ||  Created On : 02-MAY-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: 808

    DELETE FROM igs_fi_posting_int_all
    WHERE rowid = x_rowid;
Line: 815

  END delete_row;