DBA Data[Home] [Help]

APPS.OTA_TPM_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_members tpm
    WHERE  tpm.training_plan_member_id       = p_training_plan_member_id
    AND    inf.organization_id               = tpm.business_group_id
    AND    inf.org_information_context || '' = 'Business Group Information';
Line: 95

    SELECT pbg.legislation_code
      FROM per_business_groups pbg
         , ota_training_plan_members ota
     WHERE ota.training_plan_member_id = p_training_plan_member_id
       AND pbg.business_group_id = ota.business_group_id;
Line: 360

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

END chk_non_updateable_args;
Line: 409

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

END insert_validate;
Line: 535

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

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

END update_validate;
Line: 662

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

  ota_tpm_bus1.chk_delete(
               p_training_plan_member_id => ota_tpm_shd.g_old_rec.training_plan_member_id
              ,p_training_plan_id        => ota_tpm_shd.g_old_rec.training_plan_id );
Line: 680

END delete_validate;