DBA Data[Home] [Help]

APPS.PER_SHARED_TYPES_TL_API SQL Statements

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

Line: 134

procedure update_shared_types_tl
  (p_validate                       in  boolean   default false
  ,p_shared_type_id                 in  number
  ,p_language                       out nocopy varchar2
  ,p_source_lang                    in  varchar2  default hr_api.g_varchar2
  ,p_shared_type_name               in  varchar2  default hr_api.g_varchar2
  ) is
  --
  -- Declare cursors and local variables
  --
  l_proc varchar2(72) := g_package||'update_shared_types_tl';
Line: 153

  savepoint update_shared_types_tl;
Line: 164

    per_shared_types_tl_bk2.update_shared_types_tl_b
      (
       p_shared_type_id                 =>  p_shared_type_id
      ,p_source_lang                    =>  p_source_lang
      ,p_shared_type_name               =>  p_shared_type_name
      );
Line: 173

        (p_module_name => 'UPDATE_shared_types_tl'
        ,p_hook_type   => 'BP'
        );
Line: 192

    per_shared_types_tl_bk2.update_shared_types_tl_a
      (
       p_shared_type_id                 =>  p_shared_type_id
      ,p_language                       =>  l_language
      ,p_source_lang                    =>  p_source_lang
      ,p_shared_type_name               =>  p_shared_type_name
      );
Line: 202

        (p_module_name => 'UPDATE_shared_types_tl'
        ,p_hook_type   => 'AP'
        );
Line: 231

    ROLLBACK TO update_shared_types_tl;
Line: 244

    ROLLBACK TO update_shared_types_tl;
Line: 247

end update_shared_types_tl;
Line: 252

procedure delete_shared_types_tl
  (p_validate                       in  boolean  default false
  ,p_shared_type_id                 in  number
  ,p_language                       out nocopy varchar2
  ) is
  --
  -- Declare cursors and local variables
  --
  l_proc varchar2(72) := g_package||'update_shared_types_tl';
Line: 269

  savepoint delete_shared_types_tl;
Line: 281

    per_shared_types_tl_bk3.delete_shared_types_tl_b
      (
       p_shared_type_id                 =>  p_shared_type_id
      );
Line: 288

        (p_module_name => 'DELETE_shared_types_tl'
        ,p_hook_type   => 'BP'
        );
Line: 305

    per_shared_types_tl_bk3.delete_shared_types_tl_a
      (
       p_shared_type_id                 =>  p_shared_type_id
      ,p_language                       =>  l_language
      );
Line: 313

        (p_module_name => 'DELETE_shared_types_tl'
        ,p_hook_type   => 'AP'
        );
Line: 338

    ROLLBACK TO delete_shared_types_tl;
Line: 351

    ROLLBACK TO delete_shared_types_tl;
Line: 354

end delete_shared_types_tl;