DBA Data[Home] [Help]

APPS.PQH_TRANSACTION_TEMPLATES_API SQL Statements

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

Line: 147

procedure update_transaction_template
  (p_validate                       in  boolean   default false
  ,p_transaction_template_id        in  number
  ,p_enable_flag                    in  varchar2  default hr_api.g_varchar2
  ,p_template_id                    in  number    default hr_api.g_number
  ,p_transaction_id                 in  number    default hr_api.g_number
  ,p_transaction_category_id        in  number    default hr_api.g_number
  ,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_transaction_template';
Line: 169

  savepoint update_transaction_template;
Line: 181

    pqh_transaction_templates_bk2.update_transaction_template_b
      (
       p_transaction_template_id        =>  p_transaction_template_id
      ,p_enable_flag                    =>  p_enable_flag
      ,p_template_id                    =>  p_template_id
      ,p_transaction_id                 =>  p_transaction_id
      ,p_transaction_category_id        =>  p_transaction_category_id
      ,p_object_version_number          =>  p_object_version_number
    ,p_effective_date                 => trunc(p_effective_date)
      );
Line: 194

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

    pqh_transaction_templates_bk2.update_transaction_template_a
      (
       p_transaction_template_id        =>  p_transaction_template_id
      ,p_enable_flag                    =>  p_enable_flag
      ,p_template_id                    =>  p_template_id
      ,p_transaction_id                 =>  p_transaction_id
      ,p_transaction_category_id        =>  p_transaction_category_id
      ,p_object_version_number          =>  l_object_version_number
      ,p_effective_date                => trunc(p_effective_date)
      );
Line: 230

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

    ROLLBACK TO update_transaction_template;
Line: 272

    ROLLBACK TO update_transaction_template;
Line: 275

end update_transaction_template;
Line: 280

procedure delete_transaction_template
  (p_validate                       in  boolean  default false
  ,p_transaction_template_id        in  number
  ,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_transaction_template';
Line: 298

  savepoint delete_transaction_template;
Line: 311

    pqh_transaction_templates_bk3.delete_transaction_template_b
      (
       p_transaction_template_id        =>  p_transaction_template_id
      ,p_object_version_number          =>  p_object_version_number
    ,p_effective_date                      => trunc(p_effective_date)
      );
Line: 320

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

    pqh_transaction_templates_bk3.delete_transaction_template_a
      (
       p_transaction_template_id        =>  p_transaction_template_id
      ,p_object_version_number          =>  l_object_version_number
    ,p_effective_date                      => trunc(p_effective_date)
      );
Line: 348

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

    ROLLBACK TO delete_transaction_template;
Line: 384

    ROLLBACK TO delete_transaction_template;
Line: 387

end delete_transaction_template;