DBA Data[Home] [Help]

APPS.PQH_SPECIAL_ATTRIBUTES_API SQL Statements

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

Line: 163

procedure update_special_attribute
  (p_validate                       in  boolean   default false
  ,p_special_attribute_id           in  number
  ,p_txn_category_attribute_id      in  number    default hr_api.g_number
  ,p_attribute_type_cd              in  varchar2  default hr_api.g_varchar2
  ,p_key_attribute_type              in  varchar2  default hr_api.g_varchar2
  ,p_enable_flag              in  varchar2  default hr_api.g_varchar2
  ,p_flex_code                      in  varchar2  default hr_api.g_varchar2
  ,p_object_version_number          in out nocopy number
  ,p_ddf_column_name                in  varchar2  default hr_api.g_varchar2
  ,p_ddf_value_column_name          in  varchar2  default hr_api.g_varchar2
  ,p_context                        in  varchar2  default hr_api.g_varchar2
  ,p_effective_date                 in  date
  ) is
  --
  -- Declare cursors and local variables
  --
  l_proc varchar2(72) := g_package||'update_special_attribute';
Line: 189

  savepoint update_special_attribute;
Line: 201

    pqh_special_attributes_bk2.update_special_attribute_b
      (
       p_special_attribute_id           =>  p_special_attribute_id
      ,p_txn_category_attribute_id      =>  p_txn_category_attribute_id
      ,p_attribute_type_cd              =>  p_attribute_type_cd
      ,p_key_attribute_type              =>  p_key_attribute_type
      ,p_enable_flag              =>  p_enable_flag
      ,p_flex_code                      =>  p_flex_code
      ,p_object_version_number          =>  p_object_version_number
      ,p_ddf_column_name                =>  p_ddf_column_name
      ,p_ddf_value_column_name          =>  p_ddf_value_column_name
      ,p_context                        =>  p_context
    ,p_effective_date                 => trunc(p_effective_date)
      );
Line: 218

        (p_module_name => 'update_special_attribute'
        ,p_hook_type   => 'BP'
        );
Line: 245

    pqh_special_attributes_bk2.update_special_attribute_a
      (
       p_special_attribute_id           =>  p_special_attribute_id
      ,p_txn_category_attribute_id      =>  p_txn_category_attribute_id
      ,p_attribute_type_cd              =>  p_attribute_type_cd
      ,p_key_attribute_type              =>  p_key_attribute_type
      ,p_enable_flag              =>  p_enable_flag
      ,p_flex_code                      =>  p_flex_code
      ,p_object_version_number          =>  l_object_version_number
      ,p_ddf_column_name                =>  p_ddf_column_name
      ,p_ddf_value_column_name          =>  p_ddf_value_column_name
      ,p_context                        =>  p_context
      ,p_effective_date                => trunc(p_effective_date)
      );
Line: 262

        (p_module_name => 'update_special_attribute'
        ,p_hook_type   => 'AP'
        );
Line: 291

    ROLLBACK TO update_special_attribute;
Line: 304

    ROLLBACK TO update_special_attribute;
Line: 307

end update_special_attribute;
Line: 312

procedure delete_special_attribute
  (p_validate                       in  boolean  default false
  ,p_special_attribute_id           in  number
  ,p_object_version_number          in number
  ,p_effective_date                 in  date
  ) is
  --
  -- Declare cursors and local variables
  --
  l_proc varchar2(72) := g_package||'delete_special_attribute';
Line: 330

  savepoint delete_special_attribute;
Line: 343

    pqh_special_attributes_bk3.delete_special_attribute_b
      (
       p_special_attribute_id           =>  p_special_attribute_id
      ,p_object_version_number          =>  p_object_version_number
    ,p_effective_date                      => trunc(p_effective_date)
      );
Line: 352

        (p_module_name => 'delete_special_attribute'
        ,p_hook_type   => 'BP'
        );
Line: 371

    pqh_special_attributes_bk3.delete_special_attribute_a
      (
       p_special_attribute_id           =>  p_special_attribute_id
      ,p_object_version_number          =>  l_object_version_number
    ,p_effective_date                      => trunc(p_effective_date)
      );
Line: 380

        (p_module_name => 'delete_special_attribute'
        ,p_hook_type   => 'AP'
        );
Line: 405

    ROLLBACK TO delete_special_attribute;
Line: 416

    ROLLBACK TO delete_special_attribute;
Line: 419

end delete_special_attribute;