Vom Fachmann für dein Motorrad
Zahnriemen Ducati Multistrada 1260, Diavel 1260, X-Diavel
Original Ducati Zahnriemen – 73740342A passend für folgende Ducati Modelle:
Ducati Multistrada
- Ducati 1260 Multistrada , BJ 2018
- Ducati 1260 Multistrada S , BJ 2018
- Ducati 1260 Multistrada S D/Air , BJ 2018
- Ducati 1260 Multistrada S Pikes Peak , BJ 2018
- Ducati 950 Multistrada S , BJ 2017
Ducati Diavel
- Ducati 1260 XDiavel , BJ 2016
- Ducati 1260 XDiavel , BJ 2017
- Ducati 1260 XDiavel S , BJ 2016
- Ducati 1260 XDiavel S , BJ 2017
59,90€
Original Ducati Zahnriemen – 73740342A für Ducati Multistrada 1260, Ducati Diavel 1260 und Ducati X-Diavel
Produktbeschreibung:
Die Zahnriemen sind die in der Erstausstattung original verbaute Zahnriemen für Ducati Multistrada 1260, Ducati X-Diavel und Ducati Diavel 1260 und eignen sich als hochwertiges Ersatzteil. Das Zahnriemenpaar besteht aus einer Gewebe- / Gummimatte, welche mit einem spezifischen Zahnprofil aufgezogen wird.
Verschiede Schichten Gummimaterial werden zusammen mit dem Zugstrang vulkanisiert, um den Zahnriemen stabiler und widerstandsfähiger zu machen. Der Zugstrang (aus Glasfaser) überträgt die Hauptzuglast und gibt dem Zahnriemen zusätzliche Stabilität. Der Zahnriemen wird mit einem verstärkten Zugstrang für höhere Wechselintervalle ausgeliefert.
Das PTFE-Gewebe, sowie die Flanken des Zahnriemens sind besonders reißfest und weisen nur einen geringen Verschleiß auf.
Es werden immer zwei Zahnriemen benötigt!
Technische Details:
- Hersteller: Ducati
- Kategorie: Zahnriemen
- Artikelnummer: 73740342A
- Alternative Bezeichnung: Ventiltriebriemen; Steuerriemen
- Anzahl: 2
- Empfohlene Menge: 2
- EAN: 0000002684154
Hersteller Information:
JMP steht für Johannes Matthies Products und wurde vor über 80 Jahren in Hamburg gegründet. Die Marke JMP hat sich als zuverlässiger Ausstatter von hochwertigen Verschleiß- und Ersatzteilen für viele Motorräder etabliert. Häufig werden Produkte von JMP in der Erstausstattung ab Werk für verschiedene Motorrad Modelle, zum Beispiel von Ducati verwendet.
JMP gehört zu dem Großhandel Matthies. Die Großhandels-Firma bedient einen breiten Kundenstamm des Kfz-Gewerbes und bietet hochwertige Produkte von Werkzeug und Werkstatteinrichtung bis hin zu Verschleiß- und Ersatzteilen.
Weitere Produkte von JMP finden Sie in unserem Online-Shop.
Kurzbeschreibung:
Zahnriemen von JMP, PTFE-Gewebe mit spezifischem Zahnprofil, verstärkter Zugstrang aus Glasfaser
>>ähnliche Produkte<<
Original Ducati Zahnriemen – 73740342A passend für folgende Ducati Modelle:
Ducati Multistrada
- Ducati 1260 Multistrada , BJ 2018
- Ducati 1260 Multistrada S , BJ 2018
- Ducati 1260 Multistrada S D/Air , BJ 2018
- Ducati 1260 Multistrada S Pikes Peak , BJ 2018
- Ducati 950 Multistrada S , BJ 2017
Ducati Diavel
- Ducati 1260 XDiavel , BJ 2016
- Ducati 1260 XDiavel , BJ 2017
- Ducati 1260 XDiavel S , BJ 2016
- Ducati 1260 XDiavel S , BJ 2017
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 Original Zahnriemensatz 749 998 999 Monster S4R 998
Ducati 749 - alle- Ducati 998 -alle- Ducati 999 -alle- Ducati Monster 998 / S4RS…
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; } ?>
Original Zahnriemensatz Ducati Monster SS 600 620 695 750 800
DUC Ducati 400 Monster (400 ccm, 1994 - 1997) DUC Ducati 400 Monster (400 ccm,…
119,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; } ?>
Zahnriemenset mit Spannrollen für Ducati Monster 696 796 Scrambler 800 Hypermotard 796 #1
DUC Ducati 400 Scrambler Hashtag (400 ccm, 2018 - 2018) DUC Ducati 400 Scrambler Sixty2…
289,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; } ?>
Zahnriemen Spannrollen Set für Ducati Monster 600 620 695 750 800 S2R 800 SS i.e. 620 750 800
Monster 600 (ab 1998) 750 (ab 1998) 620 695 800 S2R 800 Ducati SS i.e. 620…
289,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; } } } ?>

Ducati Original Zahnriemensatz 749 998 999 Monster S4R 998
Ducati 749 - alle- Ducati 998 -alle- Ducati 999 -alle- Ducati Monster 998 / S4RS...
229,00€

Original Zahnriemensatz Ducati Monster SS 600 620 695 750 800
DUC Ducati 400 Monster (400 ccm, 1994 - 1997) DUC Ducati 400 Monster (400 ccm,...
119,00€

Zahnriemenset mit Spannrollen für Ducati Monster 696 796 Scrambler 800 Hypermotard 796 #1
DUC Ducati 400 Scrambler Hashtag (400 ccm, 2018 - 2018) DUC Ducati 400 Scrambler Sixty2...
289,00€

Zahnriemen Spannrollen Set für Ducati Monster 600 620 695 750 800 S2R 800 SS i.e. 620 750 800
Monster 600 (ab 1998) 750 (ab 1998) 620 695 800 S2R 800 Ducati SS i.e. 620...
289,00€
Bewertungen
Es gibt noch keine Bewertungen.