DBA Data[Home] [Help]

APPS.PQH_COPY_ENTITY_TXNS_API SQL Statements

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

Line: 183

procedure update_COPY_ENTITY_TXN
  (p_validate                       in  boolean   default false
  ,p_copy_entity_txn_id             in  number
  ,p_transaction_category_id        in  number    default hr_API.g_number
  ,p_txn_category_attribute_id      in  number    default hr_API.g_number
  ,p_context_business_group_id      in  number    default hr_api.g_number
  ,p_datetrack_mode                 in  varchar2  default hr_api.g_varchar2
  ,p_context                        in  varchar2  default hr_API.g_varchar2
  ,p_action_date                    in  date      default hr_API.g_date
  ,p_src_effective_date             in  date      default hr_API.g_date
  ,p_number_of_copies               in  number    default hr_API.g_number
  ,p_display_name                   in  varchar2  default hr_API.g_varchar2
  ,p_replacement_type_cd            in  varchar2  default hr_API.g_varchar2
  ,p_start_with                     in  varchar2  default hr_API.g_varchar2
  ,p_increment_by                   in  number    default hr_API.g_number
  ,p_status                         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_COPY_ENTITY_TXN';
Line: 214

  savepoint update_COPY_ENTITY_TXN;
Line: 226

    PQH_COPY_ENTITY_TXNS_bk2.update_COPY_ENTITY_TXN_b
      (
       p_copy_entity_txn_id             =>  p_copy_entity_txn_id
      ,p_transaction_category_id        =>  p_transaction_category_id
      ,p_txn_category_attribute_id      =>  p_txn_category_attribute_id
      ,p_context_business_group_id      =>  p_context_business_group_id
      ,p_datetrack_mode                 =>  p_datetrack_mode
      ,p_context                        =>  p_context
      ,p_action_date                    =>  p_action_date
      ,p_src_effective_date             =>  p_src_effective_date
      ,p_number_of_copies               =>  p_number_of_copies
      ,p_display_name                   =>  p_display_name
      ,p_replacement_type_cd            =>  p_replacement_type_cd
      ,p_start_with                     =>  p_start_with
      ,p_increment_by                   =>  p_increment_by
      ,p_status                         =>  p_status
      ,p_object_version_number          =>  p_object_version_number
    ,p_effective_date                 => trunc(p_effective_date)
      );
Line: 248

        (p_module_name => 'UPDATE_COPY_ENTITY_TXN'
        ,p_hook_type   => 'BP'
        );
Line: 280

    PQH_COPY_ENTITY_TXNS_bk2.update_COPY_ENTITY_TXN_a
      (
       p_copy_entity_txn_id             =>  p_copy_entity_txn_id
      ,p_transaction_category_id        =>  p_transaction_category_id
      ,p_txn_category_attribute_id      =>  p_txn_category_attribute_id
      ,p_context_business_group_id      =>  p_context_business_group_id
      ,p_datetrack_mode                 =>  p_datetrack_mode
      ,p_context                        =>  p_context
      ,p_action_date                    =>  p_action_date
      ,p_src_effective_date             =>  p_src_effective_date
      ,p_number_of_copies               =>  p_number_of_copies
      ,p_display_name                   =>  p_display_name
      ,p_replacement_type_cd            =>  p_replacement_type_cd
      ,p_start_with                     =>  p_start_with
      ,p_increment_by                   =>  p_increment_by
      ,p_status                         =>  p_status
      ,p_object_version_number          =>  l_object_version_number
      ,p_effective_date                => trunc(p_effective_date)
      );
Line: 302

        (p_module_name => 'UPDATE_COPY_ENTITY_TXN'
        ,p_hook_type   => 'AP'
        );
Line: 331

    ROLLBACK TO update_COPY_ENTITY_TXN;
Line: 344

    ROLLBACK TO update_COPY_ENTITY_TXN;
Line: 347

end update_COPY_ENTITY_TXN;
Line: 352

procedure delete_COPY_ENTITY_TXN
  (p_validate                       in  boolean  default false
  ,p_copy_entity_txn_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_COPY_ENTITY_TXN';
Line: 372

  savepoint delete_COPY_ENTITY_TXN;
Line: 385

    PQH_COPY_ENTITY_TXNS_bk3.delete_COPY_ENTITY_TXN_b
      (
       p_copy_entity_txn_id             =>  p_copy_entity_txn_id
      ,p_object_version_number          =>  p_object_version_number
    ,p_effective_date                      => trunc(p_effective_date)
      );
Line: 394

        (p_module_name => 'DELETE_COPY_ENTITY_TXN'
        ,p_hook_type   => 'BP'
        );
Line: 413

    PQH_COPY_ENTITY_TXNS_bk3.delete_COPY_ENTITY_TXN_a
      (
       p_copy_entity_txn_id             =>  p_copy_entity_txn_id
      ,p_object_version_number          =>  l_object_version_number
    ,p_effective_date                      => trunc(p_effective_date)
      );
Line: 422

        (p_module_name => 'DELETE_COPY_ENTITY_TXN'
        ,p_hook_type   => 'AP'
        );
Line: 447

    ROLLBACK TO delete_COPY_ENTITY_TXN;
Line: 458

    ROLLBACK TO delete_COPY_ENTITY_TXN;
Line: 461

end delete_COPY_ENTITY_TXN;