DBA Data[Home] [Help]

APPS.PAY_ROM_INS SQL Statements

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

Line: 57

Procedure dt_insert_dml
  (p_rec                     in out nocopy pay_rom_shd.g_rec_type
  ,p_effective_date          in date
  ,p_datetrack_mode          in varchar2
  ,p_validation_start_date   in date
  ,p_validation_end_date     in date
  ) is
-- Cursor to select 'old' created AOL who column values
--
  Cursor C_Sel1 Is
    select t.created_by,
           t.creation_date
    from   pay_run_type_org_methods_f t
    where  t.run_type_org_method_id       = p_rec.run_type_org_method_id
    and    t.effective_start_date =
             pay_rom_shd.g_old_rec.effective_start_date
    and    t.effective_end_date   = (p_validation_start_date - 1);
Line: 75

  l_proc                varchar2(72) := g_package||'dt_insert_dml';
Line: 78

  l_last_update_date   	pay_run_type_org_methods_f.last_update_date%TYPE;
Line: 79

  l_last_updated_by     pay_run_type_org_methods_f.last_updated_by%TYPE;
Line: 80

  l_last_update_login   pay_run_type_org_methods_f.last_update_login%TYPE;
Line: 103

  If (p_datetrack_mode <> hr_api.g_insert) then
    hr_utility.set_location(l_proc, 10);
Line: 125

    l_last_update_date   := sysdate;
Line: 126

    l_last_updated_by    := fnd_global.user_id;
Line: 127

    l_last_update_login  := fnd_global.login_id;
Line: 134

  insert into pay_run_type_org_methods_f
      (run_type_id
      ,org_payment_method_id
      ,effective_start_date
      ,effective_end_date
      ,priority
      ,percentage
      ,amount
      ,object_version_number
      ,run_type_org_method_id
      ,business_group_id
      ,legislation_code
      ,created_by
      ,creation_date
      ,last_update_date
      ,last_updated_by
      ,last_update_login
      )
  Values
    (p_rec.run_type_id
    ,p_rec.org_payment_method_id
    ,p_rec.effective_start_date
    ,p_rec.effective_end_date
    ,p_rec.priority
    ,p_rec.percentage
    ,p_rec.amount
    ,p_rec.object_version_number
    ,p_rec.run_type_org_method_id
    ,p_rec.business_group_id
    ,p_rec.legislation_code
    ,l_created_by
    ,l_creation_date
    ,l_last_update_date
    ,l_last_updated_by
    ,l_last_update_login
    );
Line: 188

End dt_insert_dml;
Line: 203

  SELECT product_short_name
    FROM hr_owner_definitions
   WHERE session_id = p_session_id;
Line: 219

       INSERT INTO hr_application_ownerships
         (key_name
         ,key_value
         ,product_name
         )
       VALUES
         (p_pk_column
         ,fnd_number.number_to_canonical(p_pk_value)
         ,c1.product_short_name
         );
Line: 246

Procedure insert_dml
  (p_rec                   in out nocopy pay_rom_shd.g_rec_type
  ,p_effective_date        in date
  ,p_datetrack_mode        in varchar2
  ,p_validation_start_date in date
  ,p_validation_end_date   in date
  ) is
--
  l_proc	varchar2(72) := g_package||'insert_dml';
Line: 259

  pay_rom_ins.dt_insert_dml
    (p_rec                   => p_rec
    ,p_effective_date        => p_effective_date
    ,p_datetrack_mode        => p_datetrack_mode
    ,p_validation_start_date => p_validation_start_date
    ,p_validation_end_date   => p_validation_end_date
    );
Line: 268

End insert_dml;
Line: 309

Procedure pre_insert
  (p_rec                   in out nocopy pay_rom_shd.g_rec_type
  ,p_effective_date        in date
  ,p_datetrack_mode        in varchar2
  ,p_validation_start_date in date
  ,p_validation_end_date   in date
  ) is
--
  l_proc	varchar2(72) := g_package||'pre_insert';
Line: 319

  Cursor C_Sel1 is select pay_run_type_org_methods_s.nextval from sys.dual;
Line: 333

End pre_insert;
Line: 367

Procedure post_insert
  (p_rec                   in pay_rom_shd.g_rec_type
  ,p_effective_date        in date
  ,p_datetrack_mode        in varchar2
  ,p_validation_start_date in date
  ,p_validation_end_date   in date
  ) is
--
  l_proc	varchar2(72) := g_package||'post_insert';
Line: 385

    pay_rom_rki.after_insert
      (p_effective_date
      => p_effective_date
      ,p_validation_start_date
      => p_validation_start_date
      ,p_validation_end_date
      => p_validation_end_date
      ,p_run_type_id
      => p_rec.run_type_id
      ,p_org_payment_method_id
      => p_rec.org_payment_method_id
      ,p_effective_start_date
      => p_rec.effective_start_date
      ,p_effective_end_date
      => p_rec.effective_end_date
      ,p_priority
      => p_rec.priority
      ,p_percentage
      => p_rec.percentage
      ,p_amount
      => p_rec.amount
      ,p_object_version_number
      => p_rec.object_version_number
      ,p_run_type_org_method_id
      => p_rec.run_type_org_method_id
      ,p_business_group_id
      => p_rec.business_group_id
      ,p_legislation_code
      => p_rec.legislation_code
      );
Line: 427

End post_insert;
Line: 518

  l_datetrack_mode              varchar2(30) := hr_api.g_insert;
Line: 537

  pay_rom_bus.insert_validate
    (p_rec                   => p_rec
    ,p_effective_date        => p_effective_date
    ,p_datetrack_mode        => l_datetrack_mode
    ,p_validation_start_date => l_validation_start_date
    ,p_validation_end_date   => l_validation_end_date
    );
Line: 547

  pay_rom_ins.pre_insert
    (p_rec                   => p_rec
    ,p_effective_date        => p_effective_date
    ,p_datetrack_mode        => l_datetrack_mode
    ,p_validation_start_date => l_validation_start_date
    ,p_validation_end_date   => l_validation_end_date
    );
Line: 557

  pay_rom_ins.insert_dml
    (p_rec                   => p_rec
    ,p_effective_date        => p_effective_date
    ,p_datetrack_mode        => l_datetrack_mode
    ,p_validation_start_date => l_validation_start_date
    ,p_validation_end_date   => l_validation_end_date
    );
Line: 567

  pay_rom_ins.post_insert
    (p_rec                   => p_rec
    ,p_effective_date        => p_effective_date
    ,p_datetrack_mode        => l_datetrack_mode
    ,p_validation_start_date => l_validation_start_date
    ,p_validation_end_date   => l_validation_end_date
    );