DBA Data[Home] [Help]

APPS.HXC_ALIAS_TYPE_COMP_API SQL Statements

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

Line: 148

procedure update_alias_type_comp
  (p_validate                      in     boolean  default false
  ,p_component_name                in     varchar2
  ,p_component_type                in     varchar2
  ,p_mapping_component_id          in     number
  ,p_alias_type_id                 in     number
  ,p_alias_type_component_id       in     number
  ,p_object_version_number         in out nocopy number
  ) is
  --
  -- Declare cursors and local variables
  --

  l_proc                varchar2(72);
Line: 167

	 l_proc:= g_package||'update_alias_type_comp';
Line: 173

  savepoint update_alias_type_comp;
Line: 182

    hxc_alias_type_comp_bk1.update_alias_type_comp_b
      (p_component_name          => p_component_name
      ,p_component_type          => p_component_type
      ,p_mapping_component_id    => p_mapping_component_id
      ,p_alias_type_id           => p_alias_type_id
      ,p_alias_type_component_id => p_alias_type_component_id
      ,p_object_version_number   => p_object_version_number
      );
Line: 193

        (p_module_name => 'update_alias_type_comp'
        ,p_hook_type   => 'BP'
        );
Line: 227

    hxc_alias_type_comp_bk1.update_alias_type_comp_a
      (p_component_name          => p_component_name
      ,p_component_type          => p_component_type
      ,p_mapping_component_id    => p_mapping_component_id
      ,p_alias_type_id           => p_alias_type_id
      ,p_alias_type_component_id => p_alias_type_component_id
      ,p_object_version_number   => p_object_version_number
      );
Line: 238

        (p_module_name => 'update_alias_type_comp'
        ,p_hook_type   => 'AP'
        );
Line: 266

    rollback to update_alias_type_comp;
Line: 281

    rollback to update_alias_type_comp;
Line: 286

end update_alias_type_comp;
Line: 294

procedure delete_alias_type_comp
  (p_validate                      in     boolean  default false
  ,p_alias_type_component_id       in     number
  ,p_object_version_number         in     number
  ) is
  --
  -- Declare cursors and local variables
  --

  l_proc                varchar2(72);
Line: 309

	 l_proc:= g_package||'delete_alias_type_comp';
Line: 315

  savepoint delete_alias_type_comp;
Line: 324

    hxc_alias_type_comp_bk1.delete_alias_type_comp_b
      (p_alias_type_component_id => p_alias_type_component_id
      ,p_object_version_number   => p_object_version_number
      );
Line: 331

        (p_module_name => 'delete_alias_type_comp'
        ,p_hook_type   => 'BP'
        );
Line: 350

    hxc_alias_type_comp_bk1.delete_alias_type_comp_a
      (p_alias_type_component_id => p_alias_type_component_id
      ,p_object_version_number   => p_object_version_number
      );
Line: 357

        (p_module_name => 'delete_alias_type_comp'
        ,p_hook_type   => 'AP'
        );
Line: 380

    rollback to delete_alias_type_comp;
Line: 394

    rollback to delete_alias_type_comp;
Line: 399

end delete_alias_type_comp;