DBA Data[Home] [Help]

APPS.OTA_TPC_BUS SQL Statements

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

Line: 28

    select inf.org_information14
    from   hr_organization_information inf
          ,ota_training_plan_costs tpc
    where  tpc.training_plan_cost_id         = p_training_plan_cost_id
    and    inf.organization_id               = tpc.business_group_id
    and    inf.org_information_context || '' = 'Business Group Information';
Line: 89

    select pbg.legislation_code
      from per_business_groups pbg
         , ota_training_plan_costs tpc
     where tpc.training_plan_cost_id = p_training_plan_cost_id
       and pbg.business_group_id = tpc.business_group_id;
Line: 533

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

End chk_non_updateable_args;
Line: 604

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

End insert_validate;
Line: 673

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

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

End update_validate;
Line: 714

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

End delete_validate;