DBA Data[Home] [Help]

APPS.PER_CNL_BUS SQL Statements

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

Line: 28

    select Null,Null --pbg.security_group_id,
           --pbg.legislation_code
      from -- per_business_groups_perf pbg
           per_ri_config_locations cnl
     where cnl.location_id = p_location_id;
Line: 99

    select Null --pbg.legislation_code
      from -- per_business_groups_perf pbg
           per_ri_config_locations cnl
     where cnl.location_id = p_location_id;
Line: 187

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

End chk_non_updateable_args;
Line: 217

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

End insert_validate;
Line: 263

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

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

End update_validate;
Line: 315

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

End delete_validate;