Vom Fachmann für dein Motorrad
Zahnriemen Spannrolle fest Ducati 848 950 1098 1198 Multistrada Diavel
Ducati Monster 1200
Ducati 848
Ducati 1098
Ducati 1198
Ducati Multistrada 1200
Ducati Multistrada 1260
Ducati Diavel 1200
Ducati Diavel 1260
89,00€
Nur noch 2 vorrätig
- Hersteller: Ducati
- Artikelnummer: 45120272A
- Produktart: Zahnriemen-Spannrolle (fest)
- Farbe: Silber/Metallisch (je nach Ausführung)
- Material: Hochwertiges Metall (laut Hersteller)
- Einbauort: Motorsteuerung
- Kompatibilität: Ducati 848, 950, 1098, 1198, Multistrada, Diavel (modellabhängig)
Die feststehende Zahnriemen-Spannrolle ist ein präzises Bauteil für verschiedene Ducati Modelle. Sie dient der optimalen Führung und Spannung des Zahnriemens im Motorbereich und trägt zur zuverlässigen Funktion der Steuerung bei.
Vorteile auf einen Blick
Diese Spannrolle bietet mehrere Vorteile für den Einsatz an Ducati Motorrädern:
- Langlebige Konstruktion für hohe Laufleistungen
- Passgenaue Fertigung für spezifische Ducati Modelle
- Sicherer Betrieb durch stabile Materialauswahl
- Einfache Wartung und Austauschmöglichkeit
Technische Daten
Zentrale Merkmale der feststehenden Zahnriemen-Spannrolle:
- Konstruktion als feste Umlenkrolle ohne Verstellmechanismus
- Spezifisch abgestimmt auf die Motorsteuerung ausgewählter Ducati Modelle
- Korrosionsbeständiges Material für lange Lebensdauer
- Lagerung mit geringer Reibung zur Reduzierung von Verschleißerscheinungen
Einsatzbereiche
Die Spannrolle wird typischerweise im Bereich der Motorsteuerung von Ducati Motorrädern eingesetzt. Sie eignet sich sowohl für den professionellen Werkstattbetrieb als auch für technisch versierte Privatpersonen, die Wartungs- oder Reparaturarbeiten an Modellen wie der Ducati 848, 950, 1098, 1198, Multistrada oder Diavel durchführen.
Lieferumfang
- 1x feststehende Zahnriemen-Spannrolle für Ducati (je nach Ausführung passend zu den genannten Modellen)
- Hinweis: Die genaue Ausführung kann je nach Modelljahr und Motorausführung variieren.
FAQ
Ist die Spannrolle mit allen genannten Ducati Modellen kompatibel?
Die Kompatibilität hängt vom jeweiligen Modelljahr und Motortyp ab. Bitte vor dem Einbau die Teilenummer und Fahrzeugdaten abgleichen.
Muss die Spannrolle regelmäßig gewartet werden?
Eine regelmäßige Kontrolle im Rahmen der Zahnriemenwartung wird empfohlen. Austauschintervalle richten sich nach den Vorgaben des Herstellers.
Lässt sich die Spannrolle selbst montieren?
Mit technischem Grundwissen und geeignetem Werkzeug ist ein Austausch möglich. Bei Unsicherheiten empfiehlt sich die Montage durch Fachpersonal.
AUS welchem Material besteht die Spannrolle?
Die Spannrolle besteht aus hochwertigem Metall; Details können je nach Ausführung variieren.
Bietet das Bauteil eine Garantie?
Garantiebedingungen sind herstellerabhängig und können je nach Bezugsquelle unterschiedlich ausfallen.
Alle Angaben ohne Gewähr.
Ducati Monster 1200
Ducati 848
Ducati 1098
Ducati 1198
Ducati Multistrada 1200
Ducati Multistrada 1260
Ducati Diavel 1200
Ducati Diavel 1260
Cavalieri Ducati 3
40132 Bologna
Italien
infodmd@ducati.com
Cavalieri Ducati 3
40132 Bologna
Italien
infodmd@ducati.com
Du musst angemeldet sein, um eine Bewertung abgeben zu können.
Verwandte Produkte

<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?><?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>Ducati Zahnriemen Spannrolle fest – SS, Monster, Scrambler, Hypermotard, Multistrada, Hypermotard…
Hersteller: Ducati Artikelnummer: 45120211A Produktart: Feste Zahnriemen-Spannrolle Material: Hochwertiger Stahl (laut Herstellerangabe) Einbauort: Motorsteuerung /…
47,10€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>
<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?><?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>Ducati Zahnriemen Spannrolle, beweglich – Monster, SS, Scrambler, Hypermotard, Multistrada, ST3
DUC Ducati 1000 DS Multistrada (1000 ccm, 2003 - 2006) DUC Ducati 1000 DS Multistrada…
89,90€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>
<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?><?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>Spannrollen Spannlager Set Ducati 2V 696 796 800 1100 ST3
Monster 695 696 796 797 800 1100 Multistrada 1100 Hypermotard 796 1100 Scrambler 400 800…
229,00€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>
<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?><?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>Spannrolle starre Version Ducati Monster S4 / ST4/S 2001
Hersteller: Ducati Artikelnummer: 45110101A-1 Produktart: Spannrolle (starre Version) Farbe: Schwarz/Silber (je nach Ausführung) Material: Metall…
33,90€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>

Ducati Zahnriemen Spannrolle fest – SS, Monster, Scrambler, Hypermotard, Multistrada, Hypermotard…
Hersteller: Ducati Artikelnummer: 45120211A Produktart: Feste Zahnriemen-Spannrolle Material: Hochwertiger Stahl (laut Herstellerangabe) Einbauort: Motorsteuerung /...
47,10€

Ducati Zahnriemen Spannrolle, beweglich – Monster, SS, Scrambler, Hypermotard, Multistrada, ST3
DUC Ducati 1000 DS Multistrada (1000 ccm, 2003 - 2006) DUC Ducati 1000 DS Multistrada...
89,90€

Spannrollen Spannlager Set Ducati 2V 696 796 800 1100 ST3
Monster 695 696 796 797 800 1100 Multistrada 1100 Hypermotard 796 1100 Scrambler 400 800...
229,00€

Spannrolle starre Version Ducati Monster S4 / ST4/S 2001
Hersteller: Ducati Artikelnummer: 45110101A-1 Produktart: Spannrolle (starre Version) Farbe: Schwarz/Silber (je nach Ausführung) Material: Metall...
33,90€





Bewertungen
Es gibt noch keine Bewertungen.