DBA Data[Home] [Help]

APPS.OTA_TPS_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_plans tps
     WHERE tps.training_plan_id = p_training_plan_id
       AND inf.organization_id  = tps.business_group_id
       AND    inf.org_information_context || '' = 'Business Group Information';
Line: 95

    SELECT pbg.legislation_code
      FROM per_business_groups pbg
         , ota_training_plans tps
     WHERE tps.training_plan_id = p_training_plan_id
       AND pbg.business_group_id = tps.business_group_id;
Line: 360

PROCEDURE chk_non_updateable_args
  (p_effective_date               IN date
  ,p_rec                          IN ota_tps_shd.g_rec_type
  ) IS
--
  l_proc     varchar2(72) := g_package || 'chk_non_updateable_args';
Line: 425

END chk_non_updateable_args;
Line: 430

PROCEDURE insert_validate
  (p_effective_date               IN date
  ,p_rec                          IN ota_tps_shd.g_rec_type
  ) IS
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 540

END insert_validate;
Line: 545

PROCEDURE update_validate
  (p_effective_date               IN date
  ,p_rec                          IN ota_tps_shd.g_rec_type
  ) IS
--
  l_proc  varchar2(72) := g_package||'update_validate';
Line: 564

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

END update_validate;
Line: 648

PROCEDURE delete_validate
  (p_rec                          IN ota_tps_shd.g_rec_type
  ) IS
--
  l_proc  varchar2(72) := g_package||'delete_validate';
Line: 664

END delete_validate;