CINXE.COM
Wie funktionieren die Spaltenanzeigeeinstellungen des 脛nderungen-Tools? - Procore
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Wie funktionieren die Spaltenanzeigeeinstellungen des 脛nderungen-Tools? - Procore</title> <link media="screen" type="text/css" rel="stylesheet" href="https://a.mtstatic.com/@cache/layout/legacy.css?_=604a507599620f1fadc46c53bc548dee_ZGUuc3VwcG9ydC5wcm9jb3JlLmNvbQ==:site_13855" id="mt-screen-css" /> <link media="print" type="text/css" rel="stylesheet" href="https://a.mtstatic.com/@cache/layout/print.css?_=235840a9e2b1f236ff889ab4d7b4a320:site_13855" id="mt-print-css" /> <script type="text/javascript" nonce="24acccfb3e994bbfbd77ed127cb5b2323ea76ef47725389cce84feab3186b763" src="https://a.mtstatic.com/deki/javascript/out/grape.min.js?_=a97de9e640dec836ce36fd7e1c341ae98d5ae1fb:site_13855"></script><script type="application/json" id="mt-global-settings" nonce="24acccfb3e994bbfbd77ed127cb5b2323ea76ef47725389cce84feab3186b763">{"apiToken":"xhr_2_1740159115_a95a10c52b9a0ba8db8df4b0e52cbe44b69ffca184fd81343c7b40c31b879e4f","pageId":602,"pageViewId":"3b0396be-d66d-4485-a731-09faadf98c12"}</script> <!-- Recaptcha for contact support form - --> <script defer src="https://www.google.com/recaptcha/api.js?hl=de"></script> <!-- Back to Top Button by Tie Dec 14 2023 --> <script defer>/*<![CDATA[*/ window.onscroll = function () { scrollFunction(); }; function scrollFunction() { if (!document.querySelector(".columbia-article-topic-category")) { const backToTopButton = document.querySelector("#back-to-top-button"); const pageText = document.querySelector(".mt-content-container"); if (pageText.getBoundingClientRect().top < -20) { backToTopButton.style.display = "block"; } else { backToTopButton.style.display = "none"; } } } function scrollToTop() { const pageText = document.querySelector(".mt-content-container"); pageText.scrollIntoView({ behavior: "smooth", block: "start", inline: "nearest", }); } /*]]>*/</script> <!-- Global Responsive Book Functions Added by Tie Jun 14 2023 --> <script>/*<![CDATA[*/ function displaySection(id){ $(".content-section").hide(); $(id).show(); var $menuButton = $('#mobile-menu-toggle'); var $toc = $('.toc-sop'); var $content = $('.content-sop'); if ($(window).scrollTop() > $(".content-sop").offset().top) { $([document.documentElement, document.body]).animate({ scrollTop: $(id).offset().top - 84 }, 100); } $('.toc-sop a').removeClass('selected-chapter'); str1=".toc-sop a[onclick*=\\'\\"; str3="\\']"; fin_str=str1.concat(id,str3); $(fin_str).addClass('selected-chapter'); $menuButton.attr("aria-expanded","false"); $content.attr("data-mobile-visible","true"); $toc.attr("data-mobile-visible","false"); const newURL = new URL(window.location.href); newURL.hash = id; history.pushState({},'',newURL); return false; } function toggleToc(){ var $menuButton = $('#mobile-menu-toggle'); var $toc = $('.toc-sop'); var $content = $('.content-sop'); if ($menuButton.attr("aria-expanded") === "false") { $menuButton.attr("aria-expanded","true"); $content.attr("data-mobile-visible","false"); $toc.attr("data-mobile-visible","true"); } else { $menuButton.attr("aria-expanded","false"); $content.attr("data-mobile-visible","true"); $toc.attr("data-mobile-visible","false"); } } /*]]>*/</script> <!-- Put Page ID on Page Settings Added by Tie Apr 14, 2022 --> <script>/*<![CDATA[*/ document.addEventListener("DOMContentLoaded", function (e) { if (document.querySelector("#mt-summary")) { var pageId = document.querySelector("#mt-summary").dataset.pageId; var text = document.createElement("p"); var box = document.querySelector(".mt-collapsible-section"); text.innerText = `Page ID: ${pageId}`; box.appendChild(text); var line = document.querySelector(".elm-meta-data.elm-meta-top"); if (document.querySelector("#mt-summary")) { line.style.display = "block"; box.appendChild(line); } } }); /*]]>*/</script> <!-- Define Deprecated Video Hiding Function Sitewide Added by Tie Marc 30, 2022 --> <script>/*<![CDATA[*/ function hideDeprecatedVideos() { let thisurl = window.location.href; if (thisurl.includes('Media_Library') || thisurl.includes('/tc') || thisurl.includes('/tutorials')) { $('.deprecated-video').show(); }; } $(function () { if ($('.deprecated-video').length) { hideDeprecatedVideos(); } }) /*]]>*/</script> <!-- Define Sorting functions sitewide Added by Tie Marc 11, 2022 --> <script>/*<![CDATA[*/ const language = 'de-de' //Change this two lines during localization const noAlphabetArray = ['zh-cn']; const compareFun = (a, b) => { return new Intl.Collator(language).compare(a.title, b.title); } let sortTerms = (elementType, section, skipFirst) => { let terms = [...section.querySelectorAll(elementType)] let firstElement = section.firstElementChild; let termHeaders = terms.map(e => e.innerText) let termObject = [] termHeaders.forEach((title, index) => { termObject.push({ title }); termObject[index].header = terms[index]; }); termObject.sort(compareFun); section.innerHTML = ''; if (skipFirst) { section.append(firstElement); } termObject.forEach((element) => { section.append(element.header); }); } const sortItems = (definitionSelector, sortItemSelector, skipFirst = false) => { let definitionsSections = [...document.querySelectorAll(definitionSelector)]; definitionsSections.forEach(section => sortTerms(sortItemSelector, section, skipFirst)); } /*]]>*/</script> <!-- Hide content from other regions Added by Tie Marc 7, 2022 --> <script>/*<![CDATA[*/ function getSubdomain() { let host = window.location.host; let subdomain = host.split(".")[0]; return subdomain; } function getLocaleBySubdomain(subdomain) { if (subdomain == "de") { return "de-de"; } if (subdomain == "es") { return "es-419"; } if (subdomain == "fr") { return "fr-fr"; } if (subdomain == "support") { return "en-us"; } return subdomain; } function getAllLocales() { var listedLocales = $(".localization-group") .map(function () { return $(this).data("locale"); }) .get(); return listedLocales; } function hideOtherLocales() { const subdomain = getSubdomain(); const locale = getLocaleBySubdomain(subdomain); let styleElement = document.createElement("style"); styleElement.setAttribute("type", "text/css"); styleElement.innerText = `.localization-group:not([data-locale*='${locale}']) {\ndisplay: none;\n}\n`; styleElement.innerText += '.localization-group[data-locale="else"] {\ndisplay: unset;\n}'; styleElement.innerText += `.localization-group[data-locale*="${locale}"] ~ .localization-group[data-locale="else"] {\ndisplay: none;\n}`; document.head.appendChild(styleElement); } $(function () { hideOtherLocales(); }) /*]]>*/</script> <!-- Collapsible Content. Added by Tie Apr 21, 2020 --> <script>/*<![CDATA[*/ $(window).on('load', function(e){ $('.collapsible').find('.trigger').on('click',function(){ $(this).closest('.collapsible').find('.col_content').slideToggle('350'); if ($(this).find('.arrowclass').hasClass('fa-chevron-circle-right')){ $(this).find('.arrowclass').removeClass('fas fa-chevron-circle-right'); $(this).find('.arrowclass').addClass('fas fa-chevron-circle-down'); } else if ($(this).find('.arrowclass').hasClass('fa-chevron-circle-down')){ $(this).find('.arrowclass').removeClass('fas fa-chevron-circle-down'); $(this).find('.arrowclass').addClass('fas fa-chevron-circle-right'); } else if ($(this).find('.arrowclass').hasClass('fa-chevron-right')){ $(this).find('.arrowclass').removeClass('fas fa-chevron-right'); $(this).find('.arrowclass').addClass('fas fa-chevron-down'); } else { $(this).find('.arrowclass').removeClass('fas fa-chevron-down'); $(this).find('.arrowclass').addClass('fas fa-chevron-right'); } }); }); function colex(el) { $(el).closest(".collapsible").find(".col_content").slideToggle("350"); if ($(el).find(".arrowclass").hasClass("fa-chevron-circle-right")) { $(el).find(".arrowclass").removeClass("fas fa-chevron-circle-right"); $(el).find(".arrowclass").addClass("fas fa-chevron-circle-down"); } else if ($(el).find(".arrowclass").hasClass("fa-chevron-circle-down")) { $(el).find(".arrowclass").removeClass("fas fa-chevron-circle-down"); $(el).find(".arrowclass").addClass("fas fa-chevron-circle-right"); } else if ($(el).find(".arrowclass").hasClass("fa-chevron-right")) { $(el).find(".arrowclass").removeClass("fas fa-chevron-right"); $(el).find(".arrowclass").addClass("fas fa-chevron-down"); } else { $(el).find(".arrowclass").removeClass("fas fa-chevron-down"); $(el).find(".arrowclass").addClass("fas fa-chevron-right"); } } /*]]>*/</script> <!-- Start Custom Print Style --> <!-- User ID Tracking. Added by Dean Feb 21, 2018 --> <script>/*<![CDATA[*/document.addEventListener("DOMContentLoaded", function() { var json = JSON.parse(document.getElementById('mt-global-settings').textContent) if (!json['userIsAnonymous']) { var dataLayer = window.dataLayer || {}; dataLayer.push({ 'event': 'setUserId', 'userId': json['userId'] }); window.Procore = window.Procore || {}; window.Procore.metrics = window.Procore.metrics || {}; window.Procore.metrics.user = window.Procore.metrics.user || {}; window.Procore.metrics.user.mtid = json['userId']; } }); /*]]>*/</script> <!-- End User ID Tracking --> <!-- Adobe Launch: Added 9/10/2019 by Joshua Bradley --> <script src="//assets.adobedtm.com/launch-EN162b61ce5645478888c92738b130b2f3.min.js" async="async"></script> <!-- End Adobe Launch--> <!-- Google Tag Manager --> <script>/*<![CDATA[*/(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-NWZQ5W6');/*]]>*/</script> <!-- End Google Tag Manager --> <!-- Start Typography --> <link rel="stylesheet" type="text/css" href="https://cloud.typography.com/6912732/682666/css/fonts.css"> <link rel="stylesheet" type="text/css" href="https://mkt-cdn.procore.com/fonts/sctogrotesk/sctogrotesk.css"> <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet" as="style"> <!-- End Typography --> <!-- Start of FontAwesome --> <link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet"> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous"> <!-- End of FontAwesome --> <!-- Start Service Cloud Header for Ticket Form --> <!-- End Service Cloud Header for Ticket Form --> <!-- Start Service Cloud Deployment Code for Live Agent - SnapIn Widget --> <!-- INACTIVE UNTIL FURTHER NOTICE --> <!-- End Service Cloud Deployment Code for Live Agent - SnapIn Widget --> <!-- Start Service Cloud Deployment Code for Live Agent Widget --> <!-- INACTIVE UNTIL FURTHER NOTICE --> <!-- End Service Cloud Deployment Code for Live Agent Widget --> <!--BEGIN QUALTRICS WEBSITE FEEDBACK SNIPPET--> <!-- INACTIVE UNTIL FURTHER NOTICE --> <!--END QUALTRICS WEBSITE FEEDBACK SNIPPET--> <!-- OneTrust Cookies Consent Notice start for procore.com --> <script src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" type="text/javascript" charset="UTF-8" data-domain-script="cbdfc14e-1f05-4d37-82a6-11d3228b4df5"></script> <script type="text/javascript">/*<![CDATA[*/ function OptanonWrapper() { } /*]]>*/</script> <!-- OneTrust Cookies Consent Notice end for procore.com --> </head> <body class="columbia-page-main columbia-article-faq columbia-breadcrumb-home-faq-how-do-the-change-event-tools-column-display-settings-work columbia-live no-touch columbia-lang-de-de columbia-skin-grape"> <div class="grape-messaging"> </div> <div class="grape-header-custom"> <div class="mt-custom-header-div"><div class="mt-custom-header-container"><div class="mt-custom-header-logo"><a target="_self" href="https://de.support.procore.com/" rel="internal"><img src="https://de.support.procore.com/@api/deki/site/logo.png?default=https://a.mtstatic.com/skins/common/logo/logo.png%3F_%3Da97de9e640dec836ce36fd7e1c341ae98d5ae1fb:site_13855" /><span id="support-logo">Support</span></a></div><ul class="mt-custom-header-right"><li class="mt-custom-header-marketing"><a target="_blank" href="https://www.procore.com/de?journey=supporttoprocore" rel="external noopener nofollow" class="link-https">procore.com</a></li><li class="dropdown dropdown-hover"><a href="#" class="dropdown-toggle mt-icon-earth mt-icon-arrow-down7" role="button"> Deutschland (Deutsch)</a><ul class="dropdown-menu" id="lang-dd" style="display: none;"><li><a target="_self" href="https://es.support.procore.com/" rel="external nofollow" class="link-https">América Latina (Español)</a></li><li><a target="_self" href="https://en-au.support.procore.com/" rel="external nofollow" class="link-https">Australia (English)</a></li><li><a target="_self" href="https://pt-br.support.procore.com/" rel="external nofollow" class="link-https">Brasil (Português)</a></li><li><a target="_self" href="https://en-ca.support.procore.com/" rel="external nofollow" class="link-https">Canada (English)</a></li><li><a target="_self" href="https://fr-ca.support.procore.com/" rel="external nofollow" class="link-https">Canada (Français)</a></li><li><a target="_self" class="internal" href="https://de.support.procore.com/" rel="internal">Deutschland (Deutsch)</a></li><li><a target="_self" href="https://es-es.support.procore.com/" rel="external nofollow" class="link-https">España (Español)</a></li><li><a target="_self" href="https://fr.support.procore.com/" rel="external nofollow" class="link-https">France (Français)</a></li><li><a target="_self" href="https://en-gb.support.procore.com/" rel="external nofollow" class="link-https">United Kingdom (English)</a></li><li><a target="_self" href="https://support.procore.com/" rel="external nofollow" class="link-https">United States (English)</a></li><li><a target="_self" href="https://zh-sg.support.procore.com/" rel="external nofollow" class="link-https">新加坡(简体中文)</a></li><li><a target="_self" href="https://ja-jp.support.procore.com/" rel="external nofollow" class="link-https">日本(日本語)</a></li></ul></li><li class="mt-custom-header-listitem"><a target="_blank" href="https://de.support.procore.com/references/contact-support" rel="internal">Kontakt</a></li><li class="mt-custom-header-listitem-login"><a target="_blank" href="https://app.procore.com?journey=supporttologin" rel="external noopener nofollow" class="link-https">Procore-App-Anmeldung</a></li></ul></div></div><div class="mt-prepend-home mt-custom-home elm-nav" id="header-search"><div class="elm-nav-container"><script type="application/json" id="mt-localizations-help-widget">/*<![CDATA[*/{"Help.Widget.button.text":"Suchen","Help.Widget.label.text":"Suchanfrage","Help.Widget.placeholder.text":"Wie k\u00f6nnen wir Ihnen helfen?"}/*]]>*/</script><div class="mt-inputredirect" data-query-key="q" data-path=""></div></div></div> <script type="text/javascript">/*<![CDATA[*/ $(document).ready(function(){ $('.mt-custom-header-right .dropdown').hover(function(){ $(this).children('.dropdown-menu').toggle(); }) });/*]]>*/</script> <script type="text/javascript">/*<![CDATA[*/ /* Adds Training Center Help action to Pro Member Nav. Dean Jan 11, 2018 */ $(document).ready(function(){ $('.elm-header-user-nav.elm-nav .elm-nav-container>ol').prepend('<li><a class="mt-icon-editor-training-link" style="display:inline" target="_blank" href="/tc/1-Author_Training_Center_Documentation">Training Center Help</a></li>'); });/*]]>*/</script> </div> <div class="grape-header grape-wrapper"> <div class="grape-header-container grape-wrapper-container"> <div class="grape-site-logo"> <a class="logo-anonymous" href="/" title="Procore"> <img class="mt-cdn" src="https://a.mtstatic.com/@public/production/site_13855/1681517908-logo.png" alt="Procore" title="Procore"> </a> </div> <div class="grape-site-navigation"> <ul class="mt-site-nav"> <li class="mt-login-sign-in"> <a class="mt-icon-quick-sign-in" href="https://de.support.procore.com/Special:AuthenticationProviders?returntotitle=faq%2Fhow-do-the-change-event-tools-column-display-settings-work" title="Anmelden"> Anmelden </a> </li> <li class="mt-login-forgot-password"> <a class="mt-icon-login-forgot-password" href="https://de.support.procore.com/Special:UserPassword" title="Vergessenes Passwort anfordern"> Passwort vergessen </a> </li> </ul> </div> <div class="grape-site-search"> <div class="mt-quick-search-container"> <form action="/Special:Search"> <input name="path" id="mt-search-path" type="hidden" value="" /> <label class="mt-label" for="mt-site-search-input"> Suchen </label> <input class="mt-text mt-search search-field" name="q" id="mt-site-search-input" placeholder="Wie k枚nnen wir Ihnen helfen?" type="search" /> <button class="mt-button ui-button-icon mt-icon-site-search-button search-button" type="submit"> Suchen </button> </form> </div> </div> </div> <div class="grape-site-nav grape-wrapper-container"> <ul class="mt-breadcrumbs"> <li> <a href="https://de.support.procore.com/"> <span class="mt-icon-article-category mt-icon-article-home"></span> Home </a> </li> <li> <a href="https://de.support.procore.com/faq"> <span class="mt-icon-article-guide"></span> FAQ </a> </li> </ul> </div> </div> <div class="grape-content grape-wrapper"> <div class="grape-content-container grape-wrapper-container"> <div id="flash-messages"><div class="dekiFlash"></div></div> <h1 id="title" class="no-edit" style="visibility: visible;"> Wie funktionieren die Spaltenanzeigeeinstellungen des 脛nderungen-Tools? </h1> <div class="mt-last-updated"> <strong>Last updated:</strong> <span class="modified mt-last-updated-timestamp" data-timestamp="2024-03-14T02:57:29Z"></span> </div> <div class="mt-content-header"></div> <div class="mt-content-side"></div> <div id="mt-toc-container" data-title="Inhaltsangabe" data-collapsed="true"> <button class="mt-toggle mt-summary-toggle ui-button-icon mt-toggle-expand">Inhaltsangabe</button> <div class="mt-toc-content mt-collapsible-section mt-toc-hide"> <ol><li><a href="#Antwort" rel="internal">Antwort</a></li><li><a href="#Siehe_auch" rel="internal">Siehe auch</a></li><li><a href="#" rel="internal"> </a></li></ol> </div> </div> <div id="page-top"> <div id="topic"> <div id="pageText"> <div mt-section-origin="faq/how-do-the-change-event-tools-column-display-settings-work" class="mt-section" id="section_1"><span id="Antwort"></span><h2 class="editable">Antwort</h2> <p>Die Kontrollkästchen „Spaltenanzeige“ auf der Seite „Einstellungen konfigurieren“ des Tools „Änderungen“ steuern, welche Spalten auf der Registerkarte „Details“ des Tools „Änderungen“ verfügbar sind. Ein Häkchen im Kästchen zeigt an, dass die Einstellung aktiviert ist und die dieser Einstellung zugeordneten Spalten aktiviert sind. Um eine (oder beide) Einstellungen zu deaktivieren, entfernen Sie das bzw. die Häkchen aus dem bzw. den Kästchen.</p> <p>Bei neuen Procore-Projekten werden die folgenden Standardeinstellungen für die „Spaltenanzeige“ verwendet:</p> <ul> <li><strong>Die Anzeige der Spalten „Umsatzgrößenordnung“, „Aktueller Preis“, „Aktuelle Kosten“ und „Über/Unter“</strong> ist aktiviert.Diese Optionen bieten Ihnen einen besseren Einblick in die potenziellen Einnahmen Ihres Projekts, indem sie die Spalte Umsatzrichtwert anzeigen. Außerdem können Sie die neuesten Preis- und Kostenprojekte im Auge behalten (Latest Price/Latest Cost). Darüber hinaus können Sie prognostizierte Einsparungen und Verluste besser verwalten, indem Sie die Differenz zwischen dem letzten Preis (einschließlich Aufschlag) und den letzten Kosten innerhalb eines Änderungsereignisses mithilfe der Spalten vsl. Abweichung messen. Wichtige Informationen zu dieser Einstellung finden Sie unter <a title="Konfigurieren von Einstellungen: Änderungen" href="https://de.support.procore.com/products/online/user-guide/project-level/change-events/tutorials/configure-advanced-settings-change-events" rel="internal">Einstellungen konfigurieren: Änderungsereignisse</a>. </li> <li><strong>Die Spalten Maßeinheit, Erlösmenge, Erlösstückkosten, Richtwert-Stückkosten und Richtwert-Stückkosten anzeigen</strong> ist AUS. Mit dieser Einstellung können Sie die stückbasierten Spalten für das Tool aktivieren. Weitere Informationen zu dieser Einstellung finden Sie unter <a title="Aktivieren/Deaktivieren der einheitenbasierten Spalten im Änderungen-Tool" href="https://de.support.procore.com/products/online/user-guide/project-level/change-events/tutorials/enable-disable-the-unit-based-columns-on-the-change-events-tool" rel="internal">Aktivieren/Deaktivieren der stückbasierten Spalten im Ereignis-Tool ändern</a>.</li> </ul> <p>Klicken Sie immer auf „Speichern“, nachdem Sie die Einstellungen des Tools geändert haben. Anweisungen finden Sie unter <a title="Konfigurieren von Einstellungen: Änderungen" href="https://de.support.procore.com/products/online/user-guide/project-level/change-events/tutorials/configure-advanced-settings-change-events" rel="internal">Einstellungen konfigurieren: Änderungen</a>.</p> <p><img alt="ce-column-display-ab.png" class="internal default" loading="lazy" src="https://de.support.procore.com/@api/deki/files/439/ce-column-display-ab.png?revision=1" /></p> <p>Die folgende Tabelle zeigt, welche Spalten für jede Einstellungskombination verfügbar sind:</p> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1182px;"> <thead> <tr> <th style="width:361px;">Spalte</th> <th style="text-align:center;">A & B aktiviert</th> <th style="text-align:center;width:199px;">A & B deaktiviert</th> <th style="width:202px;text-align:center;">Nur A aktiviert</th> <th style="width:215px;text-align:center;">Nur B aktiviert</th> </tr> </thead> <tbody> <tr> <td style="width:355px;text-align:left;">Teilprojekt</td> <td><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /> <a title="Wie funktionieren die Spaltenanzeigeeinstellungen des Änderungen-Tools?" class="mt-self-link" href="#foot-1" rel="internal"><sup>1</sup></a></td> <td style="width:199px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /> <a title="Wie funktionieren die Spaltenanzeigeeinstellungen des Änderungen-Tools?" class="mt-self-link" href="#foot-1" rel="internal"><sup>1</sup></a></td> <td style="width:202px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /> <a title="Wie funktionieren die Spaltenanzeigeeinstellungen des Änderungen-Tools?" class="mt-self-link" href="#foot-1" rel="internal"><sup>1</sup></a></td> <td style="width:215px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /> <a title="Wie funktionieren die Spaltenanzeigeeinstellungen des Änderungen-Tools?" class="mt-self-link" href="#foot-1" rel="internal"><sup>1</sup></a></td> </tr> <tr> <td style="width:355px;text-align:left;">Kostenschlüssel</td> <td><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:199px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:202px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:215px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td style="width:355px;text-align:left;">Kostenart</td> <td><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:199px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:202px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:215px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td style="width:355px;text-align:left;">Beschreibung</td> <td><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:199px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:202px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:215px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td style="width:355px;text-align:left;">Lieferant</td> <td><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:199px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:202px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:215px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td style="width:355px;text-align:left;">Vertrag</td> <td><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:199px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:202px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:215px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td style="width:355px;text-align:left;">Maßeinheit</td> <td><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:199px;"> </td> <td style="width:202px;"> </td> <td style="width:215px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td style="width:355px;text-align:left;">Produktionsmenge</td> <td><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /> <a title="Wie funktionieren die Spaltenanzeigeeinstellungen des Änderungen-Tools?" class="mt-self-link" href="#foot-2" rel="internal"><sup>2</sup></a></td> <td style="width:199px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /> <a title="Wie funktionieren die Spaltenanzeigeeinstellungen des Änderungen-Tools?" class="mt-self-link" href="#foot-2" rel="internal"><sup>2</sup></a></td> <td style="width:202px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /> <a title="Wie funktionieren die Spaltenanzeigeeinstellungen des Änderungen-Tools?" class="mt-self-link" href="#foot-2" rel="internal"><sup>2</sup></a></td> <td style="width:215px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /> <a title="Wie funktionieren die Spaltenanzeigeeinstellungen des Änderungen-Tools?" class="mt-self-link" href="#foot-2" rel="internal"><sup>2</sup></a></td> </tr> <tr> <td style="width:355px;text-align:left;">Produktions-ME</td> <td><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /> <a title="Wie funktionieren die Spaltenanzeigeeinstellungen des Änderungen-Tools?" class="mt-self-link" href="#foot-2" rel="internal"><sup>2</sup></a></td> <td style="width:199px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /> <a title="Wie funktionieren die Spaltenanzeigeeinstellungen des Änderungen-Tools?" class="mt-self-link" href="#foot-2" rel="internal"><sup>2</sup></a></td> <td style="width:202px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /> <a title="Wie funktionieren die Spaltenanzeigeeinstellungen des Änderungen-Tools?" class="mt-self-link" href="#foot-2" rel="internal"><sup>2</sup></a></td> <td style="width:215px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /> <a title="Wie funktionieren die Spaltenanzeigeeinstellungen des Änderungen-Tools?" class="mt-self-link" href="#foot-2" rel="internal"><sup>2</sup></a></td> </tr> <tr> <td style="width:355px;text-align:left;">Umsatz: Stückmenge</td> <td><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:199px;"> </td> <td style="width:202px;"> </td> <td style="width:215px;"> </td> </tr> <tr> <td style="width:355px;text-align:left;">Umsatz: Stückkosten</td> <td><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:199px;"> </td> <td style="width:202px;"> </td> <td style="width:215px;"> </td> </tr> <tr> <td style="width:355px;text-align:left;">Umsatz: Größenordnung</td> <td><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:199px;"> </td> <td style="width:202px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:215px;"> </td> </tr> <tr> <td style="width:355px;text-align:left;">Umsatz: PÄAHV</td> <td><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:199px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:202px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:215px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td style="width:355px;text-align:left;">Umsatz: Aktueller Preis</td> <td><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:199px;"> </td> <td style="width:202px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:215px;"> </td> </tr> <tr> <td style="width:355px;text-align:left;">Kosten: Stückmenge</td> <td><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:199px;"> </td> <td style="width:202px;"> </td> <td style="width:215px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td style="width:355px;text-align:left;">Kosten: Stückkosten</td> <td><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:199px;"> </td> <td style="width:202px;"> </td> <td style="width:215px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td style="width:355px;text-align:left;">Kosten: Größenordnung</td> <td><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:199px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:202px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:215px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td style="width:355px;text-align:left;">Kosten: RFQ</td> <td><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:199px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:202px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:215px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td style="width:355px;text-align:left;">Kosten: Sekundärvertrag</td> <td><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:199px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:202px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:215px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td style="width:355px;text-align:left;">Kosten: Nicht gebunden</td> <td><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /> <a title="Wie funktionieren die Spaltenanzeigeeinstellungen des Änderungen-Tools?" class="mt-self-link" href="#foot-3" rel="internal"><sup>3</sup></a></td> <td style="width:199px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /> <a title="Wie funktionieren die Spaltenanzeigeeinstellungen des Änderungen-Tools?" class="mt-self-link" href="#foot-3" rel="internal"><sup>3</sup></a></td> <td style="width:202px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /> <a title="Wie funktionieren die Spaltenanzeigeeinstellungen des Änderungen-Tools?" class="mt-self-link" href="#foot-3" rel="internal"><sup>3</sup></a></td> <td style="width:215px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /> <a title="Wie funktionieren die Spaltenanzeigeeinstellungen des Änderungen-Tools?" class="mt-self-link" href="#foot-3" rel="internal"><sup>3</sup></a></td> </tr> <tr> <td style="width:355px;text-align:left;">Kosten: Aktuelle Kosten</td> <td><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:199px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:202px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:215px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td style="width:355px;text-align:left;">Über/unter</td> <td><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:199px;"> </td> <td style="width:202px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:215px;"> </td> </tr> <tr> <td style="width:355px;text-align:left;"> <p><legacy-tag>Alte Version</legacy-tag> Budgetänderung</p> </td> <td><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:199px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:202px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td style="width:215px;"><img class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" alt="icon-mindtouch-table-check.png" loading="lazy" src="https://de.support.procore.com/@api/deki/files/11063/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> </tbody> </table> <p><sup><a id="foot-1" name="foot-1"></a>1</sup> Sie müssen die Spalte „Subunternehmer-Projekte“ separat aktivieren/deaktivieren. Anweisungen finden Sie unter <a title="Unteraufträge auf Projekten für PSP aktivieren" href="https://de.support.procore.com/products/online/user-guide/company-level/admin/tutorials/enable-sub-jobs-on-projects-for-wbs" rel="internal">Subunternehmer-Projekte auf dem Projektstrukturplan aktivieren</a>. </p> <p><sup><a id="foot-2" name="foot-2"></a>2</sup> Sie müssen die Spalten „Produktionsmenge“ und „Maßeinheit der Produktion“ separat aktivieren. Anweisungen finden Sie unter <a title="Aktivieren der Funktionen der Arbeitsproduktivitätskosten für Project Financials" href="https://de.support.procore.com/products/online/user-guide/project-level/admin/tutorials/enable-the-labor-productivity-cost-features-for-project-financials" rel="internal">Aktivieren der Funktionen der Arbeitsproduktivitätskosten für Project Financials</a>.</p> <p><sup><a id="foot-3" name="foot-3"></a>3</sup> Sie müssen die Spalte „Nicht gebundene Kosten“ separat aktivieren. Anweisungen finden Sie unter <a title="Wie verfolge ich nicht gebundene Kosten bei einer Änderung?" href="https://de.support.procore.com/faq/how-do-i-track-non-commitment-costs-on-a-change-event" rel="internal">Wie verfolge ich nicht gebundene Kosten bei einer Änderung?</a> </p> </div><div mt-section-origin="faq/how-do-the-change-event-tools-column-display-settings-work" class="mt-section" id="section_2"><span id="Siehe_auch"></span><h2 class="editable">Siehe auch</h2> <ul> <li><a title="Konfigurieren von Einstellungen: Änderungen" href="https://de.support.procore.com/products/online/user-guide/project-level/change-events/tutorials/configure-advanced-settings-change-events" rel="internal">Konfigurieren von Einstellungen: Änderungen</a></li> <li><a title="Aktivieren/Deaktivieren der einheitenbasierten Spalten im Änderungen-Tool" href="https://de.support.procore.com/products/online/user-guide/project-level/change-events/tutorials/enable-disable-the-unit-based-columns-on-the-change-events-tool" rel="internal">Aktivieren/Deaktivieren der einheitenbasierten Spalten im Änderungen-Tool</a></li> </ul> </div><div mt-section-origin="faq/how-do-the-change-event-tools-column-display-settings-work" class="mt-section" id="section_3"><span id=""></span><h2 class="editable"> </h2> <style>/*<![CDATA[*/body #deki-page-title::before {content: url("/@api/deki/pages/:ccaec8e887044385a1dfc2a3a0f71434/files/=tool-icon_faq.png");}/*]]>*/</style> <div class="mt-contentreuse-widget" data-page="Media_Library/Language_Specific_Media/Reusable_Snippets/Marketing_Snippet" data-section="Änderungsereignisse" data-show="false"> </div> </div></div> </div> </div> <div class="mt-content-footer"></div> <ol class="grape-meta-data grape-meta-article-navigation"> <li class="grape-back-to-top"><a class="mt-icon-back-to-top" href="#title" id="mt-back-to-top" title="Zur眉ckspringen an den Anfgang dieses Artikels">Zur眉ck zum Anfang</a></li> <li class="grape-article-pagination"><ul class="mt-article-pagination"> <li class="mt-pagination-previous"> <a class="mt-icon-previous-article" href="https://de.support.procore.com/faq/how-do-permissions-work-in-the-document-management-tool" title="Wie funktionieren die Berechtigungen im Dokumentenmanagement-Tool?"><span>Wie funktionieren die Berechtigungen im Dokumentenmanagement-Tool?</span></a> </li> <li class="mt-pagination-next"> <a class="mt-icon-next-article" href="https://de.support.procore.com/faq/how-does-data-entry-differ-between-punch-items-created-with-manual-input-and-punch-items-created-with-quick-capture" title="Wie unterscheidet sich die Dateneingabe zwischen M盲ngeln, die manuell erstellt wurden, und M盲ngeln, die mit Quick Capture erstellt wurden?"><span>Wie unterscheidet sich die Dateneingabe zwischen M盲ngeln, die manuell erstellt wurden, und M盲ngeln, die mit Quick Capture erstellt wurden?</span></a> </li> </ul> </li> </ol> </div> </div> <div class="grape-footer grape-wrapper"> <div class="grape-wrapper-container"> <ol> <li class="grape-footer-copyright">© Urheberrecht 2025 Procore</li> <li class="grape-footer-powered-by"><a href="https://mindtouch.com/demo" class="mt-poweredby product " title="MindTouch" target="_blank"> Bereitgestellt von CXone Expert <span class="mt-registered">®</span> </a></li> </ol> </div> </div> <div class="grape-footer-custom"> <div class="mt-custom-footer-container"><div class="mt-custom-footer-left"><ul class="mt-custom-footer-links"><li class="mt-custom-footer-link"><a target="_blank" href="https://www.linkedin.com/company/procore-technologies" rel="external noopener nofollow" class="mt-icon-linkedin2 link-https"></a></li><li class="mt-custom-footer-link"><a target="_blank" href="https://www.facebook.com/procore.tech" rel="external noopener nofollow" class="mt-icon-facebook5 link-https"></a></li><li class="mt-custom-footer-link"><a target="_blank" href="https://www.twitter.com/procoretech" rel="external noopener nofollow" class="mt-icon-twitter4 link-https"></a></li><li class="mt-custom-footer-link"><a target="_blank" href="https://www.instagram.com/procoretech" rel="external noopener nofollow" class="mt-icon-instagram3 link-https"></a></li><li class="mt-custom-footer-link"><a target="_blank" href="https://www.youtube.com/user/ProcoreVideo" rel="external noopener nofollow" class="mt-icon-youtube link-https"></a></li></ul></div><div class="mt-custom-footer-right"><div class="mt-custom-footer-copyright"><span>© 2025 Procore Technologies, Inc.</span></div><ul class="mt-custom-footer-links"><li class="mt-custom-footer-link"><a href="https://www.procore.com/legal/privacy" target="_blank" rel="external noopener nofollow" class="link-https">Datenschutzerklärung</a></li><li class="mt-custom-footer-link"><a href="https://www.procore.com/legal/terms-of-service" target="_blank" rel="external noopener nofollow" class="link-https">Nutzungsbedingungen</a></li><li class="mt-custom-footer-link"><a href="https://www.procore.com/de" target="_blank" rel="external noopener nofollow" class="link-https">procore.com</a></li><li class="mt-custom-footer-link" id="last-item"><a href="https://app.procore.com/mindtouch/auth" target="_blank" rel="external noopener nofollow" class="link-https">Anmelden</a></li></ul></div></div> <script type="text/javascript">/*<![CDATA[*/ <!-- Change default from Draft to Live in Edit and New screens. Added by Dean May 13, 2020 --> $("a.mt-icon-new-page").click(function () { setTimeout( function () { $("label[for='mt-new-templates-create-live']").click(); }, 10000); });/*]]>*/</script> </div> <script type="text/javascript" data-mindtouch-module="true" src="https://a.mtstatic.com/deki/javascript/out/standalone/ui.widget.helpWidget.js?_=a97de9e640dec836ce36fd7e1c341ae98d5ae1fb:site_13855"></script><!-- Scroll to Top Button --> <div><button id="back-to-top-button" onclick="scrollToTop()"><i class="fa fa-angle-up">‌‍​</i></button></div> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NWZQ5W6" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <!-- Start of Procore Service Cloud Live Code Snippet --> <!-- INACTIVE UNTIL FURTHER NOTICE --> <!-- End of Procore Service Cloud Live Code Snippet --> </body> </html>