DBA Data[Home] [Help]

APPS.OTA_TRB_BUS SQL Statements

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

Line: 32

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , ota_resource_bookings trb
         , ota_suppliable_resources tsr
     where trb.resource_booking_id = p_resource_booking_id
     and   trb.supplied_resource_id = tsr.supplied_resource_id
     and   pbg.business_group_id = tsr.business_group_id;
Line: 105

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , ota_resource_bookings trb
         , ota_suppliable_Resources tsr
     where trb.resource_booking_id = p_resource_booking_id
       and trb.supplied_resource_id = tsr.supplied_resource_id
       and pbg.business_group_id = tsr.business_group_id;
Line: 332

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

End chk_non_updateable_args;
Line: 424

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

  select resource_type
  from   ota_suppliable_resources
  where  supplied_resource_id = p_rec.supplied_resource_id;
Line: 572

End insert_validate;
Line: 603

Procedure update_validate
  (p_effective_date               in date
  ,p_rec                          in ota_trb_shd.g_rec_type
  ) is
--
  l_supplied_resource_id_changed boolean :=
  ota_general.value_changed(ota_trb_shd.g_old_rec.supplied_resource_id,
                           p_rec.supplied_resource_id);
Line: 664

  l_proc	varchar2(72) := g_package||'update_validate';
Line: 668

  select resource_type
  from   ota_suppliable_resources
  where  supplied_resource_id = p_rec.supplied_resource_id;
Line: 688

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

  hr_utility.set_location(' Leaving:'||l_proc, 10); End update_validate;
Line: 855

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

End delete_validate;