DBA Data[Home] [Help]

APPS.PAY_DTE_BUS SQL Statements

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

Line: 27

    select pbg.security_group_id
      from per_business_groups pbg
         , pay_datetracked_events dte
     where dte.datetracked_event_id = p_datetracked_event_id
       and pbg.business_group_id = dte.business_group_id;
Line: 87

    select pbg.legislation_code
      from per_business_groups pbg
         , pay_datetracked_events dte
     where dte.datetracked_event_id = p_datetracked_event_id
       and pbg.business_group_id (+) = dte.business_group_id;
Line: 175

Procedure chk_non_updateable_args
  (p_effective_date               in date
  ,p_rec in pay_dte_shd.g_rec_type
  ) IS
--
  l_proc     varchar2(72) := g_package || 'chk_non_updateable_args';
Line: 227

End chk_non_updateable_args;
Line: 263

  select 1
  from   dual
  where  exists (
    select 1
    from   pay_dated_tables dt,
           fnd_tables tab,
           fnd_columns col
    where  dt.dated_table_id  = p_rec.dated_table_id
      and  dt.table_name = tab.table_name
      and  tab.table_id = col.table_id
      and  col.column_name = p_rec.column_name
    );
Line: 280

  If (p_rec.update_type = 'U')
  Then
    hr_api.mandatory_arg_error
      (p_api_name           => l_proc
      ,p_argument           => 'COLUMN_NAME'
      ,p_argument_value     => p_rec.column_name
    );
Line: 332

Procedure chk_update_type
      (p_effective_date in date
      ,p_rec            in pay_dte_shd.g_rec_type) is
--
  l_proc        varchar2(72) := g_package || 'chk_update_type';
Line: 348

    ,p_argument       => 'update_type'
    ,p_argument_value => p_rec.update_type
    );
Line: 353

                                       ,p_lookup_type    => 'UPDATE_TYPE'
                                       ,p_lookup_code    => p_rec.update_type) then
    --
    -- The update_type for this record is not recognised
    --
    fnd_message.set_name('PAY','HR_xxxx_INVALID_UPDATE_TYPE');
Line: 379

end chk_update_type;
Line: 384

Procedure insert_validate
  (p_effective_date               in date
  ,p_rec                          in pay_dte_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 397

  chk_update_type(p_effective_date => p_effective_date
                 ,p_rec => p_rec);
Line: 403

End insert_validate;
Line: 408

Procedure update_validate
  (p_effective_date               in date
  ,p_rec                          in pay_dte_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'update_validate';
Line: 421

  chk_non_updateable_args
    (p_effective_date              => p_effective_date
      ,p_rec              => p_rec
    );
Line: 426

  chk_update_type(p_effective_date => p_effective_date
                 ,p_rec => p_rec);
Line: 433

End update_validate;
Line: 438

Procedure delete_validate
  (p_rec                          in pay_dte_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'delete_validate';
Line: 450

End delete_validate;