DBA Data[Home] [Help]

APPS.PQH_PTX_INFO_TYPES_API SQL Statements

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

Line: 147

procedure update_ptx_info_type
  (p_validate                       in  boolean   default false
  ,p_information_type               in  varchar2
  ,p_active_inactive_flag           in  varchar2  default hr_api.g_varchar2
  ,p_description                    in  varchar2  default hr_api.g_varchar2
  ,p_multiple_occurences_flag       in  varchar2  default hr_api.g_varchar2
  ,p_legislation_code               in  varchar2  default hr_api.g_varchar2
  ,p_object_version_number          in out nocopy number
  ,p_effective_date                 in  date
  ) is
  --
  -- Declare cursors and local variables
  --
  l_proc varchar2(72) := g_package||'update_ptx_info_type';
Line: 169

  savepoint update_ptx_info_type;
Line: 181

    pqh_ptx_info_types_bk2.update_ptx_info_type_b
      (
       p_information_type               =>  p_information_type
      ,p_active_inactive_flag           =>  p_active_inactive_flag
      ,p_description                    =>  p_description
      ,p_multiple_occurences_flag       =>  p_multiple_occurences_flag
      ,p_legislation_code               =>  p_legislation_code
      ,p_object_version_number          =>  p_object_version_number
    ,p_effective_date                 => trunc(p_effective_date)
      );
Line: 194

        (p_module_name => 'UPDATE_PTX_INFO_TYPE'
        ,p_hook_type   => 'BP'
        );
Line: 217

    pqh_ptx_info_types_bk2.update_ptx_info_type_a
      (
       p_information_type               =>  p_information_type
      ,p_active_inactive_flag           =>  p_active_inactive_flag
      ,p_description                    =>  p_description
      ,p_multiple_occurences_flag       =>  p_multiple_occurences_flag
      ,p_legislation_code               =>  p_legislation_code
      ,p_object_version_number          =>  l_object_version_number
      ,p_effective_date                => trunc(p_effective_date)
      );
Line: 230

        (p_module_name => 'UPDATE_PTX_INFO_TYPE'
        ,p_hook_type   => 'AP'
        );
Line: 259

    ROLLBACK TO update_ptx_info_type;
Line: 272

    ROLLBACK TO update_ptx_info_type;
Line: 275

end update_ptx_info_type;
Line: 280

procedure delete_ptx_info_type
  (p_validate                       in  boolean  default false
  ,p_information_type               in  varchar2
  ,p_object_version_number          in out nocopy number
  ,p_effective_date                 in  date
  ) is
  --
  -- Declare cursors and local variables
  --
  l_proc varchar2(72) := g_package||'delete_ptx_info_type';
Line: 298

  savepoint delete_ptx_info_type;
Line: 311

    pqh_ptx_info_types_bk3.delete_ptx_info_type_b
      (
       p_information_type               =>  p_information_type
      ,p_object_version_number          =>  p_object_version_number
    ,p_effective_date                      => trunc(p_effective_date)
      );
Line: 320

        (p_module_name => 'DELETE_PTX_INFO_TYPE'
        ,p_hook_type   => 'BP'
        );
Line: 339

    pqh_ptx_info_types_bk3.delete_ptx_info_type_a
      (
       p_information_type               =>  p_information_type
      ,p_object_version_number          =>  l_object_version_number
    ,p_effective_date                      => trunc(p_effective_date)
      );
Line: 348

        (p_module_name => 'DELETE_PTX_INFO_TYPE'
        ,p_hook_type   => 'AP'
        );
Line: 373

    ROLLBACK TO delete_ptx_info_type;
Line: 385

    ROLLBACK TO delete_ptx_info_type;
Line: 388

end delete_ptx_info_type;