DBA Data[Home] [Help]

APPS.IGS_EN_NSU_DLSTP_PKG SQL Statements

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

Line: 21

    x_last_update_date                  IN     DATE        DEFAULT NULL,
    x_last_updated_by                   IN     NUMBER      DEFAULT NULL,
    x_last_update_login                 IN     NUMBER      DEFAULT NULL,
    x_incl_wkend_duration_flag          IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 30-MAR-2001
  ||  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_EN_NSU_DLSTP_ALL
      WHERE    rowid = x_rowid;
Line: 49

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 78

    new_references.last_updated_by                   := x_last_updated_by;
Line: 79

    new_references.last_update_login                 := x_last_update_login;
Line: 155

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

      SELECT   rowid
      FROM     igs_en_nsu_dlstp_all
      WHERE    non_std_usec_dls_id = x_non_std_usec_dls_id
      FOR UPDATE NOWAIT;
Line: 231

      SELECT   rowid
      FROM     igs_en_nsu_dlstp_all
      WHERE    function_name = x_function_name
      AND      definition_code = x_definition_code
      AND      ((org_unit_code = x_org_unit_code) OR (org_unit_code IS NULL AND x_org_unit_code IS NULL))
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 268

    x_last_update_date                  IN     DATE        DEFAULT NULL,
    x_last_updated_by                   IN     NUMBER      DEFAULT NULL,
    x_last_update_login                 IN     NUMBER      DEFAULT NULL,
    x_incl_wkend_duration_flag          IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 30-MAR-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
  ||  (reverse chronological order - newest change first)
  */
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_non_std_usec_dls_id,
      x_function_name,
      x_definition_code,
      x_org_unit_code,
      x_formula_method,
      x_round_method,
      x_offset_dt_code,
      x_offset_duration,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      x_incl_wkend_duration_flag
    );
Line: 304

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

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

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

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

    ELSIF (p_action = 'VALIDATE_UPDATE') THEN
      check_uniqueness;
Line: 340

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_non_std_usec_dls_id               IN OUT NOCOPY NUMBER,
    x_function_name                     IN     VARCHAR2,
    x_definition_code                   IN     VARCHAR2,
    x_org_unit_code                     IN     VARCHAR2,
    x_formula_method                    IN     VARCHAR2,
    x_round_method                      IN     VARCHAR2,
    x_offset_dt_code                    IN     VARCHAR2,
    x_offset_duration                   IN     NUMBER,
    x_mode                              IN     VARCHAR2 DEFAULT 'R',
    x_incl_wkend_duration_flag          IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 30-MAR-2001
  ||  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_en_nsu_dlstp_all
      WHERE    non_std_usec_dls_id               = x_non_std_usec_dls_id;
Line: 374

    x_last_update_date           DATE;
Line: 375

    x_last_updated_by            NUMBER;
Line: 376

    x_last_update_login          NUMBER;
Line: 380

    x_last_update_date := SYSDATE;
Line: 382

      x_last_updated_by := 1;
Line: 383

      x_last_update_login := 0;
Line: 385

      x_last_updated_by := fnd_global.user_id;
Line: 386

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

      x_last_update_login := fnd_global.login_id;
Line: 390

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

    SELECT    igs_en_nsu_dlstp_all_s.NEXTVAL
    INTO      x_non_std_usec_dls_id
    FROM      dual;
Line: 406

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_non_std_usec_dls_id               => x_non_std_usec_dls_id,
      x_function_name                     => x_function_name,
      x_definition_code                   => x_definition_code,
      x_org_unit_code                     => x_org_unit_code,
      x_formula_method                    => x_formula_method,
      x_round_method                      => x_round_method,
      x_offset_dt_code                    => x_offset_dt_code,
      x_offset_duration                   => x_offset_duration,
      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_incl_wkend_duration_flag          => x_incl_wkend_duration_flag
    );
Line: 424

     INSERT INTO igs_en_nsu_dlstp_all (
      non_std_usec_dls_id,
      function_name,
      definition_code,
      org_unit_code,
      formula_method,
      round_method,
      offset_dt_code,
      offset_duration,
      org_id,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      incl_wkend_duration_flag
    ) VALUES (
      new_references.non_std_usec_dls_id,
      new_references.function_name,
      new_references.definition_code,
      new_references.org_unit_code,
      new_references.formula_method,
      new_references.round_method,
      new_references.offset_dt_code,
      new_references.offset_duration,
      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_incl_wkend_duration_flag
    );
Line: 466

  END insert_row;
Line: 491

      SELECT
        function_name,
        definition_code,
        org_unit_code,
        formula_method,
        round_method,
        offset_dt_code,
        offset_duration,
        incl_wkend_duration_flag
      FROM  igs_en_nsu_dlstp_all
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 511

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_non_std_usec_dls_id               IN     NUMBER,
    x_function_name                     IN     VARCHAR2,
    x_definition_code                   IN     VARCHAR2,
    x_org_unit_code                     IN     VARCHAR2,
    x_formula_method                    IN     VARCHAR2,
    x_round_method                      IN     VARCHAR2,
    x_offset_dt_code                    IN     VARCHAR2,
    x_offset_duration                   IN     NUMBER,
    x_mode                              IN     VARCHAR2 DEFAULT 'R',
    x_incl_wkend_duration_flag          IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 30-MAR-2001
  ||  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: 564

    x_last_updated_by            NUMBER;
Line: 565

    x_last_update_login          NUMBER;
Line: 569

    x_last_update_date := SYSDATE;
Line: 571

      x_last_updated_by := 1;
Line: 572

      x_last_update_login := 0;
Line: 574

      x_last_updated_by := fnd_global.user_id;
Line: 575

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

      x_last_update_login := fnd_global.login_id;
Line: 579

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_non_std_usec_dls_id               => x_non_std_usec_dls_id,
      x_function_name                     => x_function_name,
      x_definition_code                   => x_definition_code,
      x_org_unit_code                     => x_org_unit_code,
      x_formula_method                    => x_formula_method,
      x_round_method                      => x_round_method,
      x_offset_dt_code                    => x_offset_dt_code,
      x_offset_duration                   => x_offset_duration,
      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_incl_wkend_duration_flag          => x_incl_wkend_duration_flag
    );
Line: 607

    UPDATE igs_en_nsu_dlstp_all
      SET
        function_name                     = new_references.function_name,
        definition_code                   = new_references.definition_code,
        org_unit_code                     = new_references.org_unit_code,
        formula_method                    = new_references.formula_method,
        round_method                      = new_references.round_method,
        offset_dt_code                    = new_references.offset_dt_code,
        offset_duration                   = new_references.offset_duration,
        last_update_date                  = x_last_update_date,
        last_updated_by                   = x_last_updated_by,
        last_update_login                 = x_last_update_login,
        incl_wkend_duration_flag          = x_incl_wkend_duration_flag
      WHERE rowid = x_rowid;
Line: 626

  END update_row;
Line: 645

  ||  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_en_nsu_dlstp_all
      WHERE    non_std_usec_dls_id               = x_non_std_usec_dls_id;
Line: 663

      insert_row (
        x_rowid,
        x_non_std_usec_dls_id,
        x_function_name,
        x_definition_code,
        x_org_unit_code,
        x_formula_method,
        x_round_method,
        x_offset_dt_code,
        x_offset_duration,
        x_mode,
        x_incl_wkend_duration_flag
      );
Line: 680

    update_row (
      x_rowid,
      x_non_std_usec_dls_id,
      x_function_name,
      x_definition_code,
      x_org_unit_code,
      x_formula_method,
      x_round_method,
      x_offset_dt_code,
      x_offset_duration,
      x_mode,
      x_incl_wkend_duration_flag
    );
Line: 697

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

    DELETE FROM igs_en_nsu_dlstp_all
    WHERE rowid = x_rowid;
Line: 723

  END delete_row;