DBA Data[Home] [Help]

APPS.IGS_EN_TIMESLOT_PARA_PKG SQL Statements

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

Line: 24

    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_org_id 				IN     NUMBER 	   DEFAULT NULL
  ) AS
  /*
  ||  Created By : nalkumar
  ||  Created On : 08-DEC-2000
  ||  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_TIMESLOT_PARA
      WHERE    rowid = x_rowid;
Line: 52

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 84

    new_references.last_updated_by                   := x_last_updated_by;
Line: 85

    new_references.last_update_login                 := x_last_update_login;
Line: 151

      SELECT   rowid
      FROM     igs_en_timeslot_para
      WHERE    igs_en_timeslot_para_id = x_igs_en_timeslot_para_id
      FOR UPDATE NOWAIT;
Line: 191

      SELECT   rowid
      FROM     igs_en_timeslot_para
      WHERE    program_type_group_cd = x_program_type_group_cd
      AND      cal_type = x_cal_type
      AND      sequence_number = x_sequence_number
      AND      student_type = x_student_type
      AND      timeslot_calendar = x_timeslot_calendar
      AND      ts_mode = x_ts_mode
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 231

      SELECT   rowid
      FROM     IGS_EN_TIMESLOT_PARA
      WHERE    TIMESLOT_CALENDAR   = X_TIMESLOT_NAME;
Line: 269

    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_org_id 				IN     NUMBER 	   DEFAULT NULL
  ) AS
  /*
  ||  Created By : nalkumar
  ||  Created On : 08-DEC-2000
  ||  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_igs_en_timeslot_para_id,
      x_program_type_group_cd,
      x_cal_type,
      x_sequence_number,
      x_student_type,
      x_timeslot_calendar,
      x_timeslot_st_time,
      x_timeslot_end_time,
      x_ts_mode,
      x_max_head_count,
      x_length_of_time,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login ,
      x_org_id
    );
Line: 308

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

    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.igs_en_timeslot_para_id
           )
         ) THEN
        fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
Line: 336

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_igs_en_timeslot_para_id           IN OUT NOCOPY NUMBER,
    x_program_type_group_cd             IN     VARCHAR2,
    x_cal_type                          IN     VARCHAR2,
    x_sequence_number                   IN     NUMBER,
    x_student_type                      IN     VARCHAR2,
    x_timeslot_calendar                 IN     VARCHAR2,
    x_timeslot_st_time                  IN     DATE,
    x_timeslot_end_time                 IN     DATE,
    x_ts_mode                           IN     VARCHAR2,
    x_max_head_count                    IN     NUMBER,
    x_length_of_time                    IN     NUMBER,
    x_mode                              IN     VARCHAR2 DEFAULT 'R',
    x_org_id 				IN     NUMBER
  ) AS
  /*
  ||  Created By : nalkumar
  ||  Created On : 08-DEC-2000
  ||  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)
  ||  pradhakr	     23-Jul-2002      Assigned igs_ge_gen_003.get_org_id to x_org_id
  ||				      in before dml as part of bug# 2457599
  */
    CURSOR c IS
      SELECT   rowid
      FROM     igs_en_timeslot_para
      WHERE    igs_en_timeslot_para_id           = x_igs_en_timeslot_para_id;
Line: 377

    x_last_update_date           DATE;
Line: 378

    x_last_updated_by            NUMBER;
Line: 379

    x_last_update_login          NUMBER;
Line: 383

    x_program_update_date        DATE;
Line: 387

    x_last_update_date := SYSDATE;
Line: 389

      x_last_updated_by := 1;
Line: 390

      x_last_update_login := 0;
Line: 392

      x_last_updated_by := fnd_global.user_id;
Line: 393

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

      x_last_update_login := fnd_global.login_id;
Line: 397

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

        x_program_update_date    := NULL;
Line: 410

        x_program_update_date    := SYSDATE;
Line: 419

   SELECT IGS_EN_TIMESLOT_PARA_S.NEXTVAL
   INTO x_igs_en_timeslot_para_id
   FROM DUAL;
Line: 424

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_igs_en_timeslot_para_id           => x_igs_en_timeslot_para_id,
      x_program_type_group_cd             => x_program_type_group_cd,
      x_cal_type                          => x_cal_type,
      x_sequence_number                   => x_sequence_number,
      x_student_type                      => x_student_type,
      x_timeslot_calendar                 => x_timeslot_calendar,
      x_timeslot_st_time                  => x_timeslot_st_time,
      x_timeslot_end_time                 => x_timeslot_end_time,
      x_ts_mode                           => x_ts_mode,
      x_max_head_count                    => x_max_head_count,
      x_length_of_time                    => x_length_of_time,
      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_org_id 				  => igs_ge_gen_003.get_org_id
    );
Line: 445

    INSERT INTO igs_en_timeslot_para (
      igs_en_timeslot_para_id,
      program_type_group_cd,
      cal_type,
      sequence_number,
      student_type,
      timeslot_calendar,
      timeslot_st_time,
      timeslot_end_time,
      ts_mode,
      max_head_count,
      length_of_time,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      request_id,
      program_id,
      program_application_id,
      program_update_date,
      org_id
    ) VALUES (
      new_references.igs_en_timeslot_para_id,
      new_references.program_type_group_cd,
      new_references.cal_type,
      new_references.sequence_number,
      new_references.student_type,
      new_references.timeslot_calendar,
      new_references.timeslot_st_time,
      new_references.timeslot_end_time,
      new_references.ts_mode,
      new_references.max_head_count,
      new_references.length_of_time,
      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.ORG_ID
    );
Line: 499

  END insert_row;
Line: 526

      SELECT
        program_type_group_cd,
        cal_type,
        sequence_number,
        student_type,
        timeslot_calendar,
        timeslot_st_time,
        timeslot_end_time,
        ts_mode,
        max_head_count,
        length_of_time
      FROM  igs_en_timeslot_para
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 548

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_igs_en_timeslot_para_id           IN     NUMBER,
    x_program_type_group_cd             IN     VARCHAR2,
    x_cal_type                          IN     VARCHAR2,
    x_sequence_number                   IN     NUMBER,
    x_student_type                      IN     VARCHAR2,
    x_timeslot_calendar                 IN     VARCHAR2,
    x_timeslot_st_time                  IN     DATE,
    x_timeslot_end_time                 IN     DATE,
    x_ts_mode                           IN     VARCHAR2,
    x_max_head_count                    IN     NUMBER,
    x_length_of_time                    IN     NUMBER,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : nalkumar
  ||  Created On : 08-DEC-2000
  ||  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: 605

    x_last_updated_by            NUMBER;
Line: 606

    x_last_update_login          NUMBER;
Line: 610

    x_program_update_date        DATE;
Line: 614

    x_last_update_date := SYSDATE;
Line: 616

      x_last_updated_by := 1;
Line: 617

      x_last_update_login := 0;
Line: 619

      x_last_updated_by := fnd_global.user_id;
Line: 620

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

      x_last_update_login := fnd_global.login_id;
Line: 624

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_igs_en_timeslot_para_id           => x_igs_en_timeslot_para_id,
      x_program_type_group_cd             => x_program_type_group_cd,
      x_cal_type                          => x_cal_type,
      x_sequence_number                   => x_sequence_number,
      x_student_type                      => x_student_type,
      x_timeslot_calendar                 => x_timeslot_calendar,
      x_timeslot_st_time                  => x_timeslot_st_time,
      x_timeslot_end_time                 => x_timeslot_end_time,
      x_ts_mode                           => x_ts_mode,
      x_max_head_count                    => x_max_head_count,
      x_length_of_time                    => x_length_of_time,
      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: 662

        x_program_update_date := old_references.program_update_date;
Line: 664

        x_program_update_date := SYSDATE;
Line: 668

    UPDATE igs_en_timeslot_para
      SET
        program_type_group_cd             = new_references.program_type_group_cd,
        cal_type                          = new_references.cal_type,
        sequence_number                   = new_references.sequence_number,
        student_type                      = new_references.student_type,
        timeslot_calendar                 = new_references.timeslot_calendar,
        timeslot_st_time                  = new_references.timeslot_st_time,
        timeslot_end_time                 = new_references.timeslot_end_time,
        ts_mode                           = new_references.ts_mode,
        max_head_count                    = new_references.max_head_count,
        length_of_time                    = new_references.length_of_time,
        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
      WHERE rowid = x_rowid;
Line: 693

  END update_row;
Line: 715

  ||  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_timeslot_para
      WHERE    igs_en_timeslot_para_id           = x_igs_en_timeslot_para_id;
Line: 733

      insert_row (
        x_rowid,
        x_igs_en_timeslot_para_id,
        x_program_type_group_cd,
        x_cal_type,
        x_sequence_number,
        x_student_type,
        x_timeslot_calendar,
        x_timeslot_st_time,
        x_timeslot_end_time,
        x_ts_mode,
        x_max_head_count,
        x_length_of_time,
        x_mode,
        x_org_id
      );
Line: 753

    update_row (
      x_rowid,
      x_igs_en_timeslot_para_id,
      x_program_type_group_cd,
      x_cal_type,
      x_sequence_number,
      x_student_type,
      x_timeslot_calendar,
      x_timeslot_st_time,
      x_timeslot_end_time,
      x_ts_mode,
      x_max_head_count,
      x_length_of_time,
      x_mode
    );
Line: 772

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : nalkumar
  ||  Created On : 08-DEC-2000
  ||  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: 791

    DELETE FROM igs_en_timeslot_para
    WHERE rowid = x_rowid;
Line: 798

  END delete_row;