CINXE.COM
常见问题 - 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>常见问题 - Procore</title> <link media="screen" type="text/css" rel="stylesheet" href="https://a.mtstatic.com/@cache/layout/legacy.css?_=75fef7c1c280bc523aee48c372b85124_emgtc2cuc3VwcG9ydC5wcm9jb3JlLmNvbQ==:site_13854" id="mt-screen-css" /> <link media="print" type="text/css" rel="stylesheet" href="https://a.mtstatic.com/@cache/layout/print.css?_=4d4c5928f9db60daf49822bee47dd577:site_13854" id="mt-print-css" /> <script type="text/javascript" nonce="4611bcbebd9a57e5b88be1e29a3e6833c2e760b68e02d459d7cd9c0af2d8479c" src="https://a.mtstatic.com/deki/javascript/out/grape.min.js?_=647fae4d53b67bf67f97afdb98fefc6d58c17cd7:site_13854"></script><script type="application/json" id="mt-global-settings" nonce="4611bcbebd9a57e5b88be1e29a3e6833c2e760b68e02d459d7cd9c0af2d8479c">{"apiToken":"xhr_2_1743225157_650cad15293a33e0bc82afc947bc3eb907191340a6c7c7f64e5b85af6447d3f1","pageId":3071,"pageViewId":"a2d52ed1-0812-49c5-baa5-b5742fad2329"}</script> <!-- Recaptcha for contact support form - --> <script defer src="https://www.google.com/recaptcha/api.js"></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 = 'zh-cn' //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 --> <!-- 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-topic-guide columbia-breadcrumb-home-faq columbia-live no-touch columbia-lang-zh-cn 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://zh-sg.support.procore.com/" rel="internal"><img src="https://zh-sg.support.procore.com/@api/deki/site/logo.png?default=https://a.mtstatic.com/skins/common/logo/logo.png%3F_%3D647fae4d53b67bf67f97afdb98fefc6d58c17cd7:site_13854" /><span id="support-logo">支持</span></a></div><ul class="mt-custom-header-right"><li class="mt-custom-header-marketing"><a target="_blank" href="https://www.procore.com/en-sg?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"> 新加坡(简体中文)</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" href="https://de.support.procore.com/" rel="external nofollow" class="link-https">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" class="internal" href="https://zh-sg.support.procore.com/" rel="internal">新加坡(简体中文)</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://zh-sg.support.procore.com/references/contact-support" rel="internal">联系人</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 应用</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":"\u641c\u7d22","Help.Widget.label.text":"\u67e5\u8be2","Help.Widget.placeholder.text":"\u6211\u4eec\u80fd\u4e3a\u4f60\u63d0\u4f9b\u54ea\u4e9b\u5e2e\u52a9\uff1f"}/*]]>*/</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_13854/1681518206-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://zh-sg.support.procore.com/Special:AuthenticationProviders?returntotitle=faq" title="登录"> 登录 </a> </li> <li class="mt-login-forgot-password"> <a class="mt-icon-login-forgot-password" href="https://zh-sg.support.procore.com/Special:UserPassword" title="找回丢失的密码"> 忘记密码 </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"> 搜索 </label> <input class="mt-text mt-search search-field" name="q" id="mt-site-search-input" placeholder="我们可如何帮助您?" type="search" /> <button class="mt-button ui-button-icon mt-icon-site-search-button search-button" type="submit"> 搜索 </button> </form> </div> </div> </div> <div class="grape-site-nav grape-wrapper-container"> <ul class="mt-breadcrumbs"> <li> <a href="https://zh-sg.support.procore.com/"> <span class="mt-icon-article-category mt-icon-article-home"></span> Home </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;"> 常见问题 </h1> <div class="mt-last-updated"> <strong>Last updated:</strong> <span class="modified mt-last-updated-timestamp" data-timestamp="2021-12-15T16:43:26Z"></span> </div> <div class="mt-content-header"></div> <div class="mt-content-side"></div> <div id="mt-toc-container" data-title="目录" data-collapsed="true"> <button class="mt-toggle mt-summary-toggle ui-button-icon mt-toggle-expand">目录</button> <div class="mt-toc-content mt-collapsible-section mt-toc-hide"> <ol><li><a href="#.E6.9C.80.E7.83.AD.E9.97.A8" rel="internal">最热门</a></li><li><a href="#.E6.9C.80.E9.AB.98.E8.AF.84.E5.88.86" rel="internal">最高评分</a></li><li><a href="#.E6.9C.80.E8.BF.91.E6.9B.B4.E6.96.B0" rel="internal">最近更新</a></li><li><a href="#.E6.9C.80.E8.BF.91.E6.B7.BB.E5.8A.A0" rel="internal">最近添加</a></li><li><a href="#action-plan" rel="internal">action-plan</a></li><li><a href="#action-plans" rel="internal">action-plans</a></li><li><a href="#acumatica" rel="internal">acumatica</a></li><li><a href="#acumatica-edge" rel="internal">acumatica-edge</a></li><li><a href="#acumatica-vision" rel="internal">acumatica-vision</a></li><li><a href="#admin" rel="internal">admin</a></li><li><a href="#analytics-2.0" rel="internal">analytics-2.0</a></li><li><a href="#app_management" rel="internal">app management</a></li><li><a href="#architect" rel="internal">architect</a></li><li><a href="#asta" rel="internal">asta</a></li><li><a href="#azure" rel="internal">azure</a></li><li><a href="#azure-idp" rel="internal">azure-idp</a></li><li><a href="#azure-sp" rel="internal">azure-sp</a></li><li><a href="#bid-board" rel="internal">bid-board</a></li><li><a href="#bidding" rel="internal">bidding</a></li><li><a href="#bid-mgmt-2.0" rel="internal">bid-mgmt-2.0</a></li><li><a href="#bluebeam" rel="internal">bluebeam</a></li><li><a href="#budget" rel="internal">budget</a></li><li><a href="#capital-planning" rel="internal">capital-planning</a></li><li><a href="#certification" rel="internal">certification</a></li><li><a href="#change-events" rel="internal">change-events</a></li><li><a href="#change-orders" rel="internal">change-orders</a></li><li><a href="#client-contracts" rel="internal">client-contracts</a></li><li><a href="#cmic" rel="internal">cmic</a></li><li><a href="#commitments" rel="internal">commitments</a></li><li><a href="#company-admin" rel="internal">company-admin</a></li><li><a href="#company-administrator" rel="internal">company-administrator</a></li><li><a href="#company-directory" rel="internal">company-directory</a></li><li><a href="#company-documents" rel="internal">company-documents</a></li><li><a href="#company-timesheets" rel="internal">company-timesheets</a></li><li><a href="#connection-manager" rel="internal">connection-manager</a></li><li><a href="#continuing_education" rel="internal">continuing education</a></li><li><a href="#conversations" rel="internal">conversations</a></li><li><a href="#coordination-issues" rel="internal">coordination-issues</a></li><li><a href="#correspondence" rel="internal">correspondence</a></li><li><a href="#cost-catalog" rel="internal">cost-catalog</a></li><li><a href="#crews" rel="internal">crews</a></li><li><a href="#custom_report" rel="internal">custom report</a></li><li><a href="#custom-solutions" rel="internal">custom-solutions</a></li><li><a href="#daily-log" rel="internal">daily-log</a></li><li><a href="#direct-costs" rel="internal">direct-costs</a></li><li><a href="#directory" rel="internal">directory</a></li><li><a href="#doc-mgmt" rel="internal">doc-mgmt</a></li><li><a href="#documents" rel="internal">documents</a></li><li><a href="#docusign" rel="internal">docusign</a></li><li><a href="#do-not-migrate" rel="internal">do-not-migrate</a></li><li><a href="#drawings" rel="internal">drawings</a></li><li><a href="#email" rel="internal">email</a></li><li><a href="#emails" rel="internal">emails</a></li><li><a href="#engineer" rel="internal">engineer</a></li><li><a href="#equipment" rel="internal">equipment</a></li><li><a href="#erp" rel="internal">erp</a></li><li><a href="#estimating" rel="internal">estimating</a></li><li><a href="#faq" rel="internal">faq</a></li><li><a href="#forms" rel="internal">forms</a></li><li><a href="#free-account" rel="internal">free-account</a></li><li><a href="#free-procore-account" rel="internal">free-procore-account</a></li><li><a href="#funding" rel="internal">funding</a></li><li><a href="#generic-faq" rel="internal">generic-faq</a></li><li><a href="#google-sso" rel="internal">google-sso</a></li><li><a href="#home" rel="internal">home</a></li><li><a href="#in-app-link" rel="internal">in-app-link</a></li><li><a href="#incident_management" rel="internal">incident management</a></li><li><a href="#incidents" rel="internal">incidents</a></li><li><a href="#insights" rel="internal">insights</a></li><li><a href="#inspections" rel="internal">inspections</a></li><li><a href="#instructions" rel="internal">instructions</a></li><li><a href="#invoice-contact" rel="internal">invoice-contact</a></li><li><a href="#invoices" rel="internal">invoices</a></li><li><a href="#invoicing" rel="internal">invoicing</a></li><li><a href="#jobpac" rel="internal">jobpac</a></li><li><a href="#meetings" rel="internal">meetings</a></li><li><a href="#mobile-android" rel="internal">mobile-android</a></li><li><a href="#mobile-ios" rel="internal">mobile-ios</a></li><li><a href="#models" rel="internal">models</a></li><li><a href="#mri-projfin" rel="internal">mri-projfin</a></li><li><a href="#ms-project" rel="internal">ms-project</a></li><li><a href="#myob" rel="internal">myob</a></li><li><a href="#mytime" rel="internal">mytime</a></li><li><a href="#my-time" rel="internal">my-time</a></li><li><a href="#netsuite" rel="internal">netsuite</a></li><li><a href="#observations" rel="internal">observations</a></li><li><a href="#okta" rel="internal">okta</a></li><li><a href="#okta-idp" rel="internal">okta-idp</a></li><li><a href="#okta-sp" rel="internal">okta-sp</a></li><li><a href="#onelogin" rel="internal">onelogin</a></li><li><a href="#onelogin-idp" rel="internal">onelogin-idp</a></li><li><a href="#onelogin-sp" rel="internal">onelogin-sp</a></li><li><a href="#owner" rel="internal">owner</a></li><li><a href="#paid-account" rel="internal">paid-account</a></li><li><a href="#payments" rel="internal">payments</a></li><li><a href="#permissions" rel="internal">permissions</a></li><li><a href="#pfcp-cash-flow-forecasting" rel="internal">pfcp-cash-flow-forecasting</a></li><li><a href="#pfcp-dashboard" rel="internal">pfcp-dashboard</a></li><li><a href="#pfcp-planning" rel="internal">pfcp-planning</a></li><li><a href="#pfcp-reporting" rel="internal">pfcp-reporting</a></li><li><a href="#photos" rel="internal">photos</a></li><li><a href="#planroom" rel="internal">planroom</a></li><li><a href="#portfolio" rel="internal">portfolio</a></li><li><a href="#portfolio-financials" rel="internal">portfolio-financials</a></li><li><a href="#portfolio-financials-approval-workflows" rel="internal">portfolio-financials-approval-workflows</a></li><li><a href="#portfolio-financials-bid-room" rel="internal">portfolio-financials-bid-room</a></li><li><a href="#portfolio-financials-contract-room" rel="internal">portfolio-financials-contract-room</a></li><li><a href="#portfolio-financials-cost-allocations" rel="internal">portfolio-financials-cost-allocations</a></li><li><a href="#portfolio-financials-cost-tracker" rel="internal">portfolio-financials-cost-tracker</a></li><li><a href="#portfolio-financials-documents" rel="internal">portfolio-financials-documents</a></li><li><a href="#portfolio-financials-integrations" rel="internal">portfolio-financials-integrations</a></li><li><a href="#portfolio-financials-milestones" rel="internal">portfolio-financials-milestones</a></li><li><a href="#portfolio-financials-project-page" rel="internal">portfolio-financials-project-page</a></li><li><a href="#portfolio-financials-settings" rel="internal">portfolio-financials-settings</a></li><li><a href="#portfolio-financials-team" rel="internal">portfolio-financials-team</a></li><li><a href="#portfolio-financials-team-and-vendor-management" rel="internal">portfolio-financials-team-and-vendor-management</a></li><li><a href="#portfolio-financials-team-and-vendors" rel="internal">portfolio-financials-team-and-vendors</a></li><li><a href="#portfolio-financials-vendor-resources" rel="internal">portfolio-financials-vendor-resources</a></li><li><a href="#portfolio-financials-yardi" rel="internal">portfolio-financials-yardi</a></li><li><a href="#portfolio-planning" rel="internal">portfolio-planning</a></li><li><a href="#prequalification-portal" rel="internal">prequalification-portal</a></li><li><a href="#prequalifications" rel="internal">prequalifications</a></li><li><a href="#primavera" rel="internal">primavera</a></li><li><a href="#prime-contract" rel="internal">prime-contract</a></li><li><a href="#prime-contracts" rel="internal">prime-contracts</a></li><li><a href="#procore-administrator" rel="internal">procore-administrator</a></li><li><a href="#procore-analytics" rel="internal">procore-analytics</a></li><li><a href="#procore-bim-plugin" rel="internal">procore-bim-plugin</a></li><li><a href="#procore-construction-network" rel="internal">procore-construction-network</a></li><li><a href="#procore-drive" rel="internal">procore-drive</a></li><li><a href="#procore-extracts" rel="internal">procore-extracts</a></li><li><a href="#procore-imports" rel="internal">procore-imports</a></li><li><a href="#procore-maps" rel="internal">procore-maps</a></li><li><a href="#procore-pay" rel="internal">procore-pay</a></li><li><a href="#procore-search" rel="internal">procore-search</a></li><li><a href="#progress-billings" rel="internal">progress-billings</a></li><li><a href="#project" rel="internal">project</a></li><li><a href="#project-admin" rel="internal">project-admin</a></li><li><a href="#project-administrator" rel="internal">project-administrator</a></li><li><a href="#project-directory" rel="internal">project-directory</a></li><li><a href="#project-home-screen-android" rel="internal">project-home-screen-android</a></li><li><a href="#project-home-screen-ios" rel="internal">project-home-screen-ios</a></li><li><a href="#project-manager" rel="internal">project-manager</a></li><li><a href="#project-map" rel="internal">project-map</a></li><li><a href="#project-maps" rel="internal">project-maps</a></li><li><a href="#project-schedule" rel="internal">project-schedule</a></li><li><a href="#punch-list" rel="internal">punch-list</a></li><li><a href="#qbo" rel="internal">qbo</a></li><li><a href="#quickbooks" rel="internal">quickbooks</a></li><li><a href="#reports" rel="internal">reports</a></li><li><a href="#rfi" rel="internal">rfi</a></li><li><a href="#ryvit" rel="internal">ryvit</a></li><li><a href="#sage-100" rel="internal">sage-100</a></li><li><a href="#sage-300-cre" rel="internal">sage-300-cre</a></li><li><a href="#sage-intacct" rel="internal">sage-intacct</a></li><li><a href="#schedule" rel="internal">schedule</a></li><li><a href="#security" rel="internal">security</a></li><li><a href="#skilljar" rel="internal">skilljar</a></li><li><a href="#specifications" rel="internal">specifications</a></li><li><a href="#spectrum" rel="internal">spectrum</a></li><li><a href="#sso" rel="internal">sso</a></li><li><a href="#standalone-procore-estimating" rel="internal">standalone-procore-estimating</a></li><li><a href="#subcontractor" rel="internal">subcontractor</a></li><li><a href="#submittals" rel="internal">submittals</a></li><li><a href="#superintendent" rel="internal">superintendent</a></li><li><a href="#tasks" rel="internal">tasks</a></li><li><a href="#timecard" rel="internal">timecard</a></li><li><a href="#timesheets" rel="internal">timesheets</a></li><li><a href="#tm-tickets" rel="internal">tm-tickets</a></li><li><a href="#training-center" rel="internal">training-center</a></li><li><a href="#transmittals" rel="internal">transmittals</a></li><li><a href="#tutorial" rel="internal">tutorial</a></li><li><a href="#v2-workflows" rel="internal">v2-workflows</a></li><li><a href="#vista-by-viewpoint" rel="internal">vista-by-viewpoint</a></li><li><a href="#wbs" rel="internal">wbs</a></li><li><a href="#workday" rel="internal">workday</a></li><li><a href="#workflows" rel="internal">workflows</a></li><li><a href="#workforce-planning" rel="internal">workforce-planning</a></li><li><a href="#xero" rel="internal">xero</a></li><li><a href="#yardi-projfin" rel="internal">yardi-projfin</a></li><li><a href="#.23" rel="internal">#</a></li><li><a href="#A" rel="internal">A</a></li><li><a href="#D" rel="internal">D</a></li><li><a href="#E" rel="internal">E</a></li><li><a href="#H" rel="internal">H</a></li><li><a href="#P" rel="internal">P</a></li><li><a href="#R" rel="internal">R</a></li><li><a href="#S" rel="internal">S</a></li><li><a href="#X" rel="internal">X</a></li><li><a href="#.E4.B8.8A" rel="internal">上</a></li><li><a href="#.E4.B8.8E" rel="internal">与</a></li><li><a href="#.E4.B8.AA" rel="internal">个</a></li><li><a href="#.E4.B8.BA" rel="internal">为</a></li><li><a href="#.E4.B8.BB" rel="internal">主</a></li><li><a href="#.E4.BA.8B" rel="internal">事</a></li><li><a href="#.E4.BA.BA" rel="internal">人</a></li><li><a href="#.E4.BB.80" rel="internal">什</a></li><li><a href="#.E4.BB.8E" rel="internal">从</a></li><li><a href="#.E4.BB.BB" rel="internal">任</a></li><li><a href="#.E4.BC.81" rel="internal">企</a></li><li><a href="#.E4.BC.9A" rel="internal">会</a></li><li><a href="#.E4.BC.A0" rel="internal">传</a></li><li><a href="#.E4.BC.B0" rel="internal">估</a></li><li><a href="#.E4.BD.9C" rel="internal">作</a></li><li><a href="#.E4.BD.BF" rel="internal">使</a></li><li><a href="#.E5.85.8D" rel="internal">免</a></li><li><a href="#.E5.85.AC" rel="internal">公</a></li><li><a href="#.E5.85.B3" rel="internal">关</a></li><li><a href="#.E5.88.9B" rel="internal">创</a></li><li><a href="#.E5.8D.8F" rel="internal">协</a></li><li><a href="#.E5.8F.91" rel="internal">发</a></li><li><a href="#.E5.8F.98" rel="internal">变</a></li><li><a href="#.E5.8F.AF" rel="internal">可</a></li><li><a href="#.E5.90.88" rel="internal">合</a></li><li><a href="#.E5.90.AF" rel="internal">启</a></li><li><a href="#.E5.93.AA" rel="internal">哪</a></li><li><a href="#.E5.9B.BE" rel="internal">图</a></li><li><a href="#.E5.9C.A8" rel="internal">在</a></li><li><a href="#.E5.A4.9A" rel="internal">多</a></li><li><a href="#.E5.A6.82" rel="internal">如</a></li><li><a href="#.E5.AF.B9" rel="internal">对</a></li><li><a href="#.E5.AF.BC" rel="internal">导</a></li><li><a href="#.E5.B0.86" rel="internal">将</a></li><li><a href="#.E5.B0.9D" rel="internal">尝</a></li><li><a href="#.E5.B0.BE" rel="internal">尾</a></li><li><a href="#.E5.B7.A5" rel="internal">工</a></li><li><a href="#.E5.BA.94" rel="internal">应</a></li><li><a href="#.E5.BB.BA" rel="internal">建</a></li><li><a href="#.E5.BD.93" rel="internal">当</a></li><li><a href="#.E5.BE.85" rel="internal">待</a></li><li><a href="#.E5.BF.98" rel="internal">忘</a></li><li><a href="#.E6.88.90" rel="internal">成</a></li><li><a href="#.E6.88.91" rel="internal">我</a></li><li><a href="#.E6.8A.95" rel="internal">投</a></li><li><a href="#.E6.8E.A5" rel="internal">接</a></li><li><a href="#.E6.8F.90" rel="internal">提</a></li><li><a href="#.E6.96.87" rel="internal">文</a></li><li><a href="#.E6.97.A7" rel="internal">旧</a></li><li><a href="#.E6.98.AF" rel="internal">是</a></li><li><a href="#.E6.9B.B4" rel="internal">更</a></li><li><a href="#.E6.9C.89" rel="internal">有</a></li><li><a href="#.E6.9D.83" rel="internal">权</a></li><li><a href="#.E6.9F.90" rel="internal">某</a></li><li><a href="#.E6.A3.80" rel="internal">检</a></li><li><a href="#.E6.AD.A3" rel="internal">正</a></li><li><a href="#.E6.AF.8F" rel="internal">每</a></li><li><a href="#.E6.B0.B4" rel="internal">水</a></li><li><a href="#.E6.B5.8B" rel="internal">测</a></li><li><a href="#.E7.85.A7" rel="internal">照</a></li><li><a href="#.E7.8E.B0" rel="internal">现</a></li><li><a href="#.E7.94.A8" rel="internal">用</a></li><li><a href="#.E7.9B.AE" rel="internal">目</a></li><li><a href="#.E7.A7.81" rel="internal">私</a></li><li><a href="#.E7.BB.9F" rel="internal">统</a></li><li><a href="#.E7.BB.BC" rel="internal">综</a></li><li><a href="#.E8.80.83" rel="internal">考</a></li><li><a href="#.E8.83.BD" rel="internal">能</a></li><li><a href="#.E8.87.AA" rel="internal">自</a></li><li><a href="#.E8.A1.8C" rel="internal">行</a></li><li><a href="#.E8.A1.A8" rel="internal">表</a></li><li><a href="#.E8.A7.81" rel="internal">见</a></li><li><a href="#.E8.A7.82" rel="internal">观</a></li><li><a href="#.E8.A7.84" rel="internal">规</a></li><li><a href="#.E8.B0.81" rel="internal">谁</a></li><li><a href="#.E8.B5.84" rel="internal">资</a></li><li><a href="#.E9.80.81" rel="internal">送</a></li><li><a href="#.E9.80.9A" rel="internal">通</a></li><li><a href="#.E9.85.8D" rel="internal">配</a></li><li><a href="#.E9.A1.B9" rel="internal">项</a></li><li><a href="#.E9.A2.84" rel="internal">预</a></li><li><a href="#.E9.BB.98" rel="internal">默</a></li></ol> </div> </div> <div id="page-top"> <div id="topic"> <div id="pageText"> <div class="mt-help-search mt-lsf-search" id="mt-portfolio-search"><script type="application/json" id="mt-localizations-help-widget">/*<![CDATA[*/{"Help.Widget.button.text":"\u641c\u7d22","Help.Widget.label.text":"\u67e5\u8be2","Help.Widget.placeholder.text":"\u641c\u7d22 \u5e38\u89c1\u95ee\u9898"}/*]]>*/</script><div class="mt-inputredirect" data-query-key="q" data-path="faq"></div></div> <div id="mt-guide-tabs" class="noindex" data-ga-action="Guide tabs"><div class="mt-guide-tabs-container mt-tabs" data-page-id="3071" data-tabs-configuration-key="mindtouch#idf.guideTabs"><ul class="mt-guide-tabs-selectors"><li class="mt-guide-tab ui-state-default " data-guid="df5aaebf-d046-55b8-8253-ab237032e07d" data-template-path="MindTouch/IDF3/Views/Featured_articles" data-template-title="查看精选"><a href="#df5aaebf-d046-55b8-8253-ab237032e07d" class="mt-guide-tab-link mt-no-scroll" data-ga-label="Tab Featured_articles 1">查看精选</a></li><li class="mt-guide-tab ui-state-default " data-guid="c2533a44-6e3a-1cae-a973-5418fa0eac8b" data-template-path="MindTouch/IDF3/Views/Tag_directory" data-template-title="按标记查看"><a href="#c2533a44-6e3a-1cae-a973-5418fa0eac8b" class="mt-guide-tab-link mt-no-scroll" data-ga-label="Tab Tag_directory 2">按标记查看</a></li><li class="mt-guide-tab ui-state-default " data-guid="5fbb553d-7d81-724a-6cb1-a768eb930400" data-template-path="MindTouch/IDF3/Views/Article_directory" data-template-title="查看 A-Z"><a href="#5fbb553d-7d81-724a-6cb1-a768eb930400" class="mt-guide-tab-link mt-no-scroll" data-ga-label="Tab Article_directory 3">查看 A-Z</a></li></ul><div id="df5aaebf-d046-55b8-8253-ab237032e07d" class="mt-guide-content"><div class="noindex"><ul class="mt-featured-list mt-guide-listings"><li class="mt-featured-most-popular"><span id=".E6.9C.80.E7.83.AD.E9.97.A8"></span><h5>最热门</h5><span class="mt-note">(查看次数)</span><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-rfi" title="什么是 RFI?"><span class="mt-icon-article-faq"></span>什么是 RFI?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-punch-list" title="什么是尾项清单?"><span class="mt-icon-article-faq"></span>什么是尾项清单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-verify-an-australian-business-number-abn" title="如何验证澳大利亚商业编号 (ABN)?"><span class="mt-icon-article-faq"></span>如何验证澳大利亚商业编号 (ABN)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-blind-bidding" title="什么是投盲标?"><span class="mt-icon-article-faq"></span>什么是投盲标?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-change-the-language-of-my-company-project-or-user-in-procore" title="我可以在 Procore 中更改公司、项目或用户语言吗?"><span class="mt-icon-article-faq"></span>我可以在 Procore 中更改公司、项目或用户语言吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-sp-and-idp-initiated-sso" title="SP 发起的单点登录和 IdP 发起的单点登录之间有何区别?"><span class="mt-icon-article-faq"></span>SP 发起的单点登录和 IdP 发起的单点登录之间有何区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-portfolio-financials" title="什么是综合财务管理?"><span class="mt-icon-article-faq"></span>什么是综合财务管理?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-osha-lockout-tagout-procedures-inspection-template-on-my-project" title="如何在我的项目中使用“[OSHA] 上锁/挂牌程序”检查任务模板?"><span class="mt-icon-article-faq"></span>如何在我的项目中使用“[OSHA] 上锁/挂牌程序”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-project-cost-reporting-in-portfolio-financials" title="什么是综合财务管理中的项目成本报告?"><span class="mt-icon-article-faq"></span>什么是综合财务管理中的项目成本报告?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-provide-users-with-read-only-level-permissions-with-limited-access-to-update-information-in-procore" title="我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?"><span class="mt-icon-article-faq"></span>我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-best-practices-for-using-multiple-phased-budget-uploads" title="使用多个(分阶段)预算上传的最佳做法是什么?"><span class="mt-icon-article-faq"></span>使用多个(分阶段)预算上传的最佳做法是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-adjust-my-budget-views-when-the-client-contracts-funding-or-prime-contracts-tool-is-disabled-in-my-companys-procore-account" title="当我公司 Procore 账户禁用客户合同、资金或主合同工具时,我能如何调整预算视图?"><span class="mt-icon-article-faq"></span>当我公司 Procore 账户禁用客户合同、资金或主合同工具时,我能如何调整预算视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-make-my-punch-list-items-private-by-default" title="如何将我的尾项清单项目默认设为私密?"><span class="mt-icon-article-faq"></span>如何将我的尾项清单项目默认设为私密?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-improve-the-accuracy-of-specification-section-identification" title="如何提高规范分项识别的准确性?"><span class="mt-icon-article-faq"></span>如何提高规范分项识别的准确性?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-update-the-percent-complete-field-on-the-web-application" title="我能否更新 Procore Web 应用程序上的“完成百分比”字段?"><span class="mt-icon-article-faq"></span>我能否更新 Procore Web 应用程序上的“完成百分比”字段?</a></li></ul></li><li class="mt-featured-highest-rated"><span id=".E6.9C.80.E9.AB.98.E8.AF.84.E5.88.86"></span><h5>最高评分</h5><span class="mt-note">(评分)</span><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-my-team-member-see-a-project-in-portfolio-financials-and-capital-planning" title="为什么我的团队成员无法查看综合财务管理和资金规划中的项目?"><span class="mt-icon-article-faq"></span>为什么我的团队成员无法查看综合财务管理和资金规划中的项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-expand-the-awarded-value-row-in-portfolio-financials-and-capital-planning" title="为什么我不能在综合财务管理和资金规划中展开“中标值”行?"><span class="mt-icon-article-faq"></span>为什么我不能在综合财务管理和资金规划中展开“中标值”行?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-export-an-item-from-portfolio-financials-and-capital-planning" title="为什么我不能从综合财务管理和资金规划中导出项目?"><span class="mt-icon-article-faq"></span>为什么我不能从综合财务管理和资金规划中导出项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-all-my-favorite-tools-on-a-project" title="为什么我在项目中看不到所有收藏的工具?"><span class="mt-icon-article-faq"></span>为什么我在项目中看不到所有收藏的工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-receive-email-from-procore" title="为什么收不到 Procore 的电子邮件?"><span class="mt-icon-article-faq"></span>为什么收不到 Procore 的电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-one-of-my-users-in-my-certification-analytics" title="为什么我在认证分析中看不到我的某位用户?"><span class="mt-icon-article-tutorial"></span>为什么我在认证分析中看不到我的某位用户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-bid-room-in-portfolio-financials" title="为什么我在综合财务管理中看不到投标室?"><span class="mt-icon-article-faq"></span>为什么我在综合财务管理中看不到投标室?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-accept-reject-options-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到接受/拒绝选项?"><span class="mt-icon-article-faq"></span>为什么我在 ERP 集成工具中看不到接受/拒绝选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-contract-room-in-portfolio-financials" title="为什么我在综合财务管理中看不到合同室?"><span class="mt-icon-article-faq"></span>为什么我在综合财务管理中看不到合同室?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-favorites-tab-in-my-profile-settings" title="为什么在“我的个人资料设置”中看不到“收藏夹”标签页?"><span class="mt-icon-article-faq"></span>为什么在“我的个人资料设置”中看不到“收藏夹”标签页?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-update-my-procore-app-ios" title="为什么无法更新我的 Procore 应用程序?(iOS)"><span class="mt-icon-article-faq"></span>为什么无法更新我的 Procore 应用程序?(iOS)</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-sync-or-refresh-buttons-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到“同步”或“刷新”按钮?"><span class="mt-icon-article-faq"></span>为什么我在 ERP 集成工具中看不到“同步”或“刷新”按钮?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-turn-off-the-action-required-emails-from-the-submittals-tool" title="为什么无法关闭从送审工具发送的“待办事项”电子邮件?"><span class="mt-icon-article-faq"></span>为什么无法关闭从送审工具发送的“待办事项”电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-use-the-cloud-redline-tool-in-navisworks" title="为什么我不能在 Navisworks® 中使用云红线工具?"><span class="mt-icon-article-faq"></span>为什么我不能在 Navisworks® 中使用云红线工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-bid-package-missing-from-the-planroom" title="为什么 Planroom 中没有我的投标文件包?"><span class="mt-icon-article-faq"></span>为什么 Planroom 中没有我的投标文件包?</a></li></ul></li><li class="mt-featured-recently-updated"><span id=".E6.9C.80.E8.BF.91.E6.9B.B4.E6.96.B0"></span><h5>最近更新</h5><span class="mt-note">(更新日期)</span><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-did-quality-and-safety-go-in-procore" title="Procore 中的质量和安全去哪里了?"><span class="mt-icon-article-faq"></span>Procore 中的质量和安全去哪里了?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-bill-for-stored-materials-in-an-invoice" title="如何在发票中为库存材料开具账单? (测试版)"><span class="mt-icon-article-faq"></span>如何在发票中为库存材料开具账单? (测试版)</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-cost-types-and-how-does-our-erp-integration-support-them" title="有哪些“成本类型”以及我们的 ERP 集成如何支持这些成本类型?"><span class="mt-icon-article-faq"></span>有哪些“成本类型”以及我们的 ERP 集成如何支持这些成本类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-having-problems-playing-training-videos" title="为什么我在播放培训视频时遇到问题?"><span class="mt-icon-article-faq"></span>为什么我在播放培训视频时遇到问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-draft-rfi" title="什么是 RFI“草稿”?"><span class="mt-icon-article-faq"></span>什么是 RFI“草稿”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-attach-multiple-files-at-once-to-a-transmittal" title="如何一次将多个文件添加到传输记录中?"><span class="mt-icon-article-faq"></span>如何一次将多个文件添加到传输记录中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-and-release-retainage-on-a-subcontractor-invoice-in-procore" title="如何在 Procore 中设置和返还分包商发票的保留金?"><span class="mt-icon-article-faq"></span>如何在 Procore 中设置和返还分包商发票的保留金?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-types-of-steps-in-a-workflow" title="工作流中有哪些不同类型的步骤?"><span class="mt-icon-article-faq"></span>工作流中有哪些不同类型的步骤?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-budget-views-should-i-add-to-my-projects" title="我应该将哪些预算视图添加到我的 Procore 项目中?"><span class="mt-icon-article-faq"></span>我应该将哪些预算视图添加到我的 Procore 项目中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-permission-levels-for-team-members-in-portfolio-financials" title="综合财务管理中团队成员有哪些不同的权限级别?"><span class="mt-icon-article-faq"></span>综合财务管理中团队成员有哪些不同的权限级别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-budget-code-in-procores-wbs" title="Procore 的 WBS 中的预算编号是什么?"><span class="mt-icon-article-faq"></span>Procore 的 WBS 中的预算编号是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procore-bim" title="什么是 Procore BIM?"><span class="mt-icon-article-faq"></span>什么是 Procore BIM?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-uncategorized-invoices-in-portfolio-financials" title="什么是综合财务管理中的未分类发票?"><span class="mt-icon-article-faq"></span>什么是综合财务管理中的未分类发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-domains-do-we-add-to-our-networks-allowed-list-to-ensure-access-to-procore" title="我们将哪些域添加到我们网络的“允许名单”中以确保访问 Procore?"><span class="mt-icon-article-faq"></span>我们将哪些域添加到我们网络的“允许名单”中以确保访问 Procore?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-data-can-procore-automatically-populate-when-uploading-files-to-the-document-management-tool" title="将文件上传到文档管理工具时,Procore 可以自动填充什么数据?"><span class="mt-icon-article-faq"></span>将文件上传到文档管理工具时,Procore 可以自动填充什么数据?</a></li></ul></li><li class="mt-featured-recently-added"><span id=".E6.9C.80.E8.BF.91.E6.B7.BB.E5.8A.A0"></span><h5>最近添加</h5><span class="mt-note">(创建日期)</span><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-budget-tool-can-be-configured" title="预算工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-faq"></span>预算工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-when-i-import-a-document-management-file-into-the-drawings-tool" title="当我将文档管理文件导入图纸工具时会发生什么?"><span class="mt-icon-article-faq"></span>当我将文档管理文件导入图纸工具时会发生什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-tools-can-attach-document-management-files" title="哪些工具可以添加文档管理文件?"><span class="mt-icon-article-faq"></span>哪些工具可以添加文档管理文件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-document-management-attachments-and-attachments-from-other-tools" title="文档管理附件和来自其他工具的附件有什么区别?"><span class="mt-icon-article-faq"></span>文档管理附件和来自其他工具的附件有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-i-need-to-know-about-the-analytics-deprecation" title="关于 Procore Analytics 1.0 的弃用,我需要了解什么?"><span class="mt-icon-article-none"></span>关于 Procore Analytics 1.0 的弃用,我需要了解什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-copy-and-duplicate-with-drawing-markups%3F" title="使用图纸标记进行复制和复制有什么区别?"><span class="mt-icon-article-faq"></span>使用图纸标记进行复制和复制有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-tools-are-supported-by-maps-in-procore" title="Procore 中的地图支持哪些工具?"><span class="mt-icon-article-reference"></span>Procore 中的地图支持哪些工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-visibility-settings-are-available-for-procore-maps" title="Procore 地图有哪些可见性设置?"><span class="mt-icon-article-faq"></span>Procore 地图有哪些可见性设置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-conditional-logic-within-the-inspections-tool" title="什么是检查任务工具中的条件逻辑?"><span class="mt-icon-article-none"></span>什么是检查任务工具中的条件逻辑?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-items-in-procore-appear-on-the-map" title="Procore 中的项如何在地图上显示?"><span class="mt-icon-article-reference"></span>Procore 中的项如何在地图上显示?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-tools-can-you-use-on-mobile-for-inactive-projects" title="可以在移动设备上将哪些工具用于非活动项目?"><span class="mt-icon-article-faq"></span>可以在移动设备上将哪些工具用于非活动项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-insights-calculated" title="见解是如何计算的?"><span class="mt-icon-article-reference"></span>见解是如何计算的?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/inspection-requirements-general-faq" title="检查任务要求:一般常见问题"><span class="mt-icon-article-reference"></span>检查任务要求:一般常见问题</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-standard-trades-are-available-in-procore" title="Procore 中提供哪些标准行业?"><span class="mt-icon-article-faq"></span>Procore 中提供哪些标准行业?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-settings-are-available-for-project-tools-in-procore" title="Procore 中的项目工具有哪些设置可用?"><span class="mt-icon-article-faq"></span>Procore 中的项目工具有哪些设置可用?</a></li></ul></li></ul></div></div><div id="c2533a44-6e3a-1cae-a973-5418fa0eac8b" class="mt-guide-content"><div class="noindex"><ul class="mt-tag-directory-listings mt-guide-listings"><li class="mt-listing-no-break mt-tag-name-action-plan mt-tags-single"><span id="action-plan"></span><h5>action-plan</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-action-plans"><span id="action-plans"></span><h5>action-plans</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-action-plans-item-statuses-updated" title="如何更新行动计划项状态"><span class="mt-icon-article-none"></span>如何更新行动计划项状态</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-action-plan-verification-methods" title="什么是默认行动计划验证方法?"><span class="mt-icon-article-none"></span>什么是默认行动计划验证方法?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-action-plans-tool" title="项目的行动计划工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的行动计划工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-completed-action-plan-receiver" title="什么是“已完成行动计划的接收者”?"><span class="mt-icon-article-none"></span>什么是“已完成行动计划的接收者”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-contact-in-procore-and-which-project-tools-support-the-concept" title="Procore 中的“联系人”是什么?哪些项目工具支持此概念?"><span class="mt-icon-article-none"></span>Procore 中的“联系人”是什么?哪些项目工具支持此概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-action-plan-approver" title="什么是“行动计划审批者”?"><span class="mt-icon-article-none"></span>什么是“行动计划审批者”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-plan-manager-in-an-action-plan" title="什么是行动计划中的“计划经理”?"><span class="mt-icon-article-none"></span>什么是行动计划中的“计划经理”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-blocking-functionality-in-an-action-plan" title="什么是行动计划中的“锁定功能”?"><span class="mt-icon-article-none"></span>什么是行动计划中的“锁定功能”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="什么是 Procore 回收站?"><span class="mt-icon-article-none"></span>什么是 Procore 回收站?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-does-an-action-plan-shift-to-edit-or-view-mode" title="行动计划何时转换为“编辑”或“查看”模式?"><span class="mt-icon-article-none"></span>行动计划何时转换为“编辑”或“查看”模式?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-action-plans-tool-can-be-configured-as-required-optional-or-hidden" title="行动计划工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>行动计划工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="哪些 Procore 工具支持细分权限?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持细分权限?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-acumatica mt-tags-single"><span id="acumatica"></span><h5>acumatica</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-accept-reject-options-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到接受/拒绝选项?"><span class="mt-icon-article-none"></span>为什么我在 ERP 集成工具中看不到接受/拒绝选项?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-acumatica-edge"><span id="acumatica-edge"></span><h5>acumatica-edge</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-project-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目是否已与集成 ERP 系统同步?"><span class="mt-icon-article-none"></span>如何判断 Procore 项目是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-sync-my-prime-contract-with-acumatica" title="如何将我的主合同与 Acumatica 或MYOB Advanced Construction同步?"><span class="mt-icon-article-none"></span>如何将我的主合同与 Acumatica 或MYOB Advanced Construction同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="什么是会计审批者角色?"><span class="mt-icon-article-none"></span>什么是会计审批者角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-commitment-title" title="合约“标题”的最大字符长度是多少?"><span class="mt-icon-article-none"></span>合约“标题”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-a-notification-when-an-item-is-rejected-from-erp" title="当项被 ERP 拒绝时,谁会收到通知?"><span class="mt-icon-article-none"></span>当项被 ERP 拒绝时,谁会收到通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-procore-project-missing-from-the-erp-integrations-tool" title="为什么 ERP 集成工具中缺少我的 Procore 项目?"><span class="mt-icon-article-none"></span>为什么 ERP 集成工具中缺少我的 Procore 项目?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-acumatica-vision"><span id="acumatica-vision"></span><h5>acumatica-vision</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-project-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目是否已与集成 ERP 系统同步?"><span class="mt-icon-article-none"></span>如何判断 Procore 项目是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-sync-my-prime-contract-with-acumatica" title="如何将我的主合同与 Acumatica 或MYOB Advanced Construction同步?"><span class="mt-icon-article-none"></span>如何将我的主合同与 Acumatica 或MYOB Advanced Construction同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="什么是会计审批者角色?"><span class="mt-icon-article-none"></span>什么是会计审批者角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-commitment-title" title="合约“标题”的最大字符长度是多少?"><span class="mt-icon-article-none"></span>合约“标题”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-a-notification-when-an-item-is-rejected-from-erp" title="当项被 ERP 拒绝时,谁会收到通知?"><span class="mt-icon-article-none"></span>当项被 ERP 拒绝时,谁会收到通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-procore-project-missing-from-the-erp-integrations-tool" title="为什么 ERP 集成工具中缺少我的 Procore 项目?"><span class="mt-icon-article-none"></span>为什么 ERP 集成工具中缺少我的 Procore 项目?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-admin"><span id="admin"></span><h5>admin</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-apply-custom-segments-to-my-existing-non-wbs-projects" title="是否可以将自定义细分应用于现有的非 WBS 项目?"><span class="mt-icon-article-none"></span>是否可以将自定义细分应用于现有的非 WBS 项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-change-the-language-of-my-company-project-or-user-in-procore" title="我可以在 Procore 中更改公司、项目或用户语言吗?"><span class="mt-icon-article-none"></span>我可以在 Procore 中更改公司、项目或用户语言吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-prevent-emails-from-being-sent-on-the-weekend" title="我可以阻止在周末发送电子邮件吗?"><span class="mt-icon-article-none"></span>我可以阻止在周末发送电子邮件吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-provide-users-with-read-only-level-permissions-with-limited-access-to-update-information-in-procore" title="我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?"><span class="mt-icon-article-none"></span>我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-procores-sso-integrations-support-single-or-multiple-domains" title="Procore 的单点登录集成支持单个域还是多个域?"><span class="mt-icon-article-none"></span>Procore 的单点登录集成支持单个域还是多个域?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-determine-the-latitude-and-longitude-values-on-an-address" title="如何确定地址的纬度和经度值?"><span class="mt-icon-article-none"></span>如何确定地址的纬度和经度值?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enable-additional-workforce-labor-types-for-the-daily-log" title="如何为工作日志启用其他劳动力人工类型?"><span class="mt-icon-article-none"></span>如何为工作日志启用其他劳动力人工类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-track-non-commitment-costs-on-a-change-event" title="如何跟踪变更事件的非合约成本?"><span class="mt-icon-article-none"></span>如何跟踪变更事件的非合约成本?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-will-configured-fieldsets-affect-my-existing-projects" title="配置的字段集将如何影响现有项目?"><span class="mt-icon-article-none"></span>配置的字段集将如何影响现有项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-configurable-fieldsets-and-which-procore-tools-support-them" title="什么是可配置字段集以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是可配置字段集以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-cost-types-and-how-does-our-erp-integration-support-them" title="有哪些“成本类型”以及我们的 ERP 集成如何支持这些成本类型?"><span class="mt-icon-article-none"></span>有哪些“成本类型”以及我们的 ERP 集成如何支持这些成本类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-fields-and-which-procore-tools-support-them" title="什么是自定义字段以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是自定义字段以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-project-roles" title="什么是自定义项目角色?"><span class="mt-icon-article-none"></span>什么是自定义项目角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-sections-and-which-procore-tools-support-them" title="什么是自定义部分以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是自定义部分以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore 默认成本编号有哪些?"><span class="mt-icon-article-none"></span>Procore 默认成本编号有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-types" title="Procore 有哪些默认成本类型?"><span class="mt-icon-article-none"></span>Procore 有哪些默认成本类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-standard-budget-views" title="什么是 Procore 的标准预算视图?"><span class="mt-icon-article-none"></span>什么是 Procore 的标准预算视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-production-quantities" title="什么是“生产数量”?"><span class="mt-icon-article-none"></span>什么是“生产数量”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-segments-and-segment-items" title="什么是细分和细分项?"><span class="mt-icon-article-none"></span>什么是细分和细分项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-addendum-template-correspondence-type" title="Procore 的“附录”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“附录”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-bulletin-template-correspondence-type" title="Procore 的“公告”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“公告”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-change-request-template-correspondence-type" title="Procore 的“变更请求”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“变更请求”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-client-instruction-template-correspondence-type" title="Procore 的“客户指示”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“客户指示”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-constraints-template-correspondence-type" title="Procore 的“约束”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“约束”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-early-warning-notice-template-correspondence-type" title="Procore 的“提早警告通知”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“提早警告通知”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-extension-of-time-template-correspondence-type" title="Procore 的“延期申请”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“延期申请”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-general-correspondence-template-correspondence-type" title="Procore 的“一般通信”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“一般通信”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-lessons-learned-template-correspondence-type" title="Procore 的“经验教训”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“经验教训”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-letters-of-intent-template-correspondence-type" title="Procore 的“意向书”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“意向书”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-letters-template-correspondence-type" title="Procore 的“信函”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“信函”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-material-request-template-correspondence-type" title="Procore 的“材料请求”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“材料请求”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-mitigation-plan-template-correspondence-type" title="Procore 的“缓解计划”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“缓解计划”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-notice-of-delay-template-correspondence-type" title="Procore 的“延迟通知”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“延迟通知”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-notice-to-proceed-template-correspondence-type" title="Procore 的“开工通知”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“开工通知”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-notification-of-backcharge-template-correspondence-type" title="Procore 的“扣款通知”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“扣款通知”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-permit-request-template-correspondence-type" title="Procore 的“许可请求”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“许可请求”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-project-request-template-correspondence-type" title="Procore 的“项目请求”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“项目请求”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-risk-identification-template-correspondence-type" title="Procore 的“风险识别”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“风险识别”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-site-instruction-template-correspondence-type" title="Procore 的“现场指示”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“现场指示”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-transmittal-template-correspondence-type" title="Procore 的“传输记录”模板通信 类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“传输记录”模板通信 类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-project-stages-in-procore" title="Procore 中的默认项目阶段是什么?"><span class="mt-icon-article-none"></span>Procore 中的默认项目阶段是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-custom-segments-should-we-create-for-our-companys-work-breakdown-structure" title="我们应该为公司的工作分解结构创建哪些自定义细分?"><span class="mt-icon-article-none"></span>我们应该为公司的工作分解结构创建哪些自定义细分?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-dates-in-the-projects-admin-tool-mean" title="项目管理员工具中的日期是什么意思?"><span class="mt-icon-article-none"></span>项目管理员工具中的日期是什么意思?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-fieldset-configurations-are-recommended-for-configurable-fieldsets" title="对于可配置字段集推荐使用哪些配置?"><span class="mt-icon-article-none"></span>对于可配置字段集推荐使用哪些配置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-field-types-are-available-for-custom-fields-in-procore-tools" title="Procore 工具中的自定义字段有哪些字段类型可用?"><span class="mt-icon-article-none"></span>Procore 工具中的自定义字段有哪些字段类型可用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-gets-copied-over-to-a-new-project-when-applying-a-project-template" title="将哪些内容从项目模板复制到新项目?"><span class="mt-icon-article-none"></span>将哪些内容从项目模板复制到新项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-project-level-admin-tool" title="项目级别管理员工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目级别管理员工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-project-template" title="什么是项目模板?"><span class="mt-icon-article-none"></span>什么是项目模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-code-field-on-the-project-creation-page" title="项目创建页面上的“Code”字段是什么?"><span class="mt-icon-article-none"></span>项目创建页面上的“Code”字段是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-default-and-custom-segment-in-procores-wbs" title="Procore 的工作分解结构中的默认细分和自定义细分之间有什么区别?"><span class="mt-icon-article-none"></span>Procore 的工作分解结构中的默认细分和自定义细分之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-custom-fields-and-configurable-fieldsets" title="自定义字段和可配置字段集之间有什么区别?"><span class="mt-icon-article-none"></span>自定义字段和可配置字段集之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-procore-plugin-and-what-is-it-used-for" title="什么是 Procore插件,有何用途?"><span class="mt-icon-article-none"></span>什么是 Procore插件,有何用途?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-work-breakdown-structure-wbs" title="什么是工作分解结构 (WBS)?"><span class="mt-icon-article-none"></span>什么是工作分解结构 (WBS)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-languages-are-available-in-procore" title="Procore 中有哪些语言可用?"><span class="mt-icon-article-none"></span>Procore 中有哪些语言可用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-settings-are-available-for-project-tools-in-procore" title="Procore 中的项目工具有哪些设置可用?"><span class="mt-icon-article-none"></span>Procore 中的项目工具有哪些设置可用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-source-columns-are-available-in-custom-budget-views" title="自定义 预算 视图中有哪些源列?"><span class="mt-icon-article-none"></span>自定义 预算 视图中有哪些源列?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-standard-trades-are-available-in-procore" title="Procore 中提供哪些标准行业?"><span class="mt-icon-article-none"></span>Procore 中提供哪些标准行业?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what's-the-difference-between-a-job-a-parent-job-and-a-sub-job" title="作业、父作业和子作业之间有何区别?"><span class="mt-icon-article-none"></span>作业、父作业和子作业之间有何区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-did-the-numbered-templates-on-the-timesheets-and-my-time-tool-fieldsets-come-from" title="考勤表和我的工时工具字段集上的编号模板从何而来?"><span class="mt-icon-article-none"></span>考勤表和我的工时工具字段集上的编号模板从何而来?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-do-the-selections-in-the-spec-sections-drop-down-list-come-from" title=""规范分项"下拉列表中的选项从何而来?"><span class="mt-icon-article-none"></span>"规范分项"下拉列表中的选项从何而来?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-is-the-division-in-the-cost-code-segment-in-procores-wbs" title="Procore 的 WBS 中“成本编号”细分中的“分部”在哪里?"><span class="mt-icon-article-none"></span>Procore 的 WBS 中“成本编号”细分中的“分部”在哪里?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-budget-views-should-i-add-to-my-projects" title="我应该将哪些预算视图添加到我的 Procore 项目中?"><span class="mt-icon-article-none"></span>我应该将哪些预算视图添加到我的 Procore 项目中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-action-plans-tool-can-be-configured-as-required-optional-or-hidden" title="行动计划工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>行动计划工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-budget-tool-can-be-configured" title="预算工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>预算工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-change-events-tool-can-be-configured-as-required-optional-or-hidden" title="变更事件工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>变更事件工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-commitments-tool-can-be-configured-as-required-optional-or-hidden" title="合约工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>合约工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-coordination-issues-tool-can-be-configured-as-required-optional-or-hidden" title="协调问题工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>协调问题工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-correspondence-tool-can-be-configured-as-required-optional-or-hidden" title="通信工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>通信工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-daily-log-tool-can-be-configured-as-required-optional-or-hidden" title="工作日志工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>工作日志工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-directory-tool-can-be-configured-as-required-optional-or-hidden" title="目录工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>目录工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-documents-tool-can-be-configured-as-required-optional-or-hidden" title="文档工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>文档工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-drawings-tool-can-be-configured-as-required-optional-or-hidden" title="图纸工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>图纸工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-incidents-tool-can-be-configured-as-required-optional-or-hidden" title="事件工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>事件工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-inspections-tool-can-be-configured-as-required-optional-or-hidden" title="检查任务工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>检查任务工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-invoicing-or-progress-billings-tools-can-be-configured-as-required-optional-or-hidden" title="发票或按进度收款账单工具中的哪些字段可以配置为必填、选填或隐藏?"><span class="mt-icon-article-none"></span>发票或按进度收款账单工具中的哪些字段可以配置为必填、选填或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-my-time-tool-can-be-configured-as-required-optional-or-hidden" title="我的工时工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>我的工时工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-observations-tool-can-be-configured-as-required-optional-or-hidden" title="观察任务工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>观察任务工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-prime-contracts-tool-can-be-configured-as-required-optional-or-hidden" title="主合同工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>主合同工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-punch-list-tool-can-be-configured-as-required-optional-or-hidden" title="尾项清单工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>尾项清单工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-rfis-tool-can-be-configured-as-required-optional-or-hidden" title="RFI 工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>RFI 工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-specifications-tool-can-be-configured-as-required-optional-or-hidden" title="规范工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>规范工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-submittals-tool-can-be-configured-as-required-optional-or-hidden" title="送审工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>送审工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-timesheets-tool-can-be-configured-as-required-optional-or-hidden" title="考勤表工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>考勤表工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-tm-tickets-tool-can-be-configured-as-required-optional-or-hidden" title="工时和材料单工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>工时和材料单工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-on-the-create-or-update-project-page-can-be-configured-as-required-optional-or-hidden" title="创建或更新项目页面上的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>创建或更新项目页面上的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-logos-appear-on-pdf-exports-in-procore" title="哪些徽标会在 Procore 的 PDF 导出中显示?"><span class="mt-icon-article-none"></span>哪些徽标会在 Procore 的 PDF 导出中显示?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-platforms-support-azure-ad-sso" title="哪些 Procore 平台支持Azure AD (Entra ID)单点登录?"><span class="mt-icon-article-none"></span>哪些 Procore 平台支持Azure AD (Entra ID)单点登录?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-update-data-in-the-field-production-report" title="哪些 Procore 项目工具会更新现场生产报告中的数据?"><span class="mt-icon-article-none"></span>哪些 Procore 项目工具会更新现场生产报告中的数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-can-i-use-to-add-production-quantities-to-my-projects-budget" title="可以使用哪些 Procore 工具将生产数量添加到我的项目预算中?"><span class="mt-icon-article-none"></span>可以使用哪些 Procore 工具将生产数量添加到我的项目预算中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-classifications" title="哪些 Procore 工具支持“工种”?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持“工种”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="哪些 Procore 工具支持细分权限?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-work-breakdown-structure" title="哪些 Procore 工具支持工作分解结构?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持工作分解结构?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-units-of-measure-are-included-in-procores-master-list" title="Procore 的主列表中包含哪些计量单位?"><span class="mt-icon-article-none"></span>Procore 的主列表中包含哪些计量单位?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-the-weather-conditions-not-showing-on-my-daily-log-weather-log" title="为什么我的工作日志天气日志中不显示天气条件?"><span class="mt-icon-article-none"></span>为什么我的工作日志天气日志中不显示天气条件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-or-activate-procore-projects" title="为什么我无法创建或激活 Procore 项目?"><span class="mt-icon-article-none"></span>为什么我无法创建或激活 Procore 项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-wbs-custom-segments" title="为什么我不能创建 WBS 自定义细分?"><span class="mt-icon-article-none"></span>为什么我不能创建 WBS 自定义细分?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-log-in-to-my-certification-analytics-dashboard" title="为什么无法登录认证分析仪表板?"><span class="mt-icon-article-none"></span>为什么无法登录认证分析仪表板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-one-of-my-users-in-my-certification-analytics" title="为什么我在认证分析中看不到我的某位用户?"><span class="mt-icon-article-none"></span>为什么我在认证分析中看不到我的某位用户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-certification-analytics-page-blank" title="为什么我的认证分析页面是空白的?"><span class="mt-icon-article-none"></span>为什么我的认证分析页面是空白的?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-analytics-2.0"><span id="analytics-2.0"></span><h5>analytics-2.0</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/analytics-general-faq" title="Analytics 2.0 一般常见问题"><span class="mt-icon-article-none"></span>Analytics 2.0 一般常见问题</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-permissions-work-for-analytics" title="Analytics 2.0 的权限如何工作?"><span class="mt-icon-article-none"></span>Analytics 2.0 的权限如何工作?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-app-management"><span id="app_management"></span><h5>app management</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-integrations-with-procore-access-my-companys-data" title="与 Procore 集成如何访问公司的数据?"><span class="mt-icon-article-none"></span>与 Procore 集成如何访问公司的数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/plug-icon-missing-marketplace-nav-how-to" title="“插头”图标已移除,我如何导航到应用商店?"><span class="mt-icon-article-none"></span>“插头”图标已移除,我如何导航到应用商店?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-architect"><span id="architect"></span><h5>architect</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-improve-the-accuracy-of-ocr-on-my-drawings" title="如何提高图纸上 OCR 的准确性?"><span class="mt-icon-article-none"></span>如何提高图纸上 OCR 的准确性?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-improve-the-accuracy-of-specification-section-identification" title="如何提高规范分项识别的准确性?"><span class="mt-icon-article-none"></span>如何提高规范分项识别的准确性?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-apply-markups-from-a-previous-revision" title="如何将先前修订中的标记应用到新修订?"><span class="mt-icon-article-none"></span>如何将先前修订中的标记应用到新修订?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-construction-projects-schedule" title="什么是建设工程项目的进度计划?"><span class="mt-icon-article-none"></span>什么是建设工程项目的进度计划?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-copy-and-duplicate-with-drawing-markups%3F" title="使用图纸标记进行复制和复制有什么区别?"><span class="mt-icon-article-none"></span>使用图纸标记进行复制和复制有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-personal-and-published-drawing-markups" title="个人图纸标记与已发布图纸标记之间有什么区别?"><span class="mt-icon-article-none"></span>个人图纸标记与已发布图纸标记之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-can-procore-automatically-populate-when-uploading-drawings" title="上传图纸时,Procore 可以自动填充哪些字段?"><span class="mt-icon-article-none"></span>上传图纸时,Procore 可以自动填充哪些字段?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-can-procore-automatically-populate-when-uploading-specifications" title="上传规范时,Procore 可以自动填充哪些字段?"><span class="mt-icon-article-none"></span>上传规范时,Procore 可以自动填充哪些字段?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-automatic-drawing-sheet-links-missing" title="为什么自动图纸页链接丢失?"><span class="mt-icon-article-none"></span>为什么自动图纸页链接丢失?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-asta"><span id="asta"></span><h5>asta</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-asta-powerproject-and-how-does-it-integrate-with-procore" title="什么是 Asta Powerproject 以及它如何与 Procore 集成?"><span class="mt-icon-article-none"></span>什么是 Asta Powerproject 以及它如何与 Procore 集成?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-asta-powerproject-file-formats-are-supported-by-procore" title="Procore 支持哪些 Asta Powerproject 文件格式?"><span class="mt-icon-article-none"></span>Procore 支持哪些 Asta Powerproject 文件格式?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-azure"><span id="azure"></span><h5>azure</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-i-need-to-create-procore-user-accounts-if-our-company-implements-sso" title="如果我们公司实施单点登录,我是否需要创建 Procore 用户账户?"><span class="mt-icon-article-none"></span>如果我们公司实施单点登录,我是否需要创建 Procore 用户账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-configure-sso-in-a-sandbox-environment-for-testing" title="在我的 Procore 公司账户中实施 SSO 之前,如何在沙箱环境中配置 SSO 以进行测试?"><span class="mt-icon-article-none"></span>在我的 Procore 公司账户中实施 SSO 之前,如何在沙箱环境中配置 SSO 以进行测试?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-log-into-procore-using-azure-ad-sso" title="如何使用Microsoft Azure AD (Entra ID)单点登录来登录 Procore?"><span class="mt-icon-article-none"></span>如何使用Microsoft Azure AD (Entra ID)单点登录来登录 Procore?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-single-sign-on-sso-with-procore" title="如何使用 Procore 设置单点登录 (SSO)?"><span class="mt-icon-article-none"></span>如何使用 Procore 设置单点登录 (SSO)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-update-an-expiring-x509-certificate-in-my-companys-procore-sso-configuration-settings" title="如何在公司的 Procore 单点登录配置设置中更新即将到期的 x509 证书?"><span class="mt-icon-article-none"></span>如何在公司的 Procore 单点登录配置设置中更新即将到期的 x509 证书?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-single-sign-on-sso" title="什么是单点登录 (SSO)?"><span class="mt-icon-article-none"></span>什么是单点登录 (SSO)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-platforms-support-azure-ad-sso" title="哪些 Procore 平台支持Azure AD (Entra ID)单点登录?"><span class="mt-icon-article-none"></span>哪些 Procore 平台支持Azure AD (Entra ID)单点登录?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-azure-idp"><span id="azure-idp"></span><h5>azure-idp</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-log-into-the-procore-web-application-directly-if-my-company-has-implemented-sso" title="如果我的公司已实施单点登录,我可以直接登录 Procore Web 应用程序吗?"><span class="mt-icon-article-none"></span>如果我的公司已实施单点登录,我可以直接登录 Procore Web 应用程序吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-i-need-to-create-procore-user-accounts-if-our-company-implements-sso" title="如果我们公司实施单点登录,我是否需要创建 Procore 用户账户?"><span class="mt-icon-article-none"></span>如果我们公司实施单点登录,我是否需要创建 Procore 用户账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-configure-sso-in-a-sandbox-environment-for-testing" title="在我的 Procore 公司账户中实施 SSO 之前,如何在沙箱环境中配置 SSO 以进行测试?"><span class="mt-icon-article-none"></span>在我的 Procore 公司账户中实施 SSO 之前,如何在沙箱环境中配置 SSO 以进行测试?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-log-into-procore-using-azure-ad-sso" title="如何使用Microsoft Azure AD (Entra ID)单点登录来登录 Procore?"><span class="mt-icon-article-none"></span>如何使用Microsoft Azure AD (Entra ID)单点登录来登录 Procore?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-single-sign-on-sso-with-procore" title="如何使用 Procore 设置单点登录 (SSO)?"><span class="mt-icon-article-none"></span>如何使用 Procore 设置单点登录 (SSO)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-update-an-expiring-x509-certificate-in-my-companys-procore-sso-configuration-settings" title="如何在公司的 Procore 单点登录配置设置中更新即将到期的 x509 证书?"><span class="mt-icon-article-none"></span>如何在公司的 Procore 单点登录配置设置中更新即将到期的 x509 证书?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-single-sign-on-sso" title="什么是单点登录 (SSO)?"><span class="mt-icon-article-none"></span>什么是单点登录 (SSO)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-sp-and-idp-initiated-sso" title="SP 发起的单点登录和 IdP 发起的单点登录之间有何区别?"><span class="mt-icon-article-none"></span>SP 发起的单点登录和 IdP 发起的单点登录之间有何区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-platforms-support-azure-ad-sso" title="哪些 Procore 平台支持Azure AD (Entra ID)单点登录?"><span class="mt-icon-article-none"></span>哪些 Procore 平台支持Azure AD (Entra ID)单点登录?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-sso-identity-providers-are-supported-by-procore" title="Procore 支持哪些单点登录身份提供商?"><span class="mt-icon-article-none"></span>Procore 支持哪些单点登录身份提供商?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-receiving-the-error-no-user-found-with-the-given-email-address-when-logging-in-with-sso" title="为什么我在使用 SSO 登录时收到“未发现有用户使用给定的电子邮件地址”错误?"><span class="mt-icon-article-none"></span>为什么我在使用 SSO 登录时收到“未发现有用户使用给定的电子邮件地址”错误?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-azure-sp"><span id="azure-sp"></span><h5>azure-sp</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-log-into-the-procore-web-application-directly-if-my-company-has-implemented-sso" title="如果我的公司已实施单点登录,我可以直接登录 Procore Web 应用程序吗?"><span class="mt-icon-article-none"></span>如果我的公司已实施单点登录,我可以直接登录 Procore Web 应用程序吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-i-need-to-create-procore-user-accounts-if-our-company-implements-sso" title="如果我们公司实施单点登录,我是否需要创建 Procore 用户账户?"><span class="mt-icon-article-none"></span>如果我们公司实施单点登录,我是否需要创建 Procore 用户账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-procores-sso-integrations-support-single-or-multiple-domains" title="Procore 的单点登录集成支持单个域还是多个域?"><span class="mt-icon-article-none"></span>Procore 的单点登录集成支持单个域还是多个域?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-configure-sso-in-a-sandbox-environment-for-testing" title="在我的 Procore 公司账户中实施 SSO 之前,如何在沙箱环境中配置 SSO 以进行测试?"><span class="mt-icon-article-none"></span>在我的 Procore 公司账户中实施 SSO 之前,如何在沙箱环境中配置 SSO 以进行测试?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-log-into-procore-using-azure-ad-sso" title="如何使用Microsoft Azure AD (Entra ID)单点登录来登录 Procore?"><span class="mt-icon-article-none"></span>如何使用Microsoft Azure AD (Entra ID)单点登录来登录 Procore?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-single-sign-on-sso-with-procore" title="如何使用 Procore 设置单点登录 (SSO)?"><span class="mt-icon-article-none"></span>如何使用 Procore 设置单点登录 (SSO)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-update-an-expiring-x509-certificate-in-my-companys-procore-sso-configuration-settings" title="如何在公司的 Procore 单点登录配置设置中更新即将到期的 x509 证书?"><span class="mt-icon-article-none"></span>如何在公司的 Procore 单点登录配置设置中更新即将到期的 x509 证书?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-single-sign-on-sso" title="什么是单点登录 (SSO)?"><span class="mt-icon-article-none"></span>什么是单点登录 (SSO)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-sp-and-idp-initiated-sso" title="SP 发起的单点登录和 IdP 发起的单点登录之间有何区别?"><span class="mt-icon-article-none"></span>SP 发起的单点登录和 IdP 发起的单点登录之间有何区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-platforms-support-azure-ad-sso" title="哪些 Procore 平台支持Azure AD (Entra ID)单点登录?"><span class="mt-icon-article-none"></span>哪些 Procore 平台支持Azure AD (Entra ID)单点登录?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-sso-identity-providers-are-supported-by-procore" title="Procore 支持哪些单点登录身份提供商?"><span class="mt-icon-article-none"></span>Procore 支持哪些单点登录身份提供商?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-receiving-the-error-no-user-found-with-the-given-email-address-when-logging-in-with-sso" title="为什么我在使用 SSO 登录时收到“未发现有用户使用给定的电子邮件地址”错误?"><span class="mt-icon-article-none"></span>为什么我在使用 SSO 登录时收到“未发现有用户使用给定的电子邮件地址”错误?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-bid-board"><span id="bid-board"></span><h5>bid-board</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-provide-users-with-read-only-level-permissions-with-limited-access-to-update-information-in-procore" title="我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?"><span class="mt-icon-article-none"></span>我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-my-company-receive-bid-invitations-through-the-procore-construction-network" title="我的公司如何通过 Procore 建设工程网络接收投标邀请?"><span class="mt-icon-article-none"></span>我的公司如何通过 Procore 建设工程网络接收投标邀请?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-budget-codes-in-an-estimate-create-line-items-in-a-budget" title="估算中的预算编号如何创建预算中的明细项?"><span class="mt-icon-article-none"></span>估算中的预算编号如何创建预算中的明细项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-a-bid-board-project-to-the-portfolio-tool-in-procore" title="如何将投标面板项目添加到 Procore 中的项目集合工具?"><span class="mt-icon-article-none"></span>如何将投标面板项目添加到 Procore 中的项目集合工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-fields-are-in-an-estimate-and-how-are-they-calculated" title="估算中有哪些字段以及它们是如何计算的?"><span class="mt-icon-article-none"></span>估算中有哪些字段以及它们是如何计算的?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-companys-bid-board-tool" title="公司投标板工具有哪些细分权限?"><span class="mt-icon-article-none"></span>公司投标板工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-tool-names-and-terms-are-different-in-procore-for-general-contractors-owners-and-specialty-contractors" title="Procore 中的哪些工具名称和术语对于总承包商、业主和专业承包商是不同的?"><span class="mt-icon-article-none"></span>Procore 中的哪些工具名称和术语对于总承包商、业主和专业承包商是不同的?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="哪些 Procore 工具支持细分权限?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持细分权限?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-bidding"><span id="bidding"></span><h5>bidding</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-bidders-submit-their-bid-via-email-or-must-they-sign-in" title="投标人可以通过电子邮件提交投标还是必须登录?"><span class="mt-icon-article-none"></span>投标人可以通过电子邮件提交投标还是必须登录?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-provide-users-with-read-only-level-permissions-with-limited-access-to-update-information-in-procore" title="我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?"><span class="mt-icon-article-none"></span>我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-remove-a-line-item-from-a-bid" title="能否从投标中移除明细项?"><span class="mt-icon-article-none"></span>能否从投标中移除明细项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-send-a-bid-update-email-to-every-vendor-subcontractor" title="我能否向每个供应商/分包商发送投标更新电子邮件?"><span class="mt-icon-article-none"></span>我能否向每个供应商/分包商发送投标更新电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-send-correspondence-after-the-bid-due-date" title="我可以在投标截止日期之后发送通信吗?"><span class="mt-icon-article-none"></span>我可以在投标截止日期之后发送通信吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-i-need-to-use-cost-codes-on-a-bid-form" title="我是否需要在投标表单上使用成本编号?"><span class="mt-icon-article-none"></span>我是否需要在投标表单上使用成本编号?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-duplicate-companies-handled-between-the-directory-tool-and-procore-construction-network" title="如何处理目录工具和 Procore 建设工程网络之间的重复公司?"><span class="mt-icon-article-none"></span>如何处理目录工具和 Procore 建设工程网络之间的重复公司?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-bidders-in-the-new-bid-management-experience" title="如何在新的投标管理体验中添加投标人?"><span class="mt-icon-article-none"></span>如何在新的投标管理体验中添加投标人?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-missing-cost-codes-so-i-can-migrate-projects-to-the-new-bid-management-experience" title="如何添加缺失的成本编号以便将项目迁移到新版投标管理体验?"><span class="mt-icon-article-none"></span>如何添加缺失的成本编号以便将项目迁移到新版投标管理体验?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-the-accounting-method-for-bids" title="如何为投标设置会计方法?"><span class="mt-icon-article-none"></span>如何为投标设置会计方法?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-activity-metrics-can-i-see-for-companies-listed-on-the-procore-construction-network" title="在 Procore 建设工程网络上列出的公司,我可以查看哪些活动指标?"><span class="mt-icon-article-none"></span>在 Procore 建设工程网络上列出的公司,我可以查看哪些活动指标?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-specifications" title="什么是规范?"><span class="mt-icon-article-none"></span>什么是规范?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-bidding-tool" title="项目的投标工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的投标工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-when-companies-and-users-are-added-from-the-procore-construction-network-to-the-company-directory" title="从 Procore 建设工程网络中将公司和用户添加到公司目录时会发生什么?"><span class="mt-icon-article-none"></span>从 Procore 建设工程网络中将公司和用户添加到公司目录时会发生什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-when-i-update-a-project-to-the-new-bid-management-experience" title="将项目更新到新版投标 管理体验时会发生什么?"><span class="mt-icon-article-none"></span>将项目更新到新版投标 管理体验时会发生什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-blind-bidding" title="什么是投盲标?"><span class="mt-icon-article-none"></span>什么是投盲标?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-construction-bidding-process" title="什么是建设工程投标流程?"><span class="mt-icon-article-none"></span>什么是建设工程投标流程?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-distribution-group-and-a-distribution-list" title="Procore 中的通讯组和通讯名单有什么区别?"><span class="mt-icon-article-none"></span>Procore 中的通讯组和通讯名单有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-the-old-and-new-bid-management-experience-in-the-bidding-tool" title="投标工具中旧版和新版投标管理体验之间有什么区别?"><span class="mt-icon-article-none"></span>投标工具中旧版和新版投标管理体验之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-permissions-do-bidders-need-in-order-to-be-invited-to-bid-and-submit-a-bid" title="投标人需要哪些权限才能受邀投标和提交投标?"><span class="mt-icon-article-none"></span>投标人需要哪些权限才能受邀投标和提交投标?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-does-the-qualifications-data-come-from-when-searching-for-bidders" title="搜索投标人时,"资格"数据从何而来?"><span class="mt-icon-article-none"></span>搜索投标人时,"资格"数据从何而来?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-do-i-put-my-bid-documents-in-procore" title="在 Procore 中,我应该将投标文件放在哪里?"><span class="mt-icon-article-none"></span>在 Procore 中,我应该将投标文件放在哪里?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="哪些 Procore 工具支持细分权限?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-unable-to-download-and-open-a-zip-file-from-procore" title="为什么我无法从 Procore 下载和打开 .ZIP 文件?"><span class="mt-icon-article-none"></span>为什么我无法从 Procore 下载和打开 .ZIP 文件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-some-of-my-sub-folders-in-my-bid-documents-folder-not-showing-up-when-my-bidders-download-them" title="为什么我的投标人下载[投标文件]文件夹中的子文件夹时,某些子文件夹没有显示?"><span class="mt-icon-article-none"></span>为什么我的投标人下载[投标文件]文件夹中的子文件夹时,某些子文件夹没有显示?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-bid-package-missing-from-the-planroom" title="为什么 Planroom 中没有我的投标文件包?"><span class="mt-icon-article-none"></span>为什么 Planroom 中没有我的投标文件包?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-bid-mgmt-2.0"><span id="bid-mgmt-2.0"></span><h5>bid-mgmt-2.0</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-duplicate-companies-handled-between-the-directory-tool-and-procore-construction-network" title="如何处理目录工具和 Procore 建设工程网络之间的重复公司?"><span class="mt-icon-article-none"></span>如何处理目录工具和 Procore 建设工程网络之间的重复公司?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-bidders-in-the-new-bid-management-experience" title="如何在新的投标管理体验中添加投标人?"><span class="mt-icon-article-none"></span>如何在新的投标管理体验中添加投标人?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-when-companies-and-users-are-added-from-the-procore-construction-network-to-the-company-directory" title="从 Procore 建设工程网络中将公司和用户添加到公司目录时会发生什么?"><span class="mt-icon-article-none"></span>从 Procore 建设工程网络中将公司和用户添加到公司目录时会发生什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-the-old-and-new-bid-management-experience-in-the-bidding-tool" title="投标工具中旧版和新版投标管理体验之间有什么区别?"><span class="mt-icon-article-none"></span>投标工具中旧版和新版投标管理体验之间有什么区别?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-bluebeam mt-tags-single"><span id="bluebeam"></span><h5>bluebeam</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-bluebeam-studio" title="什么是 Bluebeam Studio?"><span class="mt-icon-article-none"></span>什么是 Bluebeam Studio?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-budget"><span id="budget"></span><h5>budget</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-export-procore-budget-modifications-to-an-integrated-erp-system" title="我可以将 Procore 预算修改导出到集成 ERP 系统吗?"><span class="mt-icon-article-none"></span>我可以将 Procore 预算修改导出到集成 ERP 系统吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-provide-users-with-read-only-level-permissions-with-limited-access-to-update-information-in-procore" title="我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?"><span class="mt-icon-article-none"></span>我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-we-import-our-third-party-timecard-entries-to-work-with-the-timesheet-hours-column-in-the-budget" title="我们能否导入第三方考勤卡条目以与 Procore 预算工具中的“考勤表工时”列配合使用?"><span class="mt-icon-article-none"></span>我们能否导入第三方考勤卡条目以与 Procore 预算工具中的“考勤表工时”列配合使用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/for-which-items-in-procore-should-i-make-templates" title="我应该为 Procore 中的哪些项制作模板?"><span class="mt-icon-article-none"></span>我应该为 Procore 中的哪些项制作模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-see-where-my-non-budgeted-line-items-are-coming-from" title="如何查看未编制预算的明细项的来源?"><span class="mt-icon-article-none"></span>如何查看未编制预算的明细项的来源?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-project-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目是否已与集成 ERP 系统同步?"><span class="mt-icon-article-none"></span>如何判断 Procore 项目是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-projects-budget-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目的预算是否已与集成 ERP 系统同步?"><span class="mt-icon-article-none"></span>如何判断 Procore 项目的预算是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-the-actual-date-filter-work-on-a-budget-view" title="“按日期的实际值”筛选器如何在预算视图中工作?"><span class="mt-icon-article-none"></span>“按日期的实际值”筛选器如何在预算视图中工作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-the-budget-forecast-report" title="什么是预算预测报告?"><span class="mt-icon-article-none"></span>什么是预算预测报告?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-the-timesheet-hours-column-to-a-budget-view" title="如何将“考勤表工时”列添加到预算视图?"><span class="mt-icon-article-none"></span>如何将“考勤表工时”列添加到预算视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-unit-based-line-item-details-in-the-budget-import-template" title="如何在 Procore 的预算导入模板中添加基于单位的明细项详细信息?"><span class="mt-icon-article-none"></span>如何在 Procore 的预算导入模板中添加基于单位的明细项详细信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-adjust-my-budget-views-when-the-client-contracts-funding-or-prime-contracts-tool-is-disabled-in-my-companys-procore-account" title="当我公司 Procore 账户禁用客户合同、资金或主合同工具时,我能如何调整预算视图?"><span class="mt-icon-article-none"></span>当我公司 Procore 账户禁用客户合同、资金或主合同工具时,我能如何调整预算视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-adjust-the-procore-standard-forecast-view-when-the-client-contracts-funding-or-prime-contracts-tool-is-disabled" title="当客户合同、资金或主合同工具被禁用时,我如何调整 Procore 标准预测视图?"><span class="mt-icon-article-none"></span>当客户合同、资金或主合同工具被禁用时,我如何调整 Procore 标准预测视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-export-cost-forecast-data-from-a-procore-budget-to-cmic" title="如何将成本预测数据从 Procore 预算导出到CMiC"><span class="mt-icon-article-none"></span>如何将成本预测数据从 Procore 预算导出到CMiC</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-export-cost-forecast-data-from-a-procore-budget-to-erp" title="如何将成本预测数据从 Procore 预算导出到 ERP"><span class="mt-icon-article-none"></span>如何将成本预测数据从 Procore 预算导出到 ERP</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-preserve-cost-code-formatting-in-excel" title="如何在 Excel 中保留成本编号格式?"><span class="mt-icon-article-none"></span>如何在 Excel 中保留成本编号格式?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-the-accounting-method-for-a-contract-or-funding" title="如何设置合同或资金的会计方法?"><span class="mt-icon-article-none"></span>如何设置合同或资金的会计方法?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-a-budget-view-for-real-time-labor-productivity" title="如何为实时人工生产力设置预算视图?"><span class="mt-icon-article-none"></span>如何为实时人工生产力设置预算视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-the-procore-labor-productivity-cost-view" title="如何设置“Procore 人工生产力成本”预算视图?"><span class="mt-icon-article-none"></span>如何设置“Procore 人工生产力成本”预算视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-track-non-commitment-costs-on-a-change-event" title="如何跟踪变更事件的非合约成本?"><span class="mt-icon-article-none"></span>如何跟踪变更事件的非合约成本?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/should-i-update-my-budget-view-to-add-rfq-values-to-the-budget" title="是否应该更新预算视图以将 RFQ 值添加到预算中?"><span class="mt-icon-article-none"></span>是否应该更新预算视图以将 RFQ 值添加到预算中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-best-practices-for-using-multiple-phased-budget-uploads" title="使用多个(分阶段)预算上传的最佳做法是什么?"><span class="mt-icon-article-none"></span>使用多个(分阶段)预算上传的最佳做法是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore 默认成本编号有哪些?"><span class="mt-icon-article-none"></span>Procore 默认成本编号有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-types" title="Procore 有哪些默认成本类型?"><span class="mt-icon-article-none"></span>Procore 有哪些默认成本类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-standard-budget-views" title="什么是 Procore 的标准预算视图?"><span class="mt-icon-article-none"></span>什么是 Procore 的标准预算视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-production-quantities" title="什么是“生产数量”?"><span class="mt-icon-article-none"></span>什么是“生产数量”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-budget-warning-banner-changes" title="预算警告横幅有哪些变化?"><span class="mt-icon-article-none"></span>预算警告横幅有哪些变化?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-statuses-for-change-orders-in-procore" title="Procore 中变更通知单的默认状态是什么?"><span class="mt-icon-article-none"></span>Procore 中变更通知单的默认状态是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-financial-line-items-in-360-reporting" title="360 度报告中有哪些财务明细项?"><span class="mt-icon-article-none"></span>360 度报告中有哪些财务明细项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-budget-tool" title="项目的预算工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的预算工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-budget-code-in-procores-wbs" title="Procore 的 WBS 中的预算编号是什么?"><span class="mt-icon-article-none"></span>Procore 的 WBS 中的预算编号是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-partial-budget-line-item" title="什么是部分预算明细项?"><span class="mt-icon-article-none"></span>什么是部分预算明细项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-budget-rom-column-in-procores-budget-tool" title="Procore 预算工具中的“预算 ROM”列是什么?"><span class="mt-icon-article-none"></span>Procore 预算工具中的“预算 ROM”列是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-labor-productivity-budget-view-and-field-production-report" title="人工生产力预算视图和现场生产报告有什么区别?"><span class="mt-icon-article-none"></span>人工生产力预算视图和现场生产报告有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-source-columns-are-available-in-custom-budget-views" title="自定义 预算 视图中有哪些源列?"><span class="mt-icon-article-none"></span>自定义 预算 视图中有哪些源列?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-is-the-division-in-the-cost-code-segment-in-procores-wbs" title="Procore 的 WBS 中“成本编号”细分中的“分部”在哪里?"><span class="mt-icon-article-none"></span>Procore 的 WBS 中“成本编号”细分中的“分部”在哪里?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-budget-views-should-i-add-to-my-projects" title="我应该将哪些预算视图添加到我的 Procore 项目中?"><span class="mt-icon-article-none"></span>我应该将哪些预算视图添加到我的 Procore 项目中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-calculation-method-should-i-choose-when-using-the-forecast-to-complete-feature" title="使用“完工预测”功能时应该选择哪种计算方法?"><span class="mt-icon-article-none"></span>使用“完工预测”功能时应该选择哪种计算方法?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-cost-code-formats-are-supported-by-erp" title="我的 ERP 集成支持哪些成本编号格式?"><span class="mt-icon-article-none"></span>我的 ERP 集成支持哪些成本编号格式?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-data-columns-are-in-a-field-production-report" title="现场生产报告中包含哪些数据列?"><span class="mt-icon-article-none"></span>现场生产报告中包含哪些数据列?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-update-data-in-the-field-production-report" title="哪些 Procore 项目工具会更新现场生产报告中的数据?"><span class="mt-icon-article-none"></span>哪些 Procore 项目工具会更新现场生产报告中的数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-can-i-use-to-add-production-quantities-to-my-projects-budget" title="可以使用哪些 Procore 工具将生产数量添加到我的项目预算中?"><span class="mt-icon-article-none"></span>可以使用哪些 Procore 工具将生产数量添加到我的项目预算中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="哪些 Procore 工具支持细分权限?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-work-breakdown-structure" title="哪些 Procore 工具支持工作分解结构?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持工作分解结构?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-units-of-measure-are-included-in-procores-master-list" title="Procore 的主列表中包含哪些计量单位?"><span class="mt-icon-article-none"></span>Procore 的主列表中包含哪些计量单位?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-wbs-custom-segments" title="为什么我不能创建 WBS 自定义细分?"><span class="mt-icon-article-none"></span>为什么我不能创建 WBS 自定义细分?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-financial-health-section-of-the-health-dashboard-not-configured" title="为什么没有配置健康仪表板的财务健康部分?"><span class="mt-icon-article-none"></span>为什么没有配置健康仪表板的财务健康部分?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-isnt-the-job-to-date-costs-column-in-the-budget-matching-our-subcontractor-invoice-amounts" title="为什么预算中的“开工至今成本”列与分包商发票金额不一致?"><span class="mt-icon-article-none"></span>为什么预算中的“开工至今成本”列与分包商发票金额不一致?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-isnt-the-projects-budget-view-reflecting-labor-costs-and-production-quantities-from-timecard-entries" title="为什么项目的预算视图没有反映考勤卡条目中的人工成本和生产数量?"><span class="mt-icon-article-none"></span>为什么项目的预算视图没有反映考勤卡条目中的人工成本和生产数量?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-capital-planning"><span id="capital-planning"></span><h5>capital-planning</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-granular-permissions-available-in-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划中是否提供细分权限?"><span class="mt-icon-article-none"></span>综合财务管理和资金规划中是否提供细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-customize-the-project-type-options-in-portfolio-financials-and-capital-planning" title="我能否在综合财务管理和资金规划中自定义项目类型选项?"><span class="mt-icon-article-none"></span>我能否在综合财务管理和资金规划中自定义项目类型选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-receive-a-daily-activity-summary-for-portfolio-financials-and-capital-planning" title="我能否接收综合财务管理和资金规划的每日活动摘要?"><span class="mt-icon-article-none"></span>我能否接收综合财务管理和资金规划的每日活动摘要?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-monitor-activity-across-all-of-my-buildings-in-portfolio-financials-and-capital-planning" title="如何在综合财务管理和资金规划中监控我所有建筑物的活动?"><span class="mt-icon-article-none"></span>如何在综合财务管理和资金规划中监控我所有建筑物的活动?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-log-in-to-portfolio-financials-and-capital-planning" title="如何登录综合财务管理和资金规划?"><span class="mt-icon-article-none"></span>如何登录综合财务管理和资金规划?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-some-best-practices-for-reporting-in-portfolio-financials-and-capital-planning" title="综合财务管理务和资金规划报告的一些最佳实践是什么?"><span class="mt-icon-article-none"></span>综合财务管理务和资金规划报告的一些最佳实践是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-some-examples-of-reports-i-can-generate-in-portfolio-financials-and-capital-planning" title="可以在综合财务管理和资金规划中生成哪些报告示例?"><span class="mt-icon-article-none"></span>可以在综合财务管理和资金规划中生成哪些报告示例?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-data-points-for-capital-plans-in-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划中资金规划的数据点是什么?"><span class="mt-icon-article-none"></span>综合财务管理和资金规划中资金规划的数据点是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-arrows-mean-on-the-project-comparison-tab-of-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划的“项目比较”标签页中的箭头是什么意思?"><span class="mt-icon-article-none"></span>综合财务管理和资金规划的“项目比较”标签页中的箭头是什么意思?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-example-use-case-for-project-comaprison-in-portfolio-financials-and-capital-planning" title="什么是综合财务管理和资金规划中项目比较的示例用例?"><span class="mt-icon-article-none"></span>什么是综合财务管理和资金规划中项目比较的示例用例?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-capital-planning" title="什么是 Capital Planning 资金规划?"><span class="mt-icon-article-none"></span>什么是 Capital Planning 资金规划?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procore-community" title="什么是 Procore 社区?"><span class="mt-icon-article-none"></span>什么是 Procore 社区?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-my-tasks-page-in-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划中的“我的任务”页面是什么?"><span class="mt-icon-article-none"></span>综合财务管理和资金规划中的“我的任务”页面是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-project-page-in-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划中的项目页面是什么?"><span class="mt-icon-article-none"></span>综合财务管理和资金规划中的项目页面是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-not-receiving-emails-from-portfolio-financials" title="为什么我没有收到来自综合财务管理和资金规划的电子邮件?"><span class="mt-icon-article-none"></span>为什么我没有收到来自综合财务管理和资金规划的电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-expand-the-awarded-value-row-in-portfolio-financials-and-capital-planning" title="为什么我不能在综合财务管理和资金规划中展开“中标值”行?"><span class="mt-icon-article-none"></span>为什么我不能在综合财务管理和资金规划中展开“中标值”行?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-export-an-item-from-portfolio-financials-and-capital-planning" title="为什么我不能从综合财务管理和资金规划中导出项目?"><span class="mt-icon-article-none"></span>为什么我不能从综合财务管理和资金规划中导出项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-my-team-member-see-a-project-in-portfolio-financials-and-capital-planning" title="为什么我的团队成员无法查看综合财务管理和资金规划中的项目?"><span class="mt-icon-article-none"></span>为什么我的团队成员无法查看综合财务管理和资金规划中的项目?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-certification"><span id="certification"></span><h5>certification</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-integrate-my-lms-with-procore-certification" title="我可以将我的 LMS 与 Procore 认证集成吗?"><span class="mt-icon-article-none"></span>我可以将我的 LMS 与 Procore 认证集成吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-watch-procore-certification-and-continuing-education-courses-from-my-mobile-device" title="我可以从我的移动设备观看 Procore 认证和成人教育课程吗?"><span class="mt-icon-article-none"></span>我可以从我的移动设备观看 Procore 认证和成人教育课程吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-change-my-name-or-email-address-in-procore-certification" title="如何更改我在 Procore 认证中的姓名或电子邮件地址?"><span class="mt-icon-article-none"></span>如何更改我在 Procore 认证中的姓名或电子邮件地址?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-check-what-procore-tools-are-included-with-my-procore-account" title="如何查看我的 Procore 账户中包含哪些 Procore 工具?"><span class="mt-icon-article-none"></span>如何查看我的 Procore 账户中包含哪些 Procore 工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-view-incomplete-certification-or-ce-lessons" title="我如何查看未完成的认证或成人教育课程?"><span class="mt-icon-article-none"></span>我如何查看未完成的认证或成人教育课程?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-default-behavior-for-playing-certificiation-videos-on-certain-browsers" title="在某些浏览器上播放认证视频的默认行为是什么?"><span class="mt-icon-article-none"></span>在某些浏览器上播放认证视频的默认行为是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-is-the-procore-certification-course-that-i'm-looking-for" title="正在寻找的 Procore 认证课程在哪里?"><span class="mt-icon-article-none"></span>正在寻找的 Procore 认证课程在哪里?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-getting-the-error-missing-authentication-cookie-when-viewing-certification-lessons" title="为什么在查看认证课程时会收到“缺少身份验证 Cookie”错误?"><span class="mt-icon-article-none"></span>为什么在查看认证课程时会收到“缺少身份验证 Cookie”错误?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-having-problems-playing-training-videos" title="为什么我在播放培训视频时遇到问题?"><span class="mt-icon-article-none"></span>为什么我在播放培训视频时遇到问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-unable-to-log-in-to-the-procore-certification-site" title="为什么我无法登录 Procore 认证网站?"><span class="mt-icon-article-none"></span>为什么我无法登录 Procore 认证网站?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-one-of-my-users-in-my-certification-analytics" title="为什么我在认证分析中看不到我的某位用户?"><span class="mt-icon-article-none"></span>为什么我在认证分析中看不到我的某位用户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-certification-analytics-page-blank" title="为什么我的认证分析页面是空白的?"><span class="mt-icon-article-none"></span>为什么我的认证分析页面是空白的?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-the-percentage-complete-less-than-100-for-a-procore-certification-course" title="为什么 Procore 认证课程的完成百分比低于 100%?"><span class="mt-icon-article-none"></span>为什么 Procore 认证课程的完成百分比低于 100%?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-was-the-procore-fundamentals-training-course-deprecated" title="为什么“Procore 基础知识”培训课程被弃用?"><span class="mt-icon-article-none"></span>为什么“Procore 基础知识”培训课程被弃用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-were-the-deep-dive-training-courses-deprecated" title="为什么“深入研究培训”课程被弃用?"><span class="mt-icon-article-none"></span>为什么“深入研究培训”课程被弃用?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-change-events"><span id="change-events"></span><h5>change-events</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-create-a-change-order-for-a-contract-or-funding-before-a-downstream-collaborator-responds-to-an-rfq-for-a-change-event" title="我可以在下游协作者响应变更事件的 RFQ 之前为合同或资金创建变更通知单吗?"><span class="mt-icon-article-none"></span>我可以在下游协作者响应变更事件的 RFQ 之前为合同或资金创建变更通知单吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-customize-the-numbering-system-for-financial-management-objects-in-procore" title="我能否在 Procore 中自定义财务对象的编号系统?"><span class="mt-icon-article-none"></span>我能否在 Procore 中自定义财务对象的编号系统?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-disable-the-change-events-tool" title="我可以禁用变更事件工具吗?"><span class="mt-icon-article-none"></span>我可以禁用变更事件工具吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-enable-the-change-events-tool-on-my-project" title="可以在现有项目上启用变更事件工具吗?"><span class="mt-icon-article-none"></span>可以在现有项目上启用变更事件工具吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-financial-line-items-and-budget-codes-updated-across-change-objects" title="如何跨变更对象更新财务明细项和预算编号?"><span class="mt-icon-article-none"></span>如何跨变更对象更新财务明细项和预算编号?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-calculate-the-over-under-value-in-change-events" title="Procore 如何计算变更事件中的超支/结余值?"><span class="mt-icon-article-none"></span>Procore 如何计算变更事件中的超支/结余值?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-track-non-commitment-costs-on-a-change-event" title="如何跟踪变更事件的非合约成本?"><span class="mt-icon-article-none"></span>如何跟踪变更事件的非合约成本?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-the-change-event-tools-column-display-settings-work" title="变更事件工具的列显示设置如何工作?"><span class="mt-icon-article-none"></span>变更事件工具的列显示设置如何工作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/should-i-update-my-budget-view-to-add-rfq-values-to-the-budget" title="是否应该更新预算视图以将 RFQ 值添加到预算中?"><span class="mt-icon-article-none"></span>是否应该更新预算视图以将 RFQ 值添加到预算中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-configurable-fieldsets-and-which-procore-tools-support-them" title="什么是可配置字段集以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是可配置字段集以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-fields-and-which-procore-tools-support-them" title="什么是自定义字段以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是自定义字段以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-sections-and-which-procore-tools-support-them" title="什么是自定义部分以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是自定义部分以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-change-types-and-change-reasons" title="Procore 的默认变更类型和变更原因是什么?"><span class="mt-icon-article-none"></span>Procore 的默认变更类型和变更原因是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore 默认成本编号有哪些?"><span class="mt-icon-article-none"></span>Procore 默认成本编号有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-types" title="Procore 有哪些默认成本类型?"><span class="mt-icon-article-none"></span>Procore 有哪些默认成本类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-production-quantities" title="什么是“生产数量”?"><span class="mt-icon-article-none"></span>什么是“生产数量”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="什么是 Procore 中的“相关项”?"><span class="mt-icon-article-none"></span>什么是 Procore 中的“相关项”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-scope-options-for-change-events-in-procore" title="Procore 中变更事件的默认“范围”选项有哪些?"><span class="mt-icon-article-none"></span>Procore 中变更事件的默认“范围”选项有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-statuses-for-change-events-in-procore" title="Procore 中变更事件的默认状态有哪些?"><span class="mt-icon-article-none"></span>Procore 中变更事件的默认状态有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-change-order-tier-settings-in-project-financials" title="项目财务中有哪些不同的变更通知单层设置?"><span class="mt-icon-article-none"></span>项目财务中有哪些不同的变更通知单层设置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-rfq-statuses" title="有哪些不同的 RFQ 状态以及它们如何影响成本和变更通知单金额?"><span class="mt-icon-article-none"></span>有哪些不同的 RFQ 状态以及它们如何影响成本和变更通知单金额?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-budget-code-in-procores-wbs" title="Procore 的 WBS 中的预算编号是什么?"><span class="mt-icon-article-none"></span>Procore 的 WBS 中的预算编号是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-change-event" title="什么是变更事件?"><span class="mt-icon-article-none"></span>什么是变更事件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-change-order" title="什么是变更通知单?"><span class="mt-icon-article-none"></span>什么是变更通知单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-downstream-collaborator" title="什么是下游协作者?"><span class="mt-icon-article-none"></span>什么是下游协作者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-upstream-collaborator" title="什么是上游协作者?"><span class="mt-icon-article-none"></span>什么是上游协作者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="什么是 Procore 回收站?"><span class="mt-icon-article-none"></span>什么是 Procore 回收站?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-budget-rom-column-in-procores-budget-tool" title="Procore 预算工具中的“预算 ROM”列是什么?"><span class="mt-icon-article-none"></span>Procore 预算工具中的“预算 ROM”列是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-values-pull-into-a-change-order-sov-from-a-change-event" title="从变更事件中将哪些值提取到变更通知单 SOV?"><span class="mt-icon-article-none"></span>从变更事件中将哪些值提取到变更通知单 SOV?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-budget-tool-can-be-configured" title="预算工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>预算工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-change-events-tool-can-be-configured-as-required-optional-or-hidden" title="变更事件工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>变更事件工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-filters-can-i-apply-to-the-change-events-tool" title="我可以将哪些筛选器应用于变更事件工具?"><span class="mt-icon-article-none"></span>我可以将哪些筛选器应用于变更事件工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-can-i-use-to-add-production-quantities-to-my-projects-budget" title="可以使用哪些 Procore 工具将生产数量添加到我的项目预算中?"><span class="mt-icon-article-none"></span>可以使用哪些 Procore 工具将生产数量添加到我的项目预算中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-can-i-use-to-create-a-change-event" title="我可以使用哪些 Procore 工具创建变更事件?"><span class="mt-icon-article-none"></span>我可以使用哪些 Procore 工具创建变更事件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-work-breakdown-structure" title="哪些 Procore 工具支持工作分解结构?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持工作分解结构?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-units-of-measure-are-included-in-procores-master-list" title="Procore 的主列表中包含哪些计量单位?"><span class="mt-icon-article-none"></span>Procore 的主列表中包含哪些计量单位?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-unable-to-assign-users-to-a-rfq" title="为什么无法将用户分配到 RFQ?"><span class="mt-icon-article-none"></span>为什么无法将用户分配到 RFQ?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-change-orders"><span id="change-orders"></span><h5>change-orders</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/at-what-tier-can-an-upstream-collaborator-approve-a-change-order" title="上游协作者可以在哪一层批准变更通知单?"><span class="mt-icon-article-none"></span>上游协作者可以在哪一层批准变更通知单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-create-a-list-of-overdue-pccos" title="我可以创建一份逾期主合同变更通知单 (PCCO) 的清单吗?"><span class="mt-icon-article-none"></span>我可以创建一份逾期主合同变更通知单 (PCCO) 的清单吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-customize-the-numbering-system-for-financial-management-objects-in-procore" title="我能否在 Procore 中自定义财务对象的编号系统?"><span class="mt-icon-article-none"></span>我能否在 Procore 中自定义财务对象的编号系统?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-financial-line-items-and-budget-codes-updated-across-change-objects" title="如何跨变更对象更新财务明细项和预算编号?"><span class="mt-icon-article-none"></span>如何跨变更对象更新财务明细项和预算编号?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-tax-codes-on-a-procore-project" title="如何在 Procore 项目中使用税务代码?"><span class="mt-icon-article-none"></span>如何在 Procore 项目中使用税务代码?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-change-my-web-browsers-default-email-client-for-mailto-links" title="如何为 mailto 链接更改我的 Web 浏览器的默认电子邮件客户端?"><span class="mt-icon-article-none"></span>如何为 mailto 链接更改我的 Web 浏览器的默认电子邮件客户端?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-delete-line-items-in-approved-change-orders" title="如何删除已获批变更通知单中的明细项?"><span class="mt-icon-article-none"></span>如何删除已获批变更通知单中的明细项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-filter-items-by-multi-tiered-locations" title="如何按多层地点筛选项?"><span class="mt-icon-article-none"></span>如何按多层地点筛选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-change-types-and-change-reasons" title="Procore 的默认变更类型和变更原因是什么?"><span class="mt-icon-article-none"></span>Procore 的默认变更类型和变更原因是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore 默认成本编号有哪些?"><span class="mt-icon-article-none"></span>Procore 默认成本编号有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-production-quantities" title="什么是“生产数量”?"><span class="mt-icon-article-none"></span>什么是“生产数量”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="什么是 Procore 中的“相关项”?"><span class="mt-icon-article-none"></span>什么是 Procore 中的“相关项”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-statuses-for-change-orders-in-procore" title="Procore 中变更通知单的默认状态是什么?"><span class="mt-icon-article-none"></span>Procore 中变更通知单的默认状态是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-change-order-tier-settings-in-project-financials" title="项目财务中有哪些不同的变更通知单层设置?"><span class="mt-icon-article-none"></span>项目财务中有哪些不同的变更通知单层设置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-financial-line-items-in-360-reporting" title="360 度报告中有哪些财务明细项?"><span class="mt-icon-article-none"></span>360 度报告中有哪些财务明细项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-different-docusign-banners-in-procore-mean" title="Procore 中不同的 DocuSign® 横幅是什么意思?"><span class="mt-icon-article-none"></span>Procore 中不同的 DocuSign® 横幅是什么意思?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-change-orders-tool" title="项目的变更通知单工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的变更通知单工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-when-restrict-non-draft-edits-to-contracts-and-change-orders-and-enable-always-editable-schedule-of-values-are-both-enabled" title="当"限制对合同和变更通知单的非草稿编辑"和"启用始终可编辑的分项价格表"同时启用时会发生什么?"><span class="mt-icon-article-none"></span>当"限制对合同和变更通知单的非草稿编辑"和"启用始终可编辑的分项价格表"同时启用时会发生什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-budget-code-in-procores-wbs" title="Procore 的 WBS 中的预算编号是什么?"><span class="mt-icon-article-none"></span>Procore 的 WBS 中的预算编号是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-change-order" title="什么是变更通知单?"><span class="mt-icon-article-none"></span>什么是变更通知单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-downstream-collaborator" title="什么是下游协作者?"><span class="mt-icon-article-none"></span>什么是下游协作者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-upstream-collaborator" title="什么是上游协作者?"><span class="mt-icon-article-none"></span>什么是上游协作者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-values-pull-into-a-change-order-sov-from-a-change-event" title="从变更事件中将哪些值提取到变更通知单 SOV?"><span class="mt-icon-article-none"></span>从变更事件中将哪些值提取到变更通知单 SOV?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-support-the-docusign-integration" title="哪些 Procore 项目工具支持 DocuSign® 集成?"><span class="mt-icon-article-none"></span>哪些 Procore 项目工具支持 DocuSign® 集成?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-update-data-in-the-field-production-report" title="哪些 Procore 项目工具会更新现场生产报告中的数据?"><span class="mt-icon-article-none"></span>哪些 Procore 项目工具会更新现场生产报告中的数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-work-breakdown-structure" title="哪些 Procore 工具支持工作分解结构?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持工作分解结构?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-units-of-measure-are-included-in-procores-master-list" title="Procore 的主列表中包含哪些计量单位?"><span class="mt-icon-article-none"></span>Procore 的主列表中包含哪些计量单位?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-a-change-order" title="为什么我无法创建变更通知单?"><span class="mt-icon-article-none"></span>为什么我无法创建变更通知单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-edit-or-delete-an-approved-change-order" title="为什么我不能编辑或删除“获批”变更通知单?"><span class="mt-icon-article-none"></span>为什么我不能编辑或删除“获批”变更通知单?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-client-contracts"><span id="client-contracts"></span><h5>client-contracts</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/at-what-tier-can-an-upstream-collaborator-approve-a-change-order" title="上游协作者可以在哪一层批准变更通知单?"><span class="mt-icon-article-none"></span>上游协作者可以在哪一层批准变更通知单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-create-a-change-order-for-a-contract-or-funding-before-a-downstream-collaborator-responds-to-an-rfq-for-a-change-event" title="我可以在下游协作者响应变更事件的 RFQ 之前为合同或资金创建变更通知单吗?"><span class="mt-icon-article-none"></span>我可以在下游协作者响应变更事件的 RFQ 之前为合同或资金创建变更通知单吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-customize-the-numbering-system-for-financial-management-objects-in-procore" title="我能否在 Procore 中自定义财务对象的编号系统?"><span class="mt-icon-article-none"></span>我能否在 Procore 中自定义财务对象的编号系统?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-import-a-csv-into-a-project-financial-tools-schedule-of-values-if-it-has-blank-values" title="如果 CSV 具有空白值,我能否将其导入到项目财务管理工具的分项价格表中?"><span class="mt-icon-article-none"></span>如果 CSV 具有空白值,我能否将其导入到项目财务管理工具的分项价格表中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-tax-codes-on-a-procore-project" title="如何在 Procore 项目中使用税务代码?"><span class="mt-icon-article-none"></span>如何在 Procore 项目中使用税务代码?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-automatically-complete-amounts-on-an-upstream-invoice" title="Procore 如何自动完成上游 发票上的金额? (旧版)"><span class="mt-icon-article-none"></span>Procore 如何自动完成上游 发票上的金额? (旧版)</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-calculate-an-invoices-current-payment-due-amount" title="Procore 如何计算发票的“当前到期应付款”金额?"><span class="mt-icon-article-none"></span>Procore 如何计算发票的“当前到期应付款”金额?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-adjust-my-budget-views-when-the-client-contracts-funding-or-prime-contracts-tool-is-disabled-in-my-companys-procore-account" title="当我公司 Procore 账户禁用客户合同、资金或主合同工具时,我能如何调整预算视图?"><span class="mt-icon-article-none"></span>当我公司 Procore 账户禁用客户合同、资金或主合同工具时,我能如何调整预算视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-change-my-web-browsers-default-email-client-for-mailto-links" title="如何为 mailto 链接更改我的 Web 浏览器的默认电子邮件客户端?"><span class="mt-icon-article-none"></span>如何为 mailto 链接更改我的 Web 浏览器的默认电子邮件客户端?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-sections-and-which-procore-tools-support-them" title="什么是自定义部分以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是自定义部分以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-change-types-and-change-reasons" title="Procore 的默认变更类型和变更原因是什么?"><span class="mt-icon-article-none"></span>Procore 的默认变更类型和变更原因是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore 默认成本编号有哪些?"><span class="mt-icon-article-none"></span>Procore 默认成本编号有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-types" title="Procore 有哪些默认成本类型?"><span class="mt-icon-article-none"></span>Procore 有哪些默认成本类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="什么是 Procore 中的“相关项”?"><span class="mt-icon-article-none"></span>什么是 Procore 中的“相关项”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-statuses-for-change-orders-in-procore" title="Procore 中变更通知单的默认状态是什么?"><span class="mt-icon-article-none"></span>Procore 中变更通知单的默认状态是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-statuses-for-procore-invoices" title="Procore 发票的默认状态有哪些?"><span class="mt-icon-article-none"></span>Procore 发票的默认状态有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-change-order-tier-settings-in-project-financials" title="项目财务中有哪些不同的变更通知单层设置?"><span class="mt-icon-article-none"></span>项目财务中有哪些不同的变更通知单层设置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-types-of-invoices-in-procore" title="Procore 中有哪些不同类型的发票?"><span class="mt-icon-article-none"></span>Procore 中有哪些不同类型的发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-docusign-fields-and-can-i-customize-them" title="什么是 DocuSign® 字段,我可以自定义它们吗?"><span class="mt-icon-article-none"></span>什么是 DocuSign® 字段,我可以自定义它们吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-requirements-for-importing-sov-line-items-from-csv" title="从 CSV 导入 SOV 行项目有哪些要求?"><span class="mt-icon-article-none"></span>从 CSV 导入 SOV 行项目有哪些要求?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-client-contracts-tool" title="项目的客户合同工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的客户合同工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-budget-code-in-procores-wbs" title="Procore 的 WBS 中的预算编号是什么?"><span class="mt-icon-article-none"></span>Procore 的 WBS 中的预算编号是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-upstream-collaborator" title="什么是上游协作者?"><span class="mt-icon-article-none"></span>什么是上游协作者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-distribution-group-and-a-distribution-list" title="Procore 中的通讯组和通讯名单有什么区别?"><span class="mt-icon-article-none"></span>Procore 中的通讯组和通讯名单有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-horizontal-and-vertical-markup" title="水平分项利润加成和垂直汇总利润加成有什么区别?"><span class="mt-icon-article-none"></span>水平分项利润加成和垂直汇总利润加成有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-enable-always-editable-schedule-of-values-setting" title="什么是“启用始终可编辑的分项价格表”设置?"><span class="mt-icon-article-none"></span>什么是“启用始终可编辑的分项价格表”设置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-tool-names-and-terms-are-different-in-procore-for-general-contractors-owners-and-specialty-contractors" title="Procore 中的哪些工具名称和术语对于总承包商、业主和专业承包商是不同的?"><span class="mt-icon-article-none"></span>Procore 中的哪些工具名称和术语对于总承包商、业主和专业承包商是不同的?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-support-the-docusign-integration" title="哪些 Procore 项目工具支持 DocuSign® 集成?"><span class="mt-icon-article-none"></span>哪些 Procore 项目工具支持 DocuSign® 集成?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="哪些 Procore 工具支持细分权限?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-work-breakdown-structure" title="哪些 Procore 工具支持工作分解结构?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持工作分解结构?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-units-of-measure-are-included-in-procores-master-list" title="Procore 的主列表中包含哪些计量单位?"><span class="mt-icon-article-none"></span>Procore 的主列表中包含哪些计量单位?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-a-change-order" title="为什么我无法创建变更通知单?"><span class="mt-icon-article-none"></span>为什么我无法创建变更通知单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-edit-or-delete-an-approved-change-order" title="为什么我不能编辑或删除“获批”变更通知单?"><span class="mt-icon-article-none"></span>为什么我不能编辑或删除“获批”变更通知单?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-cmic"><span id="cmic"></span><h5>cmic</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-project-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目是否已与集成 ERP 系统同步?"><span class="mt-icon-article-none"></span>如何判断 Procore 项目是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-export-cost-forecast-data-from-a-procore-budget-to-cmic" title="如何将成本预测数据从 Procore 预算导出到CMiC"><span class="mt-icon-article-none"></span>如何将成本预测数据从 Procore 预算导出到CMiC</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-if-i-have-duplicate-company-records-in-procores-company-directory" title="如果 Procore 公司目录中存在重复公司记录会怎样?"><span class="mt-icon-article-none"></span>如果 Procore 公司目录中存在重复公司记录会怎样?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-a-notification-when-an-item-is-rejected-from-erp" title="当项被 ERP 拒绝时,谁会收到通知?"><span class="mt-icon-article-none"></span>当项被 ERP 拒绝时,谁会收到通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-accept-reject-options-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到接受/拒绝选项?"><span class="mt-icon-article-none"></span>为什么我在 ERP 集成工具中看不到接受/拒绝选项?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-commitments"><span id="commitments"></span><h5>commitments</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-commitments-private-by-default" title="默认情况下合约是私密的吗?"><span class="mt-icon-article-none"></span>默认情况下合约是私密的吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-customize-the-numbering-system-for-financial-management-objects-in-procore" title="我能否在 Procore 中自定义财务对象的编号系统?"><span class="mt-icon-article-none"></span>我能否在 Procore 中自定义财务对象的编号系统?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-edit-or-delete-a-commitment-after-its-been-synced-with-an-erp-integration" title="合约与集成 ERP 系统同步后,我能否编辑或删除?"><span class="mt-icon-article-none"></span>合约与集成 ERP 系统同步后,我能否编辑或删除?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-import-a-csv-into-a-project-financial-tools-schedule-of-values-if-it-has-blank-values" title="如果 CSV 具有空白值,我能否将其导入到项目财务管理工具的分项价格表中?"><span class="mt-icon-article-none"></span>如果 CSV 具有空白值,我能否将其导入到项目财务管理工具的分项价格表中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-provide-users-with-read-only-level-permissions-with-limited-access-to-update-information-in-procore" title="我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?"><span class="mt-icon-article-none"></span>我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/does-an-invoice-contact-need-an-invite-to-bill-to-submit-an-invoice" title="发票联系人是否需要“结算邀请”才能提交发票?"><span class="mt-icon-article-none"></span>发票联系人是否需要“结算邀请”才能提交发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-tax-codes-on-a-procore-project" title="如何在 Procore 项目中使用税务代码?"><span class="mt-icon-article-none"></span>如何在 Procore 项目中使用税务代码?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-calculate-an-invoices-current-payment-due-amount" title="Procore 如何计算发票的“当前到期应付款”金额?"><span class="mt-icon-article-none"></span>Procore 如何计算发票的“当前到期应付款”金额?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-bill-for-stored-materials-in-an-invoice" title="如何在发票中为库存材料开具账单? (测试版)"><span class="mt-icon-article-none"></span>如何在发票中为库存材料开具账单? (测试版)</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-change-my-web-browsers-default-email-client-for-mailto-links" title="如何为 mailto 链接更改我的 Web 浏览器的默认电子邮件客户端?"><span class="mt-icon-article-none"></span>如何为 mailto 链接更改我的 Web 浏览器的默认电子邮件客户端?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-create-a-billing-period-for-an-invoice" title="如何为发票创建结算期?"><span class="mt-icon-article-none"></span>如何为发票创建结算期?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-prevent-or-allow-overbilling-on-a-subcontractor-invoice" title="如何防止或允许分包商发票超额 计费?"><span class="mt-icon-article-none"></span>如何防止或允许分包商发票超额 计费?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-and-release-retainage-on-a-subcontractor-invoice-in-procore" title="如何在 Procore 中设置和返还分包商发票的保留金?"><span class="mt-icon-article-none"></span>如何在 Procore 中设置和返还分包商发票的保留金?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-the-accounting-method-for-a-contract-or-funding" title="如何设置合同或资金的会计方法?"><span class="mt-icon-article-none"></span>如何设置合同或资金的会计方法?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-submit-a-subcontractor-schedule-of-values-for-a-procore-commitment" title="如何提交 Procore 合约的分包商分项价格表?"><span class="mt-icon-article-none"></span>如何提交 Procore 合约的分包商分项价格表?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-track-the-actual-materials-received-and-installed-on-a-job-site" title="如何跟踪在作业现场接收和安装的实际材料?"><span class="mt-icon-article-none"></span>如何跟踪在作业现场接收和安装的实际材料?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-fields-and-which-procore-tools-support-them" title="什么是自定义字段以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是自定义字段以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-sections-and-which-procore-tools-support-them" title="什么是自定义部分以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是自定义部分以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-multi-tiered-locations" title="什么是多层地点?"><span class="mt-icon-article-none"></span>什么是多层地点?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-change-types-and-change-reasons" title="Procore 的默认变更类型和变更原因是什么?"><span class="mt-icon-article-none"></span>Procore 的默认变更类型和变更原因是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore 默认成本编号有哪些?"><span class="mt-icon-article-none"></span>Procore 默认成本编号有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-types" title="Procore 有哪些默认成本类型?"><span class="mt-icon-article-none"></span>Procore 有哪些默认成本类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="什么是 Procore 中的“相关项”?"><span class="mt-icon-article-none"></span>什么是 Procore 中的“相关项”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-columns-in-the-contracts-tab-of-the-commitments-tool" title="合约工具的合同标签页中的默认列有哪些?"><span class="mt-icon-article-none"></span>合约工具的合同标签页中的默认列有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-commitment-statuses-in-procore" title="Procore 中的默认合约状态有哪些?"><span class="mt-icon-article-none"></span>Procore 中的默认合约状态有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-statuses-for-change-orders-in-procore" title="Procore 中变更通知单的默认状态是什么?"><span class="mt-icon-article-none"></span>Procore 中变更通知单的默认状态是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-statuses-for-procore-invoices" title="Procore 发票的默认状态有哪些?"><span class="mt-icon-article-none"></span>Procore 发票的默认状态有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-change-order-tier-settings-in-project-financials" title="项目财务中有哪些不同的变更通知单层设置?"><span class="mt-icon-article-none"></span>项目财务中有哪些不同的变更通知单层设置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-types-of-invoices-in-procore" title="Procore 中有哪些不同类型的发票?"><span class="mt-icon-article-none"></span>Procore 中有哪些不同类型的发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-docusign-fields-and-can-i-customize-them" title="什么是 DocuSign® 字段,我可以自定义它们吗?"><span class="mt-icon-article-none"></span>什么是 DocuSign® 字段,我可以自定义它们吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-financial-line-items-in-360-reporting" title="360 度报告中有哪些财务明细项?"><span class="mt-icon-article-none"></span>360 度报告中有哪些财务明细项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-requirements-for-importing-sov-line-items-from-csv" title="从 CSV 导入 SOV 行项目有哪些要求?"><span class="mt-icon-article-none"></span>从 CSV 导入 SOV 行项目有哪些要求?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-i-do-when-a-commimtment-fails-to-export-from-the-erp-integrations-tool" title="当合约未能从 ERP 集成工具中导出时,我该怎么办?"><span class="mt-icon-article-none"></span>当合约未能从 ERP 集成工具中导出时,我该怎么办?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-different-docusign-banners-in-procore-mean" title="Procore 中不同的 DocuSign® 横幅是什么意思?"><span class="mt-icon-article-none"></span>Procore 中不同的 DocuSign® 横幅是什么意思?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-we-need-to-consider-before-allowing-downstream-collaborators-to-submit-invoices-in-procore" title="在允许下游协作者在 Procore 中提交发票之前,我们需要考虑什么?"><span class="mt-icon-article-none"></span>在允许下游协作者在 Procore 中提交发票之前,我们需要考虑什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-commitments-tool" title="项目的合约工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的合约工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-when-restrict-non-draft-edits-to-contracts-and-change-orders-and-enable-always-editable-schedule-of-values-are-both-enabled" title="当"限制对合同和变更通知单的非草稿编辑"和"启用始终可编辑的分项价格表"同时启用时会发生什么?"><span class="mt-icon-article-none"></span>当"限制对合同和变更通知单的非草稿编辑"和"启用始终可编辑的分项价格表"同时启用时会发生什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-budget-code-in-procores-wbs" title="Procore 的 WBS 中的预算编号是什么?"><span class="mt-icon-article-none"></span>Procore 的 WBS 中的预算编号是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-downstream-collaborator" title="什么是下游协作者?"><span class="mt-icon-article-none"></span>什么是下游协作者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-invoice-administrator" title="什么是发票 管理员?"><span class="mt-icon-article-none"></span>什么是发票 管理员?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-invoice-contact" title="什么是发票联系人?"><span class="mt-icon-article-none"></span>什么是发票联系人?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-subcontractor-schedule-of-values" title="什么是分包商分项价格表?"><span class="mt-icon-article-none"></span>什么是分包商分项价格表?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="什么是 Procore 回收站?"><span class="mt-icon-article-none"></span>什么是 Procore 回收站?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-sliding-scale-retention" title="什么是浮动保留金?"><span class="mt-icon-article-none"></span>什么是浮动保留金?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-enable-always-editable-schedule-of-values-setting" title="什么是“启用始终可编辑的分项价格表”设置?"><span class="mt-icon-article-none"></span>什么是“启用始终可编辑的分项价格表”设置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-commitments-number" title="合约“编号 (#)”的最大字符长度是多少?"><span class="mt-icon-article-none"></span>合约“编号 (#)”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-commitment-title" title="合约“标题”的最大字符长度是多少?"><span class="mt-icon-article-none"></span>合约“标题”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-tool-names-and-terms-are-different-in-procore-for-general-contractors-owners-and-specialty-contractors" title="Procore 中的哪些工具名称和术语对于总承包商、业主和专业承包商是不同的?"><span class="mt-icon-article-none"></span>Procore 中的哪些工具名称和术语对于总承包商、业主和专业承包商是不同的?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-does-procore-send-email-notifications-to-invoice-contacts" title="Procore 何时向发票联系人发送电子邮件通知?"><span class="mt-icon-article-none"></span>Procore 何时向发票联系人发送电子邮件通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-commitments-tool-can-be-configured-as-required-optional-or-hidden" title="合约工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>合约工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-support-the-docusign-integration" title="哪些 Procore 项目工具支持 DocuSign® 集成?"><span class="mt-icon-article-none"></span>哪些 Procore 项目工具支持 DocuSign® 集成?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="哪些 Procore 工具支持细分权限?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-work-breakdown-structure" title="哪些 Procore 工具支持工作分解结构?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持工作分解结构?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-workflows" title="哪些 Procore 工具支持工作流?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持工作流?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-setting-do-i-enable-in-quickbooks-to-export-invoices-with-the-erp-integrations-tool" title="在 QuickBooks® 中启用哪个设置才能使用 ERP 集成工具导出发票?"><span class="mt-icon-article-none"></span>在 QuickBooks® 中启用哪个设置才能使用 ERP 集成工具导出发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-units-of-measure-are-included-in-procores-master-list" title="Procore 的主列表中包含哪些计量单位?"><span class="mt-icon-article-none"></span>Procore 的主列表中包含哪些计量单位?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-change-order-line-items-duplicated-on-my-subcontractor-invoice" title="为什么我的变更通知单明细项在我的分包商发票上重复?"><span class="mt-icon-article-none"></span>为什么我的变更通知单明细项在我的分包商发票上重复?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-can-i-view-the-commitments-tool-but-cannot-see-any-commitments" title="为什么我可以查看合约工具但看不到任何合约?"><span class="mt-icon-article-none"></span>为什么我可以查看合约工具但看不到任何合约?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-a-change-order" title="为什么我无法创建变更通知单?"><span class="mt-icon-article-none"></span>为什么我无法创建变更通知单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-edit-or-delete-an-approved-change-order" title="为什么我不能编辑或删除“获批”变更通知单?"><span class="mt-icon-article-none"></span>为什么我不能编辑或删除“获批”变更通知单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-isnt-the-job-to-date-costs-column-in-the-budget-matching-our-subcontractor-invoice-amounts" title="为什么预算中的“开工至今成本”列与分包商发票金额不一致?"><span class="mt-icon-article-none"></span>为什么预算中的“开工至今成本”列与分包商发票金额不一致?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-company-admin"><span id="company-admin"></span><h5>company-admin</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-segments-and-segment-items" title="什么是细分和细分项?"><span class="mt-icon-article-none"></span>什么是细分和细分项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-when-restrict-non-draft-edits-to-contracts-and-change-orders-and-enable-always-editable-schedule-of-values-are-both-enabled" title="当"限制对合同和变更通知单的非草稿编辑"和"启用始终可编辑的分项价格表"同时启用时会发生什么?"><span class="mt-icon-article-none"></span>当"限制对合同和变更通知单的非草稿编辑"和"启用始终可编辑的分项价格表"同时启用时会发生什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-receiving-an-error-message-in-the-procore-imports-app" title="为什么我在 Procore Imports 应用程序中收到错误消息?"><span class="mt-icon-article-none"></span>为什么我在 Procore Imports 应用程序中收到错误消息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-wbs-custom-segments" title="为什么我不能创建 WBS 自定义细分?"><span class="mt-icon-article-none"></span>为什么我不能创建 WBS 自定义细分?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-company-administrator"><span id="company-administrator"></span><h5>company-administrator</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-copy-one-projects-folders-to-a-new-project" title="我可以将一个项目的文档文件夹复制到一个新项目吗?"><span class="mt-icon-article-none"></span>我可以将一个项目的文档文件夹复制到一个新项目吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-company-admin" title="什么是公司管理员?"><span class="mt-icon-article-none"></span>什么是公司管理员?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-company-directory"><span id="company-directory"></span><h5>company-directory</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-apply-permissions-templates-to-multiple-users-at-one-time" title="可以一次将权限模板应用于多个用户吗?"><span class="mt-icon-article-none"></span>可以一次将权限模板应用于多个用户吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-column-header-updates-in-the-import-templates" title="导入模板中的列标题更新是什么?"><span class="mt-icon-article-none"></span>导入模板中的列标题更新是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-receiving-an-error-message-in-the-procore-imports-app" title="为什么我在 Procore Imports 应用程序中收到错误消息?"><span class="mt-icon-article-none"></span>为什么我在 Procore Imports 应用程序中收到错误消息?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-company-documents mt-tags-single"><span id="company-documents"></span><h5>company-documents</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-company-timesheets"><span id="company-timesheets"></span><h5>company-timesheets</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-limit-the-number-of-cost-codes-available-to-choose-from-when-creating-timesheet-entries" title="创建考勤表条目时,可以限制可供选择的成本编号数量吗?"><span class="mt-icon-article-none"></span>创建考勤表条目时,可以限制可供选择的成本编号数量吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-differences-between-procores-time-modules" title="Procore 的工时模块之间有什么区别?"><span class="mt-icon-article-none"></span>Procore 的工时模块之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-private-timecard-and-which-timecards-can-be-set-to-private" title="什么是“私密”考勤卡以及哪些考勤卡可以设置为私密?"><span class="mt-icon-article-none"></span>什么是“私密”考勤卡以及哪些考勤卡可以设置为私密?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-connection-manager"><span id="connection-manager"></span><h5>connection-manager</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-notifications-about-project-connections" title="谁会收到有关项目连接的通知?"><span class="mt-icon-article-none"></span>谁会收到有关项目连接的通知?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-continuing-education mt-tags-single"><span id="continuing_education"></span><h5>continuing education</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-groundbreak-2021-sessions-qualified-for-ce-credit" title="哪些 Groundbreak 2021 会议有资格获得 CE 学分?"><span class="mt-icon-article-none"></span>哪些 Groundbreak 2021 会议有资格获得 CE 学分?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-conversations"><span id="conversations"></span><h5>conversations</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-export-data-from-the-conversations-tool" title="是否可以从对话工具中导出数据?"><span class="mt-icon-article-none"></span>是否可以从对话工具中导出数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-someone-become-a-follower-of-a-conversation-in-procore" title="某人如何才能成为 Procore 中对话的“关注者”?"><span class="mt-icon-article-none"></span>某人如何才能成为 Procore 中对话的“关注者”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-opt-in-to-the-beta-for-procore-conversations" title="如何选择加入 Procore 对话的测试版?"><span class="mt-icon-article-none"></span>如何选择加入 Procore 对话的测试版?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-notifications-work-for-the-conversations-tool-in-procore" title="Procore 中的对话工具的通知如何工作?"><span class="mt-icon-article-none"></span>Procore 中的对话工具的通知如何工作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-permissions-work-for-the-conversations-tool" title="对话工具的权限如何工作?"><span class="mt-icon-article-none"></span>对话工具的权限如何工作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-items-can-be-added-to-a-message-in-the-conversations-tool" title="可以在对话工具中将哪些项目添加到消息中?"><span class="mt-icon-article-none"></span>可以在对话工具中将哪些项目添加到消息中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-languages-can-be-automatically-translated-in-the-conversations-tool" title="对话工具可以自动翻译哪些语言?"><span class="mt-icon-article-none"></span>对话工具可以自动翻译哪些语言?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-project-tools-support-conversations" title="哪些项目工具支持对话?"><span class="mt-icon-article-none"></span>哪些项目工具支持对话?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-not-seeing-all-of-my-projects-in-the-conversations-tool" title="为什么没有在对话工具中看到我的所有项目?"><span class="mt-icon-article-none"></span>为什么没有在对话工具中看到我的所有项目?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-coordination-issues"><span id="coordination-issues"></span><h5>coordination-issues</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-procore-plugin-and-what-is-it-used-for" title="什么是 Procore插件,有何用途?"><span class="mt-icon-article-none"></span>什么是 Procore插件,有何用途?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-coordination-issues-tool-can-be-configured-as-required-optional-or-hidden" title="协调问题工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>协调问题工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-emails-about-coordination-issues" title="谁会收到有关协调问题的电子邮件?"><span class="mt-icon-article-none"></span>谁会收到有关协调问题的电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-not-seeing-all-of-my-viewpoints-in-the-viewpoints-inport-tool" title="为什么我在视点导入工具中看不到我的所有视点?"><span class="mt-icon-article-none"></span>为什么我在视点导入工具中看不到我的所有视点?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-not-seeing-my-issues-after-i-associate-the-file-to-my-project" title="为什么我在将文件关联到我的项目后看不到我的问题?"><span class="mt-icon-article-none"></span>为什么我在将文件关联到我的项目后看不到我的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-viewpoints-being-created-after-i-use-the-markup-tools" title="为什么在使用标记工具后会创建视点?"><span class="mt-icon-article-none"></span>为什么在使用标记工具后会创建视点?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-use-the-cloud-redline-tool-in-navisworks" title="为什么我不能在 Navisworks® 中使用云红线工具?"><span class="mt-icon-article-none"></span>为什么我不能在 Navisworks® 中使用云红线工具?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-correspondence"><span id="correspondence"></span><h5>correspondence</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-a-private-correspondence-item-be-made-public" title="私密通信可以公开吗?"><span class="mt-icon-article-none"></span>私密通信可以公开吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-export-a-correspondence-if-it-is-set-to-private" title="我可以导出设置为私密的通信吗?"><span class="mt-icon-article-none"></span>我可以导出设置为私密的通信吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-provide-users-with-read-only-level-permissions-with-limited-access-to-update-information-in-procore" title="我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?"><span class="mt-icon-article-none"></span>我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-check-who-has-permissions-to-see-a-specific-correspondence" title="如何查看谁有权查看特定通信?"><span class="mt-icon-article-none"></span>如何查看谁有权查看特定通信?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-check-who-has-permissions-to-see-a-type-of-correspondence" title="如何查看谁有权查看某种类型的通信?"><span class="mt-icon-article-none"></span>如何查看谁有权查看某种类型的通信?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-configure-privacy-settings-for-a-correspondence-item" title="如何为通信项配置隐私设置?"><span class="mt-icon-article-none"></span>如何为通信项配置隐私设置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-permissions-for-a-correspondence-type" title="如何设置通信类型的权限?"><span class="mt-icon-article-none"></span>如何设置通信类型的权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/if-a-user-does-not-have-permission-to-view-a-specific-correspondence-type-can-they-see-that-correspondence-type-in-their-project-overview-dashboard" title="如果用户没有查看特定通信类型的权限,他们能否在其“项目概况”仪表板中查看该通信类型?"><span class="mt-icon-article-none"></span>如果用户没有查看特定通信类型的权限,他们能否在其“项目概况”仪表板中查看该通信类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-configurable-fieldsets-and-which-procore-tools-support-them" title="什么是可配置字段集以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是可配置字段集以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-sections-and-which-procore-tools-support-them" title="什么是自定义部分以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是自定义部分以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-multi-tiered-locations" title="什么是多层地点?"><span class="mt-icon-article-none"></span>什么是多层地点?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="什么是 Procore 中的“相关项”?"><span class="mt-icon-article-none"></span>什么是 Procore 中的“相关项”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-super-private-correspondence-types" title="什么是超级私密通信类型?"><span class="mt-icon-article-none"></span>什么是超级私密通信类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-template-correspondence-types" title="Procore 模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-file-types-and-formats-are-supported-in-the-attachment-viewer" title="统一附件查看器支持哪些文件类型和格式?"><span class="mt-icon-article-none"></span>统一附件查看器支持哪些文件类型和格式?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-correspondence-tool" title="项目的通信工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的通信工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-correspondence-tool" title="什么是通信工具?"><span class="mt-icon-article-none"></span>什么是通信工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-document-management-attachments-and-attachments-from-other-tools" title="文档管理附件和来自其他工具的附件有什么区别?"><span class="mt-icon-article-none"></span>文档管理附件和来自其他工具的附件有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what's-the-difference-between-a-job-a-parent-job-and-a-sub-job" title="作业、父作业和子作业之间有何区别?"><span class="mt-icon-article-none"></span>作业、父作业和子作业之间有何区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-types-of-correspondences-can-be-created-with-the-correspondence-tool" title="可以使用通信工具创建哪些类型的通信?"><span class="mt-icon-article-none"></span>可以使用通信工具创建哪些类型的通信?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-correspondence-tool-can-be-configured-as-required-optional-or-hidden" title="通信工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>通信工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-support-the-docusign-integration" title="哪些 Procore 项目工具支持 DocuSign® 集成?"><span class="mt-icon-article-none"></span>哪些 Procore 项目工具支持 DocuSign® 集成?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-let-me-view-a-digital-image-attachment-in-a-map-view" title="哪些 Procore 工具可让我在地图视图中查看数字图像附件?"><span class="mt-icon-article-none"></span>哪些 Procore 工具可让我在地图视图中查看数字图像附件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="哪些 Procore 工具支持细分权限?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-tools-can-attach-document-management-files" title="哪些工具可以添加文档管理文件?"><span class="mt-icon-article-none"></span>哪些工具可以添加文档管理文件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-correspondence-item-emails-and-push-notifications" title="谁会接收通信项电子邮件和推送通知?"><span class="mt-icon-article-none"></span>谁会接收通信项电子邮件和推送通知?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-cost-catalog"><span id="cost-catalog"></span><h5>cost-catalog</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-cost-catalog-item-types-relate-to-cost-types-in-procore" title="成本目录项类型与 Procore 中的成本类型有何关系?"><span class="mt-icon-article-none"></span>成本目录项类型与 Procore 中的成本类型有何关系?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-complete-tasks-in-procore-that-i-used-to-complete-in-the-standalone-procore-estimating-application" title="如何在 Procore 中完成以前在独立 Procore Estimating 应用程序中完成的任务?"><span class="mt-icon-article-none"></span>如何在 Procore 中完成以前在独立 Procore Estimating 应用程序中完成的任务?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-catalog-category-and-item-in-the-cost-catalog-for-estimating" title="用于估算的成本目录中的目录、类别和项之间有什么区别?"><span class="mt-icon-article-none"></span>用于估算的成本目录中的目录、类别和项之间有什么区别?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-crews"><span id="crews"></span><h5>crews</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-provide-users-with-read-only-level-permissions-with-limited-access-to-update-information-in-procore" title="我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?"><span class="mt-icon-article-none"></span>我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-contact-in-procore-and-which-project-tools-support-the-concept" title="Procore 中的“联系人”是什么?哪些项目工具支持此概念?"><span class="mt-icon-article-none"></span>Procore 中的“联系人”是什么?哪些项目工具支持此概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-resource-tracking-and-resource-management" title=""资源跟踪"和"资源管理"有什么区别?"><span class="mt-icon-article-none"></span>"资源跟踪"和"资源管理"有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-classifications" title="哪些 Procore 工具支持“工种”?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持“工种”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="哪些 Procore 工具支持细分权限?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-wbs-custom-segments" title="为什么我不能创建 WBS 自定义细分?"><span class="mt-icon-article-none"></span>为什么我不能创建 WBS 自定义细分?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-custom-report mt-tags-single"><span id="custom_report"></span><h5>custom report</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-financial-line-items-in-360-reporting" title="360 度报告中有哪些财务明细项?"><span class="mt-icon-article-none"></span>360 度报告中有哪些财务明细项?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-custom-solutions"><span id="custom-solutions"></span><h5>custom-solutions</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-custom-fields-and-configurable-fieldsets" title="自定义字段和可配置字段集之间有什么区别?"><span class="mt-icon-article-none"></span>自定义字段和可配置字段集之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-let-me-view-a-digital-image-attachment-in-a-map-view" title="哪些 Procore 工具可让我在地图视图中查看数字图像附件?"><span class="mt-icon-article-none"></span>哪些 Procore 工具可让我在地图视图中查看数字图像附件?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-daily-log"><span id="daily-log"></span><h5>daily-log</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-provide-users-with-read-only-level-permissions-with-limited-access-to-update-information-in-procore" title="我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?"><span class="mt-icon-article-none"></span>我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-rearrange-the-order-of-daily-log-sections" title="能否重新排列各工作日志部分的顺序?"><span class="mt-icon-article-none"></span>能否重新排列各工作日志部分的顺序?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-receive-weather-delay-alerts-by-phone-or-email" title="我可以通过电话或电子邮件接收天气导致的延误警报吗?"><span class="mt-icon-article-none"></span>我可以通过电话或电子邮件接收天气导致的延误警报吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-view-reports-of-a-single-log-or-a-single-person-within-a-log" title="如何查看单个日志或日志中某人的报告?"><span class="mt-icon-article-none"></span>如何查看单个日志或日志中某人的报告?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-change-my-web-browsers-default-email-client-for-mailto-links" title="如何为 mailto 链接更改我的 Web 浏览器的默认电子邮件客户端?"><span class="mt-icon-article-none"></span>如何为 mailto 链接更改我的 Web 浏览器的默认电子邮件客户端?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-configure-user-permissions-for-multi-tier-approvals-with-timekeeping" title="如何为带计时的多层审批配置用户权限?"><span class="mt-icon-article-none"></span>如何为带计时的多层审批配置用户权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-determine-the-latitude-and-longitude-values-on-an-address" title="如何确定地址的纬度和经度值?"><span class="mt-icon-article-none"></span>如何确定地址的纬度和经度值?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enable-additional-workforce-labor-types-for-the-daily-log" title="如何为工作日志启用其他劳动力人工类型?"><span class="mt-icon-article-none"></span>如何为工作日志启用其他劳动力人工类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-look-at-the-daily-log-for-multiple-days" title="如何查看多天的工作日志?"><span class="mt-icon-article-none"></span>如何查看多天的工作日志?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-track-the-actual-materials-received-and-installed-on-a-job-site" title="如何跟踪在作业现场接收和安装的实际材料?"><span class="mt-icon-article-none"></span>如何跟踪在作业现场接收和安装的实际材料?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-will-my-previous-timecard-entries-work-with-timesheets" title="如何在考勤表中使用以前的考勤卡条目?"><span class="mt-icon-article-none"></span>如何在考勤表中使用以前的考勤卡条目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-fields-and-which-procore-tools-support-them" title="什么是自定义字段以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是自定义字段以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-multi-tiered-locations" title="什么是多层地点?"><span class="mt-icon-article-none"></span>什么是多层地点?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-production-quantities" title="什么是“生产数量”?"><span class="mt-icon-article-none"></span>什么是“生产数量”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="什么是 Procore 中的“相关项”?"><span class="mt-icon-article-none"></span>什么是 Procore 中的“相关项”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-differences-between-procores-time-modules" title="Procore 的工时模块之间有什么区别?"><span class="mt-icon-article-none"></span>Procore 的工时模块之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-daily-log-tool" title="项目的工作日志工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的工作日志工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-daily-log" title="什么是工作日志?"><span class="mt-icon-article-none"></span>什么是工作日志?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-updating-the-work-log-section-why-cant-i-see-any-names-in-my-resource-list" title="更新作业日志部分时,为什么在我的资源列表中看不到任何名称?"><span class="mt-icon-article-none"></span>更新作业日志部分时,为什么在我的资源列表中看不到任何名称?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-can-i-find-the-email-address-to-send-photos-documents-and-emails-to-procore" title="在哪里可以找到用于向 Procore 发送工作日志、照片、文档和电子邮件的电子邮件地址?"><span class="mt-icon-article-none"></span>在哪里可以找到用于向 Procore 发送工作日志、照片、文档和电子邮件的电子邮件地址?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-daily-log-tool-can-be-configured-as-required-optional-or-hidden" title="工作日志工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>工作日志工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-can-i-use-to-add-production-quantities-to-my-projects-budget" title="可以使用哪些 Procore 工具将生产数量添加到我的项目预算中?"><span class="mt-icon-article-none"></span>可以使用哪些 Procore 工具将生产数量添加到我的项目预算中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-let-me-view-a-digital-image-attachment-in-a-map-view" title="哪些 Procore 工具可让我在地图视图中查看数字图像附件?"><span class="mt-icon-article-none"></span>哪些 Procore 工具可让我在地图视图中查看数字图像附件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-classifications" title="哪些 Procore 工具支持“工种”?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持“工种”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="哪些 Procore 工具支持细分权限?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-weather-providers-are-supported-by-procore" title="Procore 支持哪些天气预报提供商?"><span class="mt-icon-article-none"></span>Procore 支持哪些天气预报提供商?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-the-weather-conditions-not-showing-on-my-daily-log-weather-log" title="为什么我的工作日志天气日志中不显示天气条件?"><span class="mt-icon-article-none"></span>为什么我的工作日志天气日志中不显示天气条件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-change-the-weather-delay-or-any-of-the-boxes-on-that-row" title="为什么不能更改天气导致的延误或该行上的任何框?"><span class="mt-icon-article-none"></span>为什么不能更改天气导致的延误或该行上的任何框?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-isnt-my-project-weather-working" title="为什么我的项目天气小部件不工作?"><span class="mt-icon-article-none"></span>为什么我的项目天气小部件不工作?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-direct-costs"><span id="direct-costs"></span><h5>direct-costs</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-provide-users-with-read-only-level-permissions-with-limited-access-to-update-information-in-procore" title="我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?"><span class="mt-icon-article-none"></span>我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore 默认成本编号有哪些?"><span class="mt-icon-article-none"></span>Procore 默认成本编号有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-types" title="Procore 有哪些默认成本类型?"><span class="mt-icon-article-none"></span>Procore 有哪些默认成本类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-direct-costs-tool" title="项目的直接成本工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的直接成本工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-budget-code-in-procores-wbs" title="Procore 的 WBS 中的预算编号是什么?"><span class="mt-icon-article-none"></span>Procore 的 WBS 中的预算编号是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="哪些 Procore 工具支持细分权限?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-work-breakdown-structure" title="哪些 Procore 工具支持工作分解结构?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持工作分解结构?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-directory"><span id="directory"></span><h5>directory</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-a-person-be-associated-with-multiple-vendor-company-records-in-the-company-directory" title="人员能否与公司级别目录工具中的多个供应商/公司记录关联?"><span class="mt-icon-article-none"></span>人员能否与公司级别目录工具中的多个供应商/公司记录关联?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-add-personal-avatars-or-profile-photos-for-other-users" title="我可以为其他用户添加个人头像或个人资料照片吗?"><span class="mt-icon-article-none"></span>我可以为其他用户添加个人头像或个人资料照片吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-change-a-persons-email-address-in-the-directory" title="我能否更改目录中人员的电子邮件地址?"><span class="mt-icon-article-none"></span>我能否更改目录中人员的电子邮件地址?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-provide-users-with-read-only-level-permissions-with-limited-access-to-update-information-in-procore" title="我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?"><span class="mt-icon-article-none"></span>我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-receive-weather-delay-alerts-by-phone-or-email" title="我可以通过电话或电子邮件接收天气导致的延误警报吗?"><span class="mt-icon-article-none"></span>我可以通过电话或电子邮件接收天气导致的延误警报吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-an-avatar-or-profile-photo-to-procore" title="如何向 Procore 添加头像或个人资料照片?"><span class="mt-icon-article-none"></span>如何向 Procore 添加头像或个人资料照片?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-allow-standard-users-to-add-users-to-the-project-directory" title="如何允许“标准”用户添加到项目目录?"><span class="mt-icon-article-none"></span>如何允许“标准”用户添加到项目目录?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-revoke-project-access-for-a-procore-user" title="如何撤销 Procore 用户的项目访问权限?"><span class="mt-icon-article-none"></span>如何撤销 Procore 用户的项目访问权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-use-tags-keywords-in-procore" title="如何在 Procore 中使用标签/关键词?"><span class="mt-icon-article-none"></span>如何在 Procore 中使用标签/关键词?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-verify-an-australian-business-number-abn" title="如何验证澳大利亚商业编号 (ABN)?"><span class="mt-icon-article-none"></span>如何验证澳大利亚商业编号 (ABN)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/i-thought-i-added-a-user-but-now-i-cant-find-that-person-what-happened" title="我以为自己添加了一个用户,但现在找不到那个人。发生了什么?"><span class="mt-icon-article-none"></span>我以为自己添加了一个用户,但现在找不到那个人。发生了什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-configurable-fieldsets-and-which-procore-tools-support-them" title="什么是可配置字段集以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是可配置字段集以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-role-based-permissions" title="什么是基于角色的权限?"><span class="mt-icon-article-none"></span>什么是基于角色的权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-permission-levels-in-procore" title="Procore 中的默认权限级别有哪些?"><span class="mt-icon-article-none"></span>Procore 中的默认权限级别有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-project-permissions-templates-in-procore" title="什么是 Procore 中的默认项目权限模板?"><span class="mt-icon-article-none"></span>什么是 Procore 中的默认项目权限模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-statuses-for-insurance-in-procore" title="在 Procore 中,保险的默认状态有哪些?"><span class="mt-icon-article-none"></span>在 Procore 中,保险的默认状态有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-fields-are-searched-in-the-directory-tool" title="在目录工具中可搜索到哪些字段?"><span class="mt-icon-article-none"></span>在目录工具中可搜索到哪些字段?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-fieldset-configurations-are-recommended-for-configurable-fieldsets" title="对于可配置字段集推荐使用哪些配置?"><span class="mt-icon-article-none"></span>对于可配置字段集推荐使用哪些配置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-company-level-directory-tool" title="公司级别目录工具有哪些细分权限?"><span class="mt-icon-article-none"></span>公司级别目录工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-project-level-directory-tool" title="项目级别目录工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目级别目录工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-if-i-have-duplicate-company-records-in-procores-company-directory" title="如果 Procore 公司目录中存在重复公司记录会怎样?"><span class="mt-icon-article-none"></span>如果 Procore 公司目录中存在重复公司记录会怎样?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-when-companies-and-users-are-added-from-the-procore-construction-network-to-the-company-directory" title="从 Procore 建设工程网络中将公司和用户添加到公司目录时会发生什么?"><span class="mt-icon-article-none"></span>从 Procore 建设工程网络中将公司和用户添加到公司目录时会发生什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-company-admin" title="什么是公司管理员?"><span class="mt-icon-article-none"></span>什么是公司管理员?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-contact-in-procore-and-which-project-tools-support-the-concept" title="Procore 中的“联系人”是什么?哪些项目工具支持此概念?"><span class="mt-icon-article-none"></span>Procore 中的“联系人”是什么?哪些项目工具支持此概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-advanced-search-symbol-in-procore" title="Procore 中高级搜索符号是什么?"><span class="mt-icon-article-none"></span>Procore 中高级搜索符号是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-assignable-permissions-template" title="什么是可分配权限模板?"><span class="mt-icon-article-none"></span>什么是可分配权限模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-permissions-template" title="什么是权限模板?"><span class="mt-icon-article-none"></span>什么是权限模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-accepting-a-procore-invitation-and-creating-a-free-procore-account" title="接受 Procore 邀请和创建免费 Procore 公司账户之间有什么区别?"><span class="mt-icon-article-none"></span>接受 Procore 邀请和创建免费 Procore 公司账户之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-distribution-group-and-a-distribution-list" title="Procore 中的通讯组和通讯名单有什么区别?"><span class="mt-icon-article-none"></span>Procore 中的通讯组和通讯名单有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-resource-tracking-and-resource-management" title=""资源跟踪"和"资源管理"有什么区别?"><span class="mt-icon-article-none"></span>"资源跟踪"和"资源管理"有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-company-name-in-the-directory-tool" title="目录工具中“公司名称”的最大字符长度是多少?"><span class="mt-icon-article-none"></span>目录工具中“公司名称”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-permissions-do-i-need-to-add-users-to-a-procore-project" title="将用户添加到 Procore 项目需要什么权限?"><span class="mt-icon-article-none"></span>将用户添加到 Procore 项目需要什么权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-standard-trades-are-available-in-procore" title="Procore 中提供哪些标准行业?"><span class="mt-icon-article-none"></span>Procore 中提供哪些标准行业?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-directory-tool-can-be-configured-as-required-optional-or-hidden" title="目录工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>目录工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-insurance-fields-in-a-procore-company-sync-with-sage-300-cre" title="Procore 公司的哪些保险字段与 Sage 300 CRE 供应商同步?"><span class="mt-icon-article-none"></span>Procore 公司的哪些保险字段与 Sage 300 CRE 供应商同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-classifications" title="哪些 Procore 工具支持“工种”?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持“工种”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="哪些 Procore 工具支持细分权限?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-can-see-users-listed-in-a-project-directory" title="谁可以查看项目目录中列出的用户?"><span class="mt-icon-article-none"></span>谁可以查看项目目录中列出的用户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-notification-emails-when-a-vendors-insurance-expires" title="当供应商的保险到期时,谁会收到通知电子邮件?"><span class="mt-icon-article-none"></span>当供应商的保险到期时,谁会收到通知电子邮件?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-doc-mgmt"><span id="doc-mgmt"></span><h5>doc-mgmt</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/document-management-general-faq" title="文档管理:一般常见问题"><span class="mt-icon-article-none"></span>文档管理:一般常见问题</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-locked-or-restricted-pdf-files-handled-in-the-document-management-tool" title="如何在文档管理工具中处理锁定或受限的 PDF 文件?"><span class="mt-icon-article-none"></span>如何在文档管理工具中处理锁定或受限的 PDF 文件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-improve-the-accuracy-of-data-populated-in-the-document-management-tool" title="如何提高文档管理工具中填充数据的准确性?"><span class="mt-icon-article-none"></span>如何提高文档管理工具中填充数据的准确性?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-decide-which-document-version-is-the-latest-in-the-document-management-tool" title="Procore 如何确定文档管理工具中的最新文档版本?"><span class="mt-icon-article-none"></span>Procore 如何确定文档管理工具中的最新文档版本?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-permissions-work-in-the-document-management-tool" title="权限如何在文档管理工具中发挥作用?"><span class="mt-icon-article-none"></span>权限如何在文档管理工具中发挥作用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-fields-in-the-document-management-tool" title="文档管理工具中有哪些不同的字段?"><span class="mt-icon-article-none"></span>文档管理工具中有哪些不同的字段?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-data-can-procore-automatically-populate-when-uploading-files-to-the-document-management-tool" title="将文件上传到文档管理工具时,Procore 可以自动填充什么数据?"><span class="mt-icon-article-none"></span>将文件上传到文档管理工具时,Procore 可以自动填充什么数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-file-types-and-formats-are-supported-in-the-attachment-viewer" title="统一附件查看器支持哪些文件类型和格式?"><span class="mt-icon-article-none"></span>统一附件查看器支持哪些文件类型和格式?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-document-management-workflows" title="文档管理工作流有哪些细分权限?"><span class="mt-icon-article-none"></span>文档管理工作流有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-when-i-import-a-document-management-file-into-the-drawings-tool" title="当我将文档管理文件导入图纸工具时会发生什么?"><span class="mt-icon-article-none"></span>当我将文档管理文件导入图纸工具时会发生什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-collection-in-the-document-management-tool" title="什么是文档管理工具中的集合?"><span class="mt-icon-article-none"></span>什么是文档管理工具中的集合?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-naming-standard-in-the-document-management-tool" title="什么是文档管理工具中的命名标准?"><span class="mt-icon-article-none"></span>什么是文档管理工具中的命名标准?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-code-field-on-the-project-creation-page" title="项目创建页面上的“Code”字段是什么?"><span class="mt-icon-article-none"></span>项目创建页面上的“Code”字段是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-document-management-attachments-and-attachments-from-other-tools" title="文档管理附件和来自其他工具的附件有什么区别?"><span class="mt-icon-article-none"></span>文档管理附件和来自其他工具的附件有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-the-documents-and-document-management-tools-in-procore" title="Procore 中的“文档”和“文档管理”工具之间有什么区别?"><span class="mt-icon-article-none"></span>Procore 中的“文档”和“文档管理”工具之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-tools-can-attach-document-management-files" title="哪些工具可以添加文档管理文件?"><span class="mt-icon-article-none"></span>哪些工具可以添加文档管理文件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-delete-certain-saved-views-in-the-document-management-tool" title="为什么我不能删除文档管理工具中的某些保存的视图?"><span class="mt-icon-article-none"></span>为什么我不能删除文档管理工具中的某些保存的视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-turn-off-certain-document-types-for-the-document-management-tool" title="为什么我不能关闭文档管理工具的某些文档"类型"?"><span class="mt-icon-article-none"></span>为什么我不能关闭文档管理工具的某些文档"类型"?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-documents"><span id="documents"></span><h5>documents</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-copy-files-in-the-documents-tool-to-another-project" title="我可以将文档工具中的文件复制到另一个项目吗?"><span class="mt-icon-article-none"></span>我可以将文档工具中的文件复制到另一个项目吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-copy-one-projects-folders-to-a-new-project" title="我可以将一个项目的文档文件夹复制到一个新项目吗?"><span class="mt-icon-article-none"></span>我可以将一个项目的文档文件夹复制到一个新项目吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-make-files-and-folders-private-by-default" title="是否可以默认在文档工具中将文件和文件夹设为私密?"><span class="mt-icon-article-none"></span>是否可以默认在文档工具中将文件和文件夹设为私密?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-provide-users-with-read-only-level-permissions-with-limited-access-to-update-information-in-procore" title="我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?"><span class="mt-icon-article-none"></span>我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-upload-large-files-to-the-procore-web-app" title="如何将大文件上传到Procore Web应用程序?"><span class="mt-icon-article-none"></span>如何将大文件上传到Procore Web应用程序?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-the-office-365-integration-in-procores-documents-tool-work" title="Procore 文档工具中的 Office 365 集成如何运行?"><span class="mt-icon-article-none"></span>Procore 文档工具中的 Office 365 集成如何运行?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-know-if-someone-has-downloaded-a-file" title="我如何知道是否有人下载了文件?"><span class="mt-icon-article-none"></span>我如何知道是否有人下载了文件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-different-docusign-banners-in-procore-mean" title="Procore 中不同的 DocuSign® 横幅是什么意思?"><span class="mt-icon-article-none"></span>Procore 中不同的 DocuSign® 横幅是什么意思?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-file-types-are-supported-for-the-3d-model-viewer-in-the-documents-tool" title="文档工具中的 3D 模型查看器支持哪些文件类型?"><span class="mt-icon-article-none"></span>文档工具中的 3D 模型查看器支持哪些文件类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-project-level-documents-tool" title="项目级别文档工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目级别文档工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-schedules-folder-in-the-documents-tool-and-why-cant-i-delete-it" title="文档工具中的“进度计划”文件夹是什么?为什么不能删除?"><span class="mt-icon-article-none"></span>文档工具中的“进度计划”文件夹是什么?为什么不能删除?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-do-if-a-model-is-too-large-to-view-in-procores-web-application" title="如果模型太大而无法在 Procore 的 Web 应用程序中查看,我该怎么办?"><span class="mt-icon-article-none"></span>如果模型太大而无法在 Procore 的 Web 应用程序中查看,我该怎么办?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-do-if-my-model-file-is-too-large-to-process-in-the-documents-tool" title="如果我的模型文件太大而无法在文档工具中处理,我该怎么办?"><span class="mt-icon-article-none"></span>如果我的模型文件太大而无法在文档工具中处理,我该怎么办?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-can-i-find-the-email-address-to-send-photos-documents-and-emails-to-procore" title="在哪里可以找到用于向 Procore 发送工作日志、照片、文档和电子邮件的电子邮件地址?"><span class="mt-icon-article-none"></span>在哪里可以找到用于向 Procore 发送工作日志、照片、文档和电子邮件的电子邮件地址?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-documents-tool-can-be-configured-as-required-optional-or-hidden" title="文档工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>文档工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-support-the-docusign-integration" title="哪些 Procore 项目工具支持 DocuSign® 集成?"><span class="mt-icon-article-none"></span>哪些 Procore 项目工具支持 DocuSign® 集成?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="哪些 Procore 工具支持细分权限?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-unable-to-download-and-open-a-zip-file-from-procore" title="为什么我无法从 Procore 下载和打开 .ZIP 文件?"><span class="mt-icon-article-none"></span>为什么我无法从 Procore 下载和打开 .ZIP 文件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-file-uploads-failing" title="为什么我的文件上传失败?"><span class="mt-icon-article-none"></span>为什么我的文件上传失败?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-some-of-my-sub-folders-in-my-bid-documents-folder-not-showing-up-when-my-bidders-download-them" title="为什么我的投标人下载[投标文件]文件夹中的子文件夹时,某些子文件夹没有显示?"><span class="mt-icon-article-none"></span>为什么我的投标人下载[投标文件]文件夹中的子文件夹时,某些子文件夹没有显示?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-delete-items-in-procore" title="为什么不能在 Procore 中删除项?"><span class="mt-icon-article-none"></span>为什么不能在 Procore 中删除项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-would-the-file-size-of-a-model-increase-in-procore" title="为什么 Procore 中模型的文件大小会增加?"><span class="mt-icon-article-none"></span>为什么 Procore 中模型的文件大小会增加?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-docusign"><span id="docusign"></span><h5>docusign</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/does-the-docusign-integration-have-any-file-size-limits-on-attachments-or-envelopes" title="DocuSign® 集成对附件或信封是否有任何文件大小限制?"><span class="mt-icon-article-none"></span>DocuSign® 集成对附件或信封是否有任何文件大小限制?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-i-need-a-docusign-account" title="我需要拥有 DocuSign© 账户吗?"><span class="mt-icon-article-none"></span>我需要拥有 DocuSign© 账户吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enable-the-docusign-integration" title="如何启用 DocuSign® 集成?"><span class="mt-icon-article-none"></span>如何启用 DocuSign® 集成?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-get-a-docusign-account" title="如何获得 DocuSign® 账户?"><span class="mt-icon-article-none"></span>如何获得 DocuSign® 账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-know-if-my-docusign-account-is-synced-to-procores" title="如何了解我的 DocuSign 账户是否与 Procore 同步?"><span class="mt-icon-article-none"></span>如何了解我的 DocuSign 账户是否与 Procore 同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-docusign-fields-and-can-i-customize-them" title="什么是 DocuSign® 字段,我可以自定义它们吗?"><span class="mt-icon-article-none"></span>什么是 DocuSign® 字段,我可以自定义它们吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-does-it-mean-when-my-docusign-account-is-synced-with-procore" title="当我的 DocuSign 账户与我的 Procore 账户“同步”时,这意味着什么?我该如何同步?"><span class="mt-icon-article-none"></span>当我的 DocuSign 账户与我的 Procore 账户“同步”时,这意味着什么?我该如何同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-different-docusign-banners-in-procore-mean" title="Procore 中不同的 DocuSign® 横幅是什么意思?"><span class="mt-icon-article-none"></span>Procore 中不同的 DocuSign® 横幅是什么意思?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-support-the-docusign-integration" title="哪些 Procore 项目工具支持 DocuSign® 集成?"><span class="mt-icon-article-none"></span>哪些 Procore 项目工具支持 DocuSign® 集成?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-do-not-migrate"><span id="do-not-migrate"></span><h5>do-not-migrate</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-commitments-private-by-default" title="默认情况下合约是私密的吗?"><span class="mt-icon-article-none"></span>默认情况下合约是私密的吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-granular-permissions-available-in-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划中是否提供细分权限?"><span class="mt-icon-article-none"></span>综合财务管理和资金规划中是否提供细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-copy-estimates-from-the-estimating-tool-to-a-new-project" title="是否可以将估算值从估算工具复制到新项目?"><span class="mt-icon-article-none"></span>是否可以将估算值从估算工具复制到新项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-create-an-rfi-with-a-duplicate-number" title="我能否创建具有重复编号的 RFI?"><span class="mt-icon-article-none"></span>我能否创建具有重复编号的 RFI?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-customize-the-project-type-options-in-portfolio-financials-and-capital-planning" title="我能否在综合财务管理和资金规划中自定义项目类型选项?"><span class="mt-icon-article-none"></span>我能否在综合财务管理和资金规划中自定义项目类型选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-edit-my-change-order-or-invoice-in-portfolio-financials" title="我可以在综合财务管理中编辑我的变更通知单或发票吗?"><span class="mt-icon-article-none"></span>我可以在综合财务管理中编辑我的变更通知单或发票吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-export-a-correspondence-if-it-is-set-to-private" title="我可以导出设置为私密的通信吗?"><span class="mt-icon-article-none"></span>我可以导出设置为私密的通信吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-export-a-lookahead-schedule" title="可以导出展望进度计划吗?"><span class="mt-icon-article-none"></span>可以导出展望进度计划吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-limit-the-number-of-cost-codes-available-to-choose-from-when-creating-timesheet-entries" title="创建考勤表条目时,可以限制可供选择的成本编号数量吗?"><span class="mt-icon-article-none"></span>创建考勤表条目时,可以限制可供选择的成本编号数量吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-mark-all-photos-private-in-the-projects-photos-tool" title="我可以在项目的照片工具中将所有照片标记为“私密”吗?"><span class="mt-icon-article-none"></span>我可以在项目的照片工具中将所有照片标记为“私密”吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-print-or-export-a-copy-of-my-bid-in-the-bid-room" title="我能否在投标室打印或导出我的投标副本?"><span class="mt-icon-article-none"></span>我能否在投标室打印或导出我的投标副本?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-receive-a-daily-activity-summary-for-portfolio-financials-and-capital-planning" title="我能否接收综合财务管理和资金规划的每日活动摘要?"><span class="mt-icon-article-none"></span>我能否接收综合财务管理和资金规划的每日活动摘要?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-update-the-percent-complete-field-on-the-web-application" title="我能否更新 Procore Web 应用程序上的“完成百分比”字段?"><span class="mt-icon-article-none"></span>我能否更新 Procore Web 应用程序上的“完成百分比”字段?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/does-the-docusign-integration-have-any-file-size-limits-on-attachments-or-envelopes" title="DocuSign® 集成对附件或信封是否有任何文件大小限制?"><span class="mt-icon-article-none"></span>DocuSign® 集成对附件或信封是否有任何文件大小限制?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/does-the-hh2-synchronization-process-for-sage-300-cre-require-a-terminal-server" title="Sage 300 CRE 的 hh2 同步流程是否需要终端服务器?"><span class="mt-icon-article-none"></span>Sage 300 CRE 的 hh2 同步流程是否需要终端服务器?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-milestones-in-portfolio-financials-sync-with-my-external-project-schedule" title="综合财务管理中的里程碑是否与我的外部项目进度计划同步?"><span class="mt-icon-article-none"></span>综合财务管理中的里程碑是否与我的外部项目进度计划同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-task-codes-configured-for-time-entry" title="如何为工时条目配置任务编号?"><span class="mt-icon-article-none"></span>如何为工时条目配置任务编号?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-templates-created-in-portfolio-financials" title="如何在综合财务管理中创建模板?"><span class="mt-icon-article-none"></span>如何在综合财务管理中创建模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-bidders-get-locked-out-of-a-sealed-bid-room-in-portfolio-financials" title="如何将投标人锁定在综合财务管理的密封投标室之外?"><span class="mt-icon-article-none"></span>如何将投标人锁定在综合财务管理的密封投标室之外?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-add-custom-bid-form-templates-for-the-bid-room-in-portfolio-financials" title="如何为综合财务管理中的投标室添加自定义投标表单模板?"><span class="mt-icon-article-none"></span>如何为综合财务管理中的投标室添加自定义投标表单模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-add-custom-cost-tracker-templates-in-portfolio-financials" title="如何在综合财务管理中添加自定义成本跟踪器模板?"><span class="mt-icon-article-none"></span>如何在综合财务管理中添加自定义成本跟踪器模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-budget-individual-values-within-a-cost-item-in-portfolio-financials" title="如何为综合财务管理中成本项的单个值编制预算?"><span class="mt-icon-article-none"></span>如何为综合财务管理中成本项的单个值编制预算?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-check-who-has-permissions-to-see-a-type-of-correspondence" title="如何查看谁有权查看某种类型的通信?"><span class="mt-icon-article-none"></span>如何查看谁有权查看某种类型的通信?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-grant-a-limited-user-access-to-a-specific-bid-room-in-portfolio-financials" title="如何授予“有限”用户访问综合财务管理中特定投标室的权限?"><span class="mt-icon-article-none"></span>如何授予“有限”用户访问综合财务管理中特定投标室的权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-handle-cm-fees-in-portfolio-financials" title="我如何处理综合财务管理中的 CM 费用?"><span class="mt-icon-article-none"></span>我如何处理综合财务管理中的 CM 费用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-keep-track-of-emailed-specifications" title="如何跟踪通过电子邮件发送的规范?"><span class="mt-icon-article-none"></span>如何跟踪通过电子邮件发送的规范?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-manually-add-a-bid-in-portfolio-financials" title="如何在综合财务管理中手动添加投标?"><span class="mt-icon-article-none"></span>如何在综合财务管理中手动添加投标?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-monitor-activity-across-all-of-my-buildings-in-portfolio-financials-and-capital-planning" title="如何在综合财务管理和资金规划中监控我所有建筑物的活动?"><span class="mt-icon-article-none"></span>如何在综合财务管理和资金规划中监控我所有建筑物的活动?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-request-a-folder-template-for-documents-in-my-portfolio-financials-projects" title="如何为综合财务管理项目中的文档请求文件夹模板?"><span class="mt-icon-article-none"></span>如何为综合财务管理项目中的文档请求文件夹模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-run-a-best-and-final-round-of-bidding-in-portfolio-financials" title="如何在综合财务管理中进行最佳和最后一轮投标?"><span class="mt-icon-article-none"></span>如何在综合财务管理中进行最佳和最后一轮投标?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-share-access-to-a-bid-room-in-portfolio-financials" title="如何在综合财务管理中共享对投标室的访问权限?"><span class="mt-icon-article-none"></span>如何在综合财务管理中共享对投标室的访问权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-share-access-to-a-contract-room-in-portfolio-financials" title="如何在综合财务管理中共享对合同室的访问权限?"><span class="mt-icon-article-none"></span>如何在综合财务管理中共享对合同室的访问权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-projects-budget-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目的预算是否已与集成 ERP 系统同步?"><span class="mt-icon-article-none"></span>如何判断 Procore 项目的预算是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-unaward-a-bid-or-contract-in-portfolio-financials" title="如何在综合财务管理中解除投标或合同?"><span class="mt-icon-article-none"></span>如何在综合财务管理中解除投标或合同?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-procores-incidents-tool-to-record-coronavirus-covid-19-infection-information" title="如何使用 Procore 的事件工具记录冠状病毒 (COVID-19) 感染信息?"><span class="mt-icon-article-none"></span>如何使用 Procore 的事件工具记录冠状病毒 (COVID-19) 感染信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-approval-workflows-get-set-up-in-portfolio-financials" title="如何在综合财务管理中设置审批工作流?"><span class="mt-icon-article-none"></span>如何在综合财务管理中设置审批工作流?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-bid-approvals-work-in-portfolio-financials" title="综合财务管理中的投标审批如何运作?"><span class="mt-icon-article-none"></span>综合财务管理中的投标审批如何运作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-budget-approvals-work-in-portfolio-financials" title="综合财务管理中的预算审批如何运作?"><span class="mt-icon-article-none"></span>综合财务管理中的预算审批如何运作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-cash-flow-forecasts-and-capital-plans-interact-in-portfolio-financials-and-capital-planning" title="现金流预测和资金规划如何在综合财务管理和资金规划中相互作用?"><span class="mt-icon-article-none"></span>现金流预测和资金规划如何在综合财务管理和资金规划中相互作用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-change-order-approvals-work-in-portfolio-financials" title="综合财务管理中的变更通知单审批如何运作?"><span class="mt-icon-article-none"></span>综合财务管理中的变更通知单审批如何运作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-contract-approvals-work-in-portfolio-financials" title="综合财务管理中的合同审批如何运作?"><span class="mt-icon-article-none"></span>综合财务管理中的合同审批如何运作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-a-building-to-my-account-in-portfolio-financials" title="如何在综合财务管理中将建筑添加到我的账户?"><span class="mt-icon-article-none"></span>如何在综合财务管理中将建筑添加到我的账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-additional-contacts-to-a-vendor-profile-in-portfolio-financials" title="如何向综合财务管理中的供应商配置文件添加其他联系人?"><span class="mt-icon-article-none"></span>如何向综合财务管理中的供应商配置文件添加其他联系人?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-an-avatar-or-profile-photo-to-procore" title="如何向 Procore 添加头像或个人资料照片?"><span class="mt-icon-article-none"></span>如何向 Procore 添加头像或个人资料照片?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-procore-as-an-endorsable-skill-on-my-linkedin-profile" title="如何在我的 LinkedIn 个人资料中添加“Procore”作为可认可的技能?"><span class="mt-icon-article-none"></span>如何在我的 LinkedIn 个人资料中添加“Procore”作为可认可的技能?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-tools-to-my-favorites-list-in-procore" title="如何在 Procore 中将工具添加到收藏夹列表?"><span class="mt-icon-article-none"></span>如何在 Procore 中将工具添加到收藏夹列表?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-unit-based-line-item-details-in-the-budget-import-template" title="如何在 Procore 的预算导入模板中添加基于单位的明细项详细信息?"><span class="mt-icon-article-none"></span>如何在 Procore 的预算导入模板中添加基于单位的明细项详细信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-adjust-my-budget-views-when-the-client-contracts-funding-or-prime-contracts-tool-is-disabled-in-my-companys-procore-account" title="当我公司 Procore 账户禁用客户合同、资金或主合同工具时,我能如何调整预算视图?"><span class="mt-icon-article-none"></span>当我公司 Procore 账户禁用客户合同、资金或主合同工具时,我能如何调整预算视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-apply-markups-from-a-previous-revision" title="如何将先前修订中的标记应用到新修订?"><span class="mt-icon-article-none"></span>如何将先前修订中的标记应用到新修订?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-avoid-and-report-phishing-emails" title="如何避免和报告网络钓鱼电子邮件?"><span class="mt-icon-article-none"></span>如何避免和报告网络钓鱼电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-backfill-an-invoice-from-yardi-to-portfolio-financials" title="如何将来自 Yardi 的发票回填到综合财务管理?"><span class="mt-icon-article-none"></span>如何将来自 Yardi 的发票回填到综合财务管理?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-change-a-known-password" title="如何更改已知密码?"><span class="mt-icon-article-none"></span>如何更改已知密码?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-choose-a-default-punch-item-manager-for-my-project" title="如何为我的项目选择默认尾项项目经理?"><span class="mt-icon-article-none"></span>如何为我的项目选择默认尾项项目经理?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-complete-tasks-in-procore-that-i-used-to-complete-in-the-standalone-procore-estimating-application" title="如何在 Procore 中完成以前在独立 Procore Estimating 应用程序中完成的任务?"><span class="mt-icon-article-none"></span>如何在 Procore 中完成以前在独立 Procore Estimating 应用程序中完成的任务?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-create-a-billing-period-for-an-invoice" title="如何为发票创建结算期?"><span class="mt-icon-article-none"></span>如何为发票创建结算期?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-create-a-bookmark-to-procore" title="如何为 Procore 创建书签?"><span class="mt-icon-article-none"></span>如何为 Procore 创建书签?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-create-a-desktop-shortcut-to-procore" title="如何创建 Procore 的桌面快捷方式?"><span class="mt-icon-article-none"></span>如何创建 Procore 的桌面快捷方式?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-create-a-fillable-pdf" title="如何创建可填写 PDF?"><span class="mt-icon-article-none"></span>如何创建可填写 PDF?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-create-or-join-a-zoom-meeting-in-procore" title="如何在 Procore 中创建或加入 Zoom 会议?"><span class="mt-icon-article-none"></span>如何在 Procore 中创建或加入 Zoom 会议?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-determine-the-latitude-and-longitude-values-on-an-address" title="如何确定地址的纬度和经度值?"><span class="mt-icon-article-none"></span>如何确定地址的纬度和经度值?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-determine-whether-a-punch-list-item-has-been-sent" title="如何确定是否已发送尾项清单项目?"><span class="mt-icon-article-none"></span>如何确定是否已发送尾项清单项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-display-a-list-of-project-dates-on-the-home-page" title="如何在主页上显示项目日期列表?"><span class="mt-icon-article-none"></span>如何在主页上显示项目日期列表?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-download-the-google-chrome-browser" title="如何下载 Google Chrome 浏览器?"><span class="mt-icon-article-none"></span>如何下载 Google Chrome 浏览器?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-download-the-mozilla-firefox-browser" title="如何下载 Mozilla Firefox 浏览器?"><span class="mt-icon-article-none"></span>如何下载 Mozilla Firefox 浏览器?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-download-the-procore-android-mobile-application" title="如何下载 Procore 的 Android 移动应用程序?"><span class="mt-icon-article-none"></span>如何下载 Procore 的 Android 移动应用程序?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-edit-an-initial-award-amount-for-a-contract-in-portfolio-financials" title="如何在综合财务管理中编辑合同初始奖励金额?"><span class="mt-icon-article-none"></span>如何在综合财务管理中编辑合同初始奖励金额?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enable-cost-allocations-and-components-for-a-portfolio-financials-project" title="如何为综合财务管理项目启用成本分配和组件?"><span class="mt-icon-article-none"></span>如何为综合财务管理项目启用成本分配和组件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enable-retainage-for-a-contract-in-portfolio-financials" title="如何在综合财务管理中为合同启用保留金?"><span class="mt-icon-article-none"></span>如何在综合财务管理中为合同启用保留金?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enable-the-docusign-integration" title="如何启用 DocuSign® 集成?"><span class="mt-icon-article-none"></span>如何启用 DocuSign® 集成?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enter-a-credit-invoice-in-portfolio-financials" title="如何在综合财务管理中输入信用发票?"><span class="mt-icon-article-none"></span>如何在综合财务管理中输入信用发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enter-budgeted-projects-for-the-year-in-portfolio-financials-and-capital-planning" title="如何在综合财务管理和资金规划中输入当年的预算项目?"><span class="mt-icon-article-none"></span>如何在综合财务管理和资金规划中输入当年的预算项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-export-a-project-budget-from-procore-to-sage-300-cre" title="如何将项目预算从 Procore 导出到 Sage 300 CRE?"><span class="mt-icon-article-none"></span>如何将项目预算从 Procore 导出到 Sage 300 CRE?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-get-the-latest-version-of-safari-for-osx" title="如何获取适用于 Mac OS X 的最新版本的 Safari?"><span class="mt-icon-article-none"></span>如何获取适用于 Mac OS X 的最新版本的 Safari?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-locate-an-archived-project-in-portfolio-financials-and-capital-planning" title="如何在综合财务管理和资金规划中找到存档的项目?"><span class="mt-icon-article-none"></span>如何在综合财务管理和资金规划中找到存档的项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-log-in-to-portfolio-financials-and-capital-planning" title="如何登录综合财务管理和资金规划?"><span class="mt-icon-article-none"></span>如何登录综合财务管理和资金规划?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-navigate-to-a-bid-room-in-portfolio-financials" title="如何导航到综合财务管理中的投标室?"><span class="mt-icon-article-none"></span>如何导航到综合财务管理中的投标室?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-invoice-approvals-work-in-portfolio-financials" title="综合财务管理中的发票审批如何运作?"><span class="mt-icon-article-none"></span>综合财务管理中的发票审批如何运作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-rate-a-page-and-send-feedback" title="如何对页面评分并发送反馈?"><span class="mt-icon-article-none"></span>如何对页面评分并发送反馈?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-run-a-sealed-bid-process-in-portfolio-financials" title="如何在综合财务管理中运行密封投标流程?"><span class="mt-icon-article-none"></span>如何在综合财务管理中运行密封投标流程?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-permissions-for-a-correspondence-type" title="如何设置通信类型的权限?"><span class="mt-icon-article-none"></span>如何设置通信类型的权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-procore-sso-with-okta" title="如何为 Procore 配置 Okta 单点登录 (SAML 2.0)?"><span class="mt-icon-article-none"></span>如何为 Procore 配置 Okta 单点登录 (SAML 2.0)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-the-procore-labor-productivity-cost-view" title="如何设置“Procore 人工生产力成本”预算视图?"><span class="mt-icon-article-none"></span>如何设置“Procore 人工生产力成本”预算视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-submit-change-orders-and-invoices-in-portfolio-financials" title="如何在综合财务管理中提交变更通知单和发票?"><span class="mt-icon-article-none"></span>如何在综合财务管理中提交变更通知单和发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-switch-between-portfolio-financials-and-project-management-toolkits-in-procore" title="如何在 Procore 中的综合财务管理和项目管理工具包之间切换?"><span class="mt-icon-article-none"></span>如何在 Procore 中的综合财务管理和项目管理工具包之间切换?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-use-the-navigation-bar-to-go-back-to-the-company-portfolio" title="如何使用导航栏返回公司项目集合?"><span class="mt-icon-article-none"></span>如何使用导航栏返回公司项目集合?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-use-the-notification-center" title="如何使用通知中心?"><span class="mt-icon-article-none"></span>如何使用通知中心?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-permissions-work-for-the-conversations-tool" title="对话工具的权限如何工作?"><span class="mt-icon-article-none"></span>对话工具的权限如何工作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-will-configured-fieldsets-affect-my-existing-projects" title="配置的字段集将如何影响现有项目?"><span class="mt-icon-article-none"></span>配置的字段集将如何影响现有项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-will-i-know-when-my-invoice-or-change-order-is-approved-or-rejected-in-portfolio-financials" title="我如何知道我的发票或变更通知单何时在综合财务管理中被批准或拒绝?"><span class="mt-icon-article-none"></span>我如何知道我的发票或变更通知单何时在综合财务管理中被批准或拒绝?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/if-a-user-does-not-have-permission-to-view-a-specific-correspondence-type-can-they-see-that-correspondence-type-in-their-project-overview-dashboard" title="如果用户没有查看特定通信类型的权限,他们能否在其“项目概况”仪表板中查看该通信类型?"><span class="mt-icon-article-none"></span>如果用户没有查看特定通信类型的权限,他们能否在其“项目概况”仪表板中查看该通信类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/is-there-a-minimum-passing-score-for-procore-certification-quizzes" title="Procore 认证测验是否有最低及格分数?"><span class="mt-icon-article-none"></span>Procore 认证测验是否有最低及格分数?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/plug-icon-missing-marketplace-nav-how-to" title="“插头”图标已移除,我如何导航到应用商店?"><span class="mt-icon-article-none"></span>“插头”图标已移除,我如何导航到应用商店?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/should-i-update-my-budget-view-to-add-rfq-values-to-the-budget" title="是否应该更新预算视图以将 RFQ 值添加到预算中?"><span class="mt-icon-article-none"></span>是否应该更新预算视图以将 RFQ 值添加到预算中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-approvals-in-portfolio-financials" title="什么是综合财务管理审批?"><span class="mt-icon-article-none"></span>什么是综合财务管理审批?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-cost-allocations-and-components-in-portfolio-financials" title="什么是综合财务管理中的成本分配和组件?"><span class="mt-icon-article-none"></span>什么是综合财务管理中的成本分配和组件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-cost-types-and-how-does-our-erp-integration-support-them" title="有哪些“成本类型”以及我们的 ERP 集成如何支持这些成本类型?"><span class="mt-icon-article-none"></span>有哪些“成本类型”以及我们的 ERP 集成如何支持这些成本类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-meeting-minutes" title="什么是会议纪要?"><span class="mt-icon-article-none"></span>什么是会议纪要?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-milestone-dependencies-in-portfolio-financials-and-how-do-i-set-them" title="综合财务管理中的里程碑依赖项是什么?如何进行设置?"><span class="mt-icon-article-none"></span>综合财务管理中的里程碑依赖项是什么?如何进行设置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-product-categories" title="Procore 的产品类别有哪些?"><span class="mt-icon-article-none"></span>Procore 的产品类别有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-some-best-practices-for-reporting-in-portfolio-financials-and-capital-planning" title="综合财务管理务和资金规划报告的一些最佳实践是什么?"><span class="mt-icon-article-none"></span>综合财务管理务和资金规划报告的一些最佳实践是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-some-examples-of-reports-i-can-generate-in-portfolio-financials-and-capital-planning" title="可以在综合财务管理和资金规划中生成哪些报告示例?"><span class="mt-icon-article-none"></span>可以在综合财务管理和资金规划中生成哪些报告示例?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-budget-warning-banner-changes" title="预算警告横幅有哪些变化?"><span class="mt-icon-article-none"></span>预算警告横幅有哪些变化?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-column-header-updates-in-the-import-templates" title="导入模板中的列标题更新是什么?"><span class="mt-icon-article-none"></span>导入模板中的列标题更新是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-data-points-available-for-custom-reports-in-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划中的自定义报告可使用哪些数据点?"><span class="mt-icon-article-none"></span>综合财务管理和资金规划中的自定义报告可使用哪些数据点?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-data-points-for-capital-plans-in-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划中资金规划的数据点是什么?"><span class="mt-icon-article-none"></span>综合财务管理和资金规划中资金规划的数据点是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-permission-levels-for-team-members-in-portfolio-financials" title="综合财务管理中团队成员有哪些不同的权限级别?"><span class="mt-icon-article-none"></span>综合财务管理中团队成员有哪些不同的权限级别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-types-of-invoices-in-procore" title="Procore 中有哪些不同类型的发票?"><span class="mt-icon-article-none"></span>Procore 中有哪些不同类型的发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-user-roles-in-procore-estimating" title="Procore Estimating 中有哪些不同的“用户角色”?"><span class="mt-icon-article-none"></span>Procore Estimating 中有哪些不同的“用户角色”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-touch-commands" title="什么是触控指令?"><span class="mt-icon-article-none"></span>什么是触控指令?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-uncategorized-invoices-in-portfolio-financials" title="什么是综合财务管理中的未分类发票?"><span class="mt-icon-article-none"></span>什么是综合财务管理中的未分类发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-does-each-column-in-the-submittals-log-represent" title="“送审日志”中的每一列代表什么?"><span class="mt-icon-article-none"></span>“送审日志”中的每一列代表什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-arrows-mean-on-the-project-comparison-tab-of-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划的“项目比较”标签页中的箭头是什么意思?"><span class="mt-icon-article-none"></span>综合财务管理和资金规划的“项目比较”标签页中的箭头是什么意思?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-dates-in-the-projects-admin-tool-mean" title="项目管理员工具中的日期是什么意思?"><span class="mt-icon-article-none"></span>项目管理员工具中的日期是什么意思?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-email-notifications-are-sent-for-approval-workflows-in-portfolio-financials" title="综合财务管理中的审批工作流会发送哪些电子邮件通知?"><span class="mt-icon-article-none"></span>综合财务管理中的审批工作流会发送哪些电子邮件通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-emails-are-sent-during-the-bidding-process-in-portfolio-financials" title="在综合财务管理的投标过程中会发送哪些电子邮件?"><span class="mt-icon-article-none"></span>在综合财务管理的投标过程中会发送哪些电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-client-contracts-tool" title="项目的客户合同工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的客户合同工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-drawings-tool" title="项目的图纸工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的图纸工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-funding-tool" title="项目的资金工具有哪细分权限?"><span class="mt-icon-article-none"></span>项目的资金工具有哪细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-change-event" title="什么是变更事件?"><span class="mt-icon-article-none"></span>什么是变更事件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-change-order" title="什么是变更通知单?"><span class="mt-icon-article-none"></span>什么是变更通知单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-completed-action-plan-receiver" title="什么是“已完成行动计划的接收者”?"><span class="mt-icon-article-none"></span>什么是“已完成行动计划的接收者”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-daily-log" title="什么是工作日志?"><span class="mt-icon-article-none"></span>什么是工作日志?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-assignment-alert-in-resource-planning" title="什么是资源规划中的分配警报?"><span class="mt-icon-article-none"></span>什么是资源规划中的分配警报?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-example-use-case-for-project-comaprison-in-portfolio-financials-and-capital-planning" title="什么是综合财务管理和资金规划中项目比较的示例用例?"><span class="mt-icon-article-none"></span>什么是综合财务管理和资金规划中项目比较的示例用例?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-asta-powerproject-and-how-does-it-integrate-with-procore" title="什么是 Asta Powerproject 以及它如何与 Procore 集成?"><span class="mt-icon-article-none"></span>什么是 Asta Powerproject 以及它如何与 Procore 集成?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-tm-ticket" title="什么是工时和材料单?"><span class="mt-icon-article-none"></span>什么是工时和材料单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-bluebeam-studio" title="什么是 Bluebeam Studio?"><span class="mt-icon-article-none"></span>什么是 Bluebeam Studio?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-in-the-emails-sent-from-procore" title="Procore 发送的电子邮件中有什么内容?"><span class="mt-icon-article-none"></span>Procore 发送的电子邮件中有什么内容?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-maintenance" title="什么是维护?"><span class="mt-icon-article-none"></span>什么是维护?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-phishing" title="什么是网络钓鱼?"><span class="mt-icon-article-none"></span>什么是网络钓鱼?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-portfolio-financials" title="什么是综合财务管理?"><span class="mt-icon-article-none"></span>什么是综合财务管理?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-availability" title="什么是 Procore 的可用性?"><span class="mt-icon-article-none"></span>什么是 Procore 的可用性?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-unavailibility" title="什么是 Procore 的不可用性?"><span class="mt-icon-article-none"></span>什么是 Procore 的不可用性?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-project-cost-reporting-in-portfolio-financials" title="什么是综合财务管理中的项目成本报告?"><span class="mt-icon-article-none"></span>什么是综合财务管理中的项目成本报告?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-bid-room-in-portfolio-financials" title="综合财务管理中的投标室是什么?"><span class="mt-icon-article-none"></span>综合财务管理中的投标室是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-contract-room-in-portfolio-financials" title="什么是综合财务管理中的合同室?"><span class="mt-icon-article-none"></span>什么是综合财务管理中的合同室?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-correspondence-tool" title="什么是通信工具?"><span class="mt-icon-article-none"></span>什么是通信工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-default-behavior-for-playing-certificiation-videos-on-certain-browsers" title="在某些浏览器上播放认证视频的默认行为是什么?"><span class="mt-icon-article-none"></span>在某些浏览器上播放认证视频的默认行为是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-betweeen-baseline-and-forecast-or-actual-dates-for-milestones-in-portfolio-financials" title="综合财务管理中里程碑的“基准”和“预测或实际”日期之间有何区别?"><span class="mt-icon-article-none"></span>综合财务管理中里程碑的“基准”和“预测或实际”日期之间有何区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-resource-tracking-and-resource-management" title=""资源跟踪"和"资源管理"有什么区别?"><span class="mt-icon-article-none"></span>"资源跟踪"和"资源管理"有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-my-tasks-page-in-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划中的“我的任务”页面是什么?"><span class="mt-icon-article-none"></span>综合财务管理和资金规划中的“我的任务”页面是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-project-page-in-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划中的项目页面是什么?"><span class="mt-icon-article-none"></span>综合财务管理和资金规划中的项目页面是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-project-team-in-portfolio-financials-and-what-are-the-varying-permission-levels" title="综合财务管理中的项目团队是什么?有哪些不同的权限级别?"><span class="mt-icon-article-none"></span>综合财务管理中的项目团队是什么?有哪些不同的权限级别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-send-to-accounts-payable-feature-in-portfolio-financials" title="综合财务管理中的“发送到应付会计”功能是什么?"><span class="mt-icon-article-none"></span>综合财务管理中的“发送到应付会计”功能是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-items-can-be-added-to-a-message-in-the-conversations-tool" title="可以在对话工具中将哪些项目添加到消息中?"><span class="mt-icon-article-none"></span>可以在对话工具中将哪些项目添加到消息中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-do-if-i-forgot-my-password-for-portfolio-financials" title="如果我忘记了综合财务管理的密码,该怎么办?"><span class="mt-icon-article-none"></span>如果我忘记了综合财务管理的密码,该怎么办?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-know-about-approval-workflows-in-portfolio-financials" title="关于综合财务管理中的审批工作流,我应该了解什么?"><span class="mt-icon-article-none"></span>关于综合财务管理中的审批工作流,我应该了解什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-know-about-bidding-in-portfolio-financials" title="关于综合财务管理中的投标,我应该知道什么?"><span class="mt-icon-article-none"></span>关于综合财务管理中的投标,我应该知道什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-know-about-change-orders-in-portfolio-financials" title="关于综合财务管理中的变更通知单,我应该知道什么?"><span class="mt-icon-article-none"></span>关于综合财务管理中的变更通知单,我应该知道什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-know-about-invoicing-in-portfolio-financials" title="关于综合财务管理中的开发票,我应该知道什么?"><span class="mt-icon-article-none"></span>关于综合财务管理中的开发票,我应该知道什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-know-about-the-contract-room-in-portfolio-financials" title="关于综合财务管理中的合同室,我应该知道什么?"><span class="mt-icon-article-none"></span>关于综合财务管理中的合同室,我应该知道什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-will-i-receive-emails-about-the-project-i-am-bidding-on-in-portfolio-financials" title="什么时候会收到有关我在综合财务管理中投标的项目的电子邮件?"><span class="mt-icon-article-none"></span>什么时候会收到有关我在综合财务管理中投标的项目的电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-did-quality-and-safety-go-in-procore" title="Procore 中的质量和安全去哪里了?"><span class="mt-icon-article-none"></span>Procore 中的质量和安全去哪里了?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-is-the-division-in-the-cost-code-segment-in-procores-wbs" title="Procore 的 WBS 中“成本编号”细分中的“分部”在哪里?"><span class="mt-icon-article-none"></span>Procore 的 WBS 中“成本编号”细分中的“分部”在哪里?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-asta-powerproject-file-formats-are-supported-by-procore" title="Procore 支持哪些 Asta Powerproject 文件格式?"><span class="mt-icon-article-none"></span>Procore 支持哪些 Asta Powerproject 文件格式?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-platforms-support-azure-ad-sso" title="哪些 Procore 平台支持Azure AD (Entra ID)单点登录?"><span class="mt-icon-article-none"></span>哪些 Procore 平台支持Azure AD (Entra ID)单点登录?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-can-see-private-action-plans" title="谁可以查看私密行动计划?"><span class="mt-icon-article-none"></span>谁可以查看私密行动计划?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-can-see-users-listed-in-a-project-directory" title="谁可以查看项目目录中列出的用户?"><span class="mt-icon-article-none"></span>谁可以查看项目目录中列出的用户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-not-receiving-emails-from-portfolio-financials" title="为什么我没有收到来自综合财务管理和资金规划的电子邮件?"><span class="mt-icon-article-none"></span>为什么我没有收到来自综合财务管理和资金规划的电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-not-seeing-all-of-my-viewpoints-in-the-viewpoints-inport-tool" title="为什么我在视点导入工具中看不到我的所有视点?"><span class="mt-icon-article-none"></span>为什么我在视点导入工具中看不到我的所有视点?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-not-seeing-my-issues-after-i-associate-the-file-to-my-project" title="为什么我在将文件关联到我的项目后看不到我的问题?"><span class="mt-icon-article-none"></span>为什么我在将文件关联到我的项目后看不到我的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-recent-changes-to-my-sage-database-missing-in-procore" title="为什么 Procore 中缺少对 Sage 数据库的最近更改?"><span class="mt-icon-article-none"></span>为什么 Procore 中缺少对 Sage 数据库的最近更改?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-can-i-access-the-prime-contracts-tool-if-i-cant-view-the-prime-contract" title="如果无法查看主合同,为什么可以访问主合同工具?"><span class="mt-icon-article-none"></span>如果无法查看主合同,为什么可以访问主合同工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-can-i-view-the-commitments-tool-but-cannot-see-any-commitments" title="为什么我可以查看合约工具但看不到任何合约?"><span class="mt-icon-article-none"></span>为什么我可以查看合约工具但看不到任何合约?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-delete-items-in-procore" title="为什么不能在 Procore 中删除项?"><span class="mt-icon-article-none"></span>为什么不能在 Procore 中删除项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-edit-or-delete-an-approved-change-order" title="为什么我不能编辑或删除“获批”变更通知单?"><span class="mt-icon-article-none"></span>为什么我不能编辑或删除“获批”变更通知单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-expand-the-awarded-value-row-in-portfolio-financials-and-capital-planning" title="为什么我不能在综合财务管理和资金规划中展开“中标值”行?"><span class="mt-icon-article-none"></span>为什么我不能在综合财务管理和资金规划中展开“中标值”行?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-export-an-item-from-portfolio-financials-and-capital-planning" title="为什么我不能从综合财务管理和资金规划中导出项目?"><span class="mt-icon-article-none"></span>为什么我不能从综合财务管理和资金规划中导出项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-log-in-to-portfolio-financials-and-capital-planning" title="为什么我无法登录“综合财务管理”和“资金规划”?"><span class="mt-icon-article-none"></span>为什么我无法登录“综合财务管理”和“资金规划”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-all-my-favorite-tools-on-a-project" title="为什么我在项目中看不到所有收藏的工具?"><span class="mt-icon-article-none"></span>为什么我在项目中看不到所有收藏的工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-bid-room-in-portfolio-financials" title="为什么我在综合财务管理中看不到投标室?"><span class="mt-icon-article-none"></span>为什么我在综合财务管理中看不到投标室?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-contract-room-in-portfolio-financials" title="为什么我在综合财务管理中看不到合同室?"><span class="mt-icon-article-none"></span>为什么我在综合财务管理中看不到合同室?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-favorites-tab-in-my-profile-settings" title="为什么在“我的个人资料设置”中看不到“收藏夹”标签页?"><span class="mt-icon-article-none"></span>为什么在“我的个人资料设置”中看不到“收藏夹”标签页?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-use-the-cloud-redline-tool-in-navisworks" title="为什么我不能在 Navisworks® 中使用云红线工具?"><span class="mt-icon-article-none"></span>为什么我不能在 Navisworks® 中使用云红线工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-my-team-member-see-a-project-in-portfolio-financials-and-capital-planning" title="为什么我的团队成员无法查看综合财务管理和资金规划中的项目?"><span class="mt-icon-article-none"></span>为什么我的团队成员无法查看综合财务管理和资金规划中的项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-my-vendor-access-the-bid-room-in-portfolio-financials" title="为什么我的供应商无法访问综合财务管理中的投标室?"><span class="mt-icon-article-none"></span>为什么我的供应商无法访问综合财务管理中的投标室?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-did-procore-switch-from-procoretech-to-app.procore" title="为什么 Procore 从 procoretech.com 改为 app.procore.com?"><span class="mt-icon-article-none"></span>为什么 Procore 从 procoretech.com 改为 app.procore.com?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-do-i-not-have-permission-to-view-this-web-page" title="我为什么没有查看此网页的权限?"><span class="mt-icon-article-none"></span>我为什么没有查看此网页的权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-do-i-see-people-in-workforce-planning-but-not-procore" title="为什么我能在劳动力规划中看到人员,在 Procore 中却不能?"><span class="mt-icon-article-none"></span>为什么我能在劳动力规划中看到人员,在 Procore 中却不能?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-dont-i-have-permission-to-access-the-resource-planning-tool" title="为什么我无权查看资源规划工具?"><span class="mt-icon-article-none"></span>为什么我无权查看资源规划工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-bid-package-missing-from-the-planroom" title="为什么 Planroom 中没有我的投标文件包?"><span class="mt-icon-article-none"></span>为什么 Planroom 中没有我的投标文件包?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-isnt-my-project-weather-working" title="为什么我的项目天气小部件不工作?"><span class="mt-icon-article-none"></span>为什么我的项目天气小部件不工作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-were-the-deep-dive-training-courses-deprecated" title="为什么“深入研究培训”课程被弃用?"><span class="mt-icon-article-none"></span>为什么“深入研究培训”课程被弃用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/will-dates-from-a-bid-room-be-added-to-the-projects-milestones-in-portfolio-financials" title="投标室中的日期是否会添加到综合财务管理中的项目里程碑?"><span class="mt-icon-article-none"></span>投标室中的日期是否会添加到综合财务管理中的项目里程碑?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-drawings"><span id="drawings"></span><h5>drawings</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-provide-users-with-read-only-level-permissions-with-limited-access-to-update-information-in-procore" title="我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?"><span class="mt-icon-article-none"></span>我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-rotate-a-drawing-in-procore" title="我可以在 Procore 中旋转图纸吗?"><span class="mt-icon-article-none"></span>我可以在 Procore 中旋转图纸吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-the-drawing-markup-tool-be-disabled" title="可以禁用图纸标记工具吗?"><span class="mt-icon-article-none"></span>可以禁用图纸标记工具吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-improve-the-accuracy-of-ocr-on-my-drawings" title="如何提高图纸上 OCR 的准确性?"><span class="mt-icon-article-none"></span>如何提高图纸上 OCR 的准确性?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-keep-track-of-emailed-drawings" title="如何跟踪通过电子邮件发送的图纸?"><span class="mt-icon-article-none"></span>如何跟踪通过电子邮件发送的图纸?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-apply-markups-from-a-previous-revision" title="如何将先前修订中的标记应用到新修订?"><span class="mt-icon-article-none"></span>如何将先前修订中的标记应用到新修订?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-drawing-areas" title="什么是图纸区域?"><span class="mt-icon-article-none"></span>什么是图纸区域?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-blue-icons-in-my-drawings-log" title="我的图纸日志中的蓝色图标是什么?"><span class="mt-icon-article-none"></span>我的图纸日志中的蓝色图标是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-punch-item-color-codes-on-a-drawing-mean" title="图纸上的尾项项目颜色代码有什么含义?"><span class="mt-icon-article-none"></span>图纸上的尾项项目颜色代码有什么含义?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-drawings-tool" title="项目的图纸工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的图纸工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-drawing-set" title="什么是图纸集?"><span class="mt-icon-article-none"></span>什么是图纸集?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-copy-and-duplicate-with-drawing-markups%3F" title="使用图纸标记进行复制和复制有什么区别?"><span class="mt-icon-article-none"></span>使用图纸标记进行复制和复制有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-personal-and-published-drawing-markups" title="个人图纸标记与已发布图纸标记之间有什么区别?"><span class="mt-icon-article-none"></span>个人图纸标记与已发布图纸标记之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-raster-and-vector-content-in-pdfs" title="PDF 中的栅格和矢量内容有何区别?"><span class="mt-icon-article-none"></span>PDF 中的栅格和矢量内容有何区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-unpublished-status-on-drawings" title="什么是图纸的未发布状态?"><span class="mt-icon-article-none"></span>什么是图纸的未发布状态?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-tools-can-you-use-on-mobile-for-inactive-projects" title="可以在移动设备上将哪些工具用于非活动项目?"><span class="mt-icon-article-none"></span>可以在移动设备上将哪些工具用于非活动项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-can-procore-automatically-populate-when-uploading-drawings" title="上传图纸时,Procore 可以自动填充哪些字段?"><span class="mt-icon-article-none"></span>上传图纸时,Procore 可以自动填充哪些字段?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-drawings-tool-can-be-configured-as-required-optional-or-hidden" title="图纸工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>图纸工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="哪些 Procore 工具支持细分权限?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-a-notification-for-updates-in-the-drawings-tool" title="谁会收到图纸工具中的更新通知?"><span class="mt-icon-article-none"></span>谁会收到图纸工具中的更新通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-notifications-about-project-connections" title="谁会收到有关项目连接的通知?"><span class="mt-icon-article-none"></span>谁会收到有关项目连接的通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-automatic-drawing-sheet-links-missing" title="为什么自动图纸页链接丢失?"><span class="mt-icon-article-none"></span>为什么自动图纸页链接丢失?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-drawing-comparisons-failing" title="为什么我的图纸对比失败?"><span class="mt-icon-article-none"></span>为什么我的图纸对比失败?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-drawing-uploads-failing" title="为什么我的图纸上传失败?"><span class="mt-icon-article-none"></span>为什么我的图纸上传失败?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-delete-items-in-procore" title="为什么不能在 Procore 中删除项?"><span class="mt-icon-article-none"></span>为什么不能在 Procore 中删除项?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-email"><span id="email"></span><h5>email</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-prevent-emails-from-being-sent-on-the-weekend" title="我可以阻止在周末发送电子邮件吗?"><span class="mt-icon-article-none"></span>我可以阻止在周末发送电子邮件吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-receiving-procore-emails-at-night" title="为什么会在晚上收到 Procore 电子邮件?"><span class="mt-icon-article-none"></span>为什么会在晚上收到 Procore 电子邮件?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-emails"><span id="emails"></span><h5>emails</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-we-have-to-create-and-send-all-our-project-emails-with-the-emails-tool" title="我们是否必须使用电子邮件工具创建和发送我们所有的项目电子邮件?"><span class="mt-icon-article-none"></span>我们是否必须使用电子邮件工具创建和发送我们所有的项目电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-change-my-web-browsers-default-email-client-for-mailto-links" title="如何为 mailto 链接更改我的 Web 浏览器的默认电子邮件客户端?"><span class="mt-icon-article-none"></span>如何为 mailto 链接更改我的 Web 浏览器的默认电子邮件客户端?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-ensure-that-procore-emails-reach-the-recipients" title="如何确保 Procore 电子邮件送达收件人?"><span class="mt-icon-article-none"></span>如何确保 Procore 电子邮件送达收件人?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-advanced-search-symbol-in-procore" title="Procore 中高级搜索符号是什么?"><span class="mt-icon-article-none"></span>Procore 中高级搜索符号是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="什么是 Procore 回收站?"><span class="mt-icon-article-none"></span>什么是 Procore 回收站?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-distribution-group-and-a-distribution-list" title="Procore 中的通讯组和通讯名单有什么区别?"><span class="mt-icon-article-none"></span>Procore 中的通讯组和通讯名单有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-can-i-find-the-email-address-to-send-photos-documents-and-emails-to-procore" title="在哪里可以找到用于向 Procore 发送工作日志、照片、文档和电子邮件的电子邮件地址?"><span class="mt-icon-article-none"></span>在哪里可以找到用于向 Procore 发送工作日志、照片、文档和电子邮件的电子邮件地址?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-can-i-use-to-create-a-change-event" title="我可以使用哪些 Procore 工具创建变更事件?"><span class="mt-icon-article-none"></span>我可以使用哪些 Procore 工具创建变更事件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-receive-email-from-procore" title="为什么收不到 Procore 的电子邮件?"><span class="mt-icon-article-none"></span>为什么收不到 Procore 的电子邮件?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-engineer mt-tags-single"><span id="engineer"></span><h5>engineer</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-construction-projects-schedule" title="什么是建设工程项目的进度计划?"><span class="mt-icon-article-none"></span>什么是建设工程项目的进度计划?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-equipment"><span id="equipment"></span><h5>equipment</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-let-me-view-a-digital-image-attachment-in-a-map-view" title="哪些 Procore 工具可让我在地图视图中查看数字图像附件?"><span class="mt-icon-article-none"></span>哪些 Procore 工具可让我在地图视图中查看数字图像附件?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-erp"><span id="erp"></span><h5>erp</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-accounting-approvers-notified-when-data-is-awaiting-acceptance-in-the-erp-integrations-tool" title="当数据在 ERP 集成工具中等待验收时,是否会通知会计审批者?"><span class="mt-icon-article-none"></span>当数据在 ERP 集成工具中等待验收时,是否会通知会计审批者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-pending-commitments-automatically-synced-with-integrated-erp-systems" title="待处理合约是否会与集成 ERP 系统自动同步?"><span class="mt-icon-article-none"></span>待处理合约是否会与集成 ERP 系统自动同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-change-the-selected-vendor-type-after-a-company-has-been-synced" title="我能否在公司同步后更改选定的供应商类型?"><span class="mt-icon-article-none"></span>我能否在公司同步后更改选定的供应商类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-customize-the-numbering-system-for-financial-management-objects-in-procore" title="我能否在 Procore 中自定义财务对象的编号系统?"><span class="mt-icon-article-none"></span>我能否在 Procore 中自定义财务对象的编号系统?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-edit-or-delete-a-commitment-after-its-been-synced-with-an-erp-integration" title="合约与集成 ERP 系统同步后,我能否编辑或删除?"><span class="mt-icon-article-none"></span>合约与集成 ERP 系统同步后,我能否编辑或删除?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-export-procore-budget-modifications-to-an-integrated-erp-system" title="我可以将 Procore 预算修改导出到集成 ERP 系统吗?"><span class="mt-icon-article-none"></span>我可以将 Procore 预算修改导出到集成 ERP 系统吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-project-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目是否已与集成 ERP 系统同步?"><span class="mt-icon-article-none"></span>如何判断 Procore 项目是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-projects-budget-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目的预算是否已与集成 ERP 系统同步?"><span class="mt-icon-article-none"></span>如何判断 Procore 项目的预算是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-the-hh2-synchronization-client-transmit-data" title="hh2 同步客户端如何传输数据?"><span class="mt-icon-article-none"></span>hh2 同步客户端如何传输数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-the-integration-by-ryvit-connect-procore-with-viewpoint-vista" title="Ryvit 集成如何连接 Procore 与 Viewpoint® Vista™?"><span class="mt-icon-article-none"></span>Ryvit 集成如何连接 Procore 与 Viewpoint® Vista™?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-export-a-project-budget-from-procore-to-sage-300-cre" title="如何将项目预算从 Procore 导出到 Sage 300 CRE?"><span class="mt-icon-article-none"></span>如何将项目预算从 Procore 导出到 Sage 300 CRE?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-export-cost-forecast-data-from-a-procore-budget-to-cmic" title="如何将成本预测数据从 Procore 预算导出到CMiC"><span class="mt-icon-article-none"></span>如何将成本预测数据从 Procore 预算导出到CMiC</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-export-cost-forecast-data-from-a-procore-budget-to-erp" title="如何将成本预测数据从 Procore 预算导出到 ERP"><span class="mt-icon-article-none"></span>如何将成本预测数据从 Procore 预算导出到 ERP</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-the-subcontractor-invoices-and-payments-feature-for-procore-quickbooks" title="如何为 Procore + QuickBooks 设置分包商发票和付款功能?"><span class="mt-icon-article-none"></span>如何为 Procore + QuickBooks 设置分包商发票和付款功能?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-often-can-i-sync-data-between-procore-and-viewpoint-spectrum" title="我多久可以在 Procore 和 Viewpoint® Spectrum® 之间同步数据一次?"><span class="mt-icon-article-none"></span>我多久可以在 Procore 和 Viewpoint® Spectrum® 之间同步数据一次?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-often-can-i-sync-data-using-the-integration-by-ryvit" title="我可以使用 Ryvit 集成以何种频率同步数据?"><span class="mt-icon-article-none"></span>我可以使用 Ryvit 集成以何种频率同步数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-to-i-select-which-viewpoint-spectrum-jobs-appear-in-the-select-a-job-template-list-of-the-erp-integrations-tool" title="我该选择哪些 Viewpoint® Spectrum® 作业出现在 ERP 集成工具的“选择作业模板”列表中?"><span class="mt-icon-article-none"></span>我该选择哪些 Viewpoint® Spectrum® 作业出现在 ERP 集成工具的“选择作业模板”列表中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-to-resolve-commitment-with-code-already-exists-sage-300" title="导出到 ERP 时如何解决“合约编号已存在”错误"><span class="mt-icon-article-none"></span>导出到 ERP 时如何解决“合约编号已存在”错误</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-to-resolve-export-cannot-be-completed-because-the-number-of-line-items-does-not-match-up-quickbooks" title="如何解决导出到ERP时的"无法完成此导出,因为QuickBooks中的明细项数量与 Procore 中的数量不匹配"错误?"><span class="mt-icon-article-none"></span>如何解决导出到ERP时的"无法完成此导出,因为QuickBooks中的明细项数量与 Procore 中的数量不匹配"错误?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-to-resolve-import-operation-took-longer-than-the-set-timeout-sage" title="导出到 ERP 时如何解决“导入操作花费的时间超过设置的超时时间”错误?"><span class="mt-icon-article-none"></span>导出到 ERP 时如何解决“导入操作花费的时间超过设置的超时时间”错误?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-to-resolve-there-was-an-error-adding-modifying-deleting-because-it-is-already-in-use-quickbooks" title="在导出到 ERP 时,如何解决“添加、修改或删除 XXXXXX-XXXXXXXXXXX 时出错,因为已在使用中。”错误"><span class="mt-icon-article-none"></span>在导出到 ERP 时,如何解决“添加、修改或删除 XXXXXX-XXXXXXXXXXX 时出错,因为已在使用中。”错误</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-cost-types-and-how-does-our-erp-integration-support-them" title="有哪些“成本类型”以及我们的 ERP 集成如何支持这些成本类型?"><span class="mt-icon-article-none"></span>有哪些“成本类型”以及我们的 ERP 集成如何支持这些成本类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore 默认成本编号有哪些?"><span class="mt-icon-article-none"></span>Procore 默认成本编号有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-types" title="Procore 有哪些默认成本类型?"><span class="mt-icon-article-none"></span>Procore 有哪些默认成本类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-data-is-synced-between-sage-300-cre-and-procore" title="Sage 300 CRE® 和 Procore 之间同步了哪些数据?"><span class="mt-icon-article-none"></span>Sage 300 CRE® 和 Procore 之间同步了哪些数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-data-is-synced-with-the-integration-by-ryvit-connector" title="哪些数据与 Ryvit 集成连接器同步?"><span class="mt-icon-article-none"></span>哪些数据与 Ryvit 集成连接器同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-i-do-when-a-commimtment-fails-to-export-from-the-erp-integrations-tool" title="当合约未能从 ERP 集成工具中导出时,我该怎么办?"><span class="mt-icon-article-none"></span>当合约未能从 ERP 集成工具中导出时,我该怎么办?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-erp-icons-mean" title="ERP 图标的含义是什么?"><span class="mt-icon-article-none"></span>ERP 图标的含义是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-if-i-have-duplicate-company-records-in-procores-company-directory" title="如果 Procore 公司目录中存在重复公司记录会怎样?"><span class="mt-icon-article-none"></span>如果 Procore 公司目录中存在重复公司记录会怎样?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="什么是会计审批者角色?"><span class="mt-icon-article-none"></span>什么是会计审批者角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-commitment-title" title="合约“标题”的最大字符长度是多少?"><span class="mt-icon-article-none"></span>合约“标题”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what's-the-difference-between-a-job-a-parent-job-and-a-sub-job" title="作业、父作业和子作业之间有何区别?"><span class="mt-icon-article-none"></span>作业、父作业和子作业之间有何区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-budget-views-should-i-add-to-my-projects" title="我应该将哪些预算视图添加到我的 Procore 项目中?"><span class="mt-icon-article-none"></span>我应该将哪些预算视图添加到我的 Procore 项目中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-cost-code-formats-are-supported-by-erp" title="我的 ERP 集成支持哪些成本编号格式?"><span class="mt-icon-article-none"></span>我的 ERP 集成支持哪些成本编号格式?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-category-concept" title="哪些集成 ERP 系统支持“成本类型”概念?"><span class="mt-icon-article-none"></span>哪些集成 ERP 系统支持“成本类型”概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-sub-job-concept" title="哪些集成 ERP 系统支持“子作业”概念?"><span class="mt-icon-article-none"></span>哪些集成 ERP 系统支持“子作业”概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-prime-contract-and-pcco-fields-are-synced-with-procore-and-viewpoint-spectrum" title="哪些主合同和主合同变更通知单字段与 Procore 和 Viewpoint Spectrum 同步?"><span class="mt-icon-article-none"></span>哪些主合同和主合同变更通知单字段与 Procore 和 Viewpoint Spectrum 同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-setting-do-i-enable-in-quickbooks-to-export-invoices-with-the-erp-integrations-tool" title="在 QuickBooks® 中启用哪个设置才能使用 ERP 集成工具导出发票?"><span class="mt-icon-article-none"></span>在 QuickBooks® 中启用哪个设置才能使用 ERP 集成工具导出发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-a-notification-when-an-item-is-rejected-from-erp" title="当项被 ERP 拒绝时,谁会收到通知?"><span class="mt-icon-article-none"></span>当项被 ERP 拒绝时,谁会收到通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-change-order-line-items-duplicated-on-my-subcontractor-invoice" title="为什么我的变更通知单明细项在我的分包商发票上重复?"><span class="mt-icon-article-none"></span>为什么我的变更通知单明细项在我的分包商发票上重复?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-or-activate-procore-projects" title="为什么我无法创建或激活 Procore 项目?"><span class="mt-icon-article-none"></span>为什么我无法创建或激活 Procore 项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-accept-reject-options-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到接受/拒绝选项?"><span class="mt-icon-article-none"></span>为什么我在 ERP 集成工具中看不到接受/拒绝选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-sync-or-refresh-buttons-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到“同步”或“刷新”按钮?"><span class="mt-icon-article-none"></span>为什么我在 ERP 集成工具中看不到“同步”或“刷新”按钮?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-do-i-see-an-error-when-trying-to-export-data-to-sage-300-cre" title="为什么我在尝试将数据导出到 Sage 300 CRE 时看到错误?"><span class="mt-icon-article-none"></span>为什么我在尝试将数据导出到 Sage 300 CRE 时看到错误?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-procore-project-missing-from-the-erp-integrations-tool" title="为什么 ERP 集成工具中缺少我的 Procore 项目?"><span class="mt-icon-article-none"></span>为什么 ERP 集成工具中缺少我的 Procore 项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-the-send-to-erp-button-grayed-out-in-the-project-creation-assistant" title="为什么“发送到 ERP”按钮变暗并且在项目创建助手中不可用?"><span class="mt-icon-article-none"></span>为什么“发送到 ERP”按钮变暗并且在项目创建助手中不可用?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-estimating"><span id="estimating"></span><h5>estimating</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-copy-estimates-from-the-estimating-tool-to-a-new-project" title="是否可以将估算值从估算工具复制到新项目?"><span class="mt-icon-article-none"></span>是否可以将估算值从估算工具复制到新项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-multiple-users-work-on-estimates-and-takeoffs-at-the-same-time-in-the-estimating-tool" title="多个用户是否可以在估算工具中同时进行估算和扣减?"><span class="mt-icon-article-none"></span>多个用户是否可以在估算工具中同时进行估算和扣减?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-budget-codes-in-an-estimate-create-line-items-in-a-budget" title="估算中的预算编号如何创建预算中的明细项?"><span class="mt-icon-article-none"></span>估算中的预算编号如何创建预算中的明细项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-cost-catalog-item-types-relate-to-cost-types-in-procore" title="成本目录项类型与 Procore 中的成本类型有何关系?"><span class="mt-icon-article-none"></span>成本目录项类型与 Procore 中的成本类型有何关系?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-complete-tasks-in-procore-that-i-used-to-complete-in-the-standalone-procore-estimating-application" title="如何在 Procore 中完成以前在独立 Procore Estimating 应用程序中完成的任务?"><span class="mt-icon-article-none"></span>如何在 Procore 中完成以前在独立 Procore Estimating 应用程序中完成的任务?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-fields-are-in-an-estimate-and-how-are-they-calculated" title="估算中有哪些字段以及它们是如何计算的?"><span class="mt-icon-article-none"></span>估算中有哪些字段以及它们是如何计算的?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-catalog-category-and-item-in-the-cost-catalog-for-estimating" title="用于估算的成本目录中的目录、类别和项之间有什么区别?"><span class="mt-icon-article-none"></span>用于估算的成本目录中的目录、类别和项之间有什么区别?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-faq"><span id="faq"></span><h5>faq</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/analytics-general-faq" title="Analytics 2.0 一般常见问题"><span class="mt-icon-article-none"></span>Analytics 2.0 一般常见问题</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/app-management-metrics-how-to-access" title="什么是应用程序管理指标以及如何访问它们?"><span class="mt-icon-article-none"></span>什么是应用程序管理指标以及如何访问它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-accounting-approvers-notified-when-data-is-awaiting-acceptance-in-the-erp-integrations-tool" title="当数据在 ERP 集成工具中等待验收时,是否会通知会计审批者?"><span class="mt-icon-article-none"></span>当数据在 ERP 集成工具中等待验收时,是否会通知会计审批者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-commitments-private-by-default" title="默认情况下合约是私密的吗?"><span class="mt-icon-article-none"></span>默认情况下合约是私密的吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-granular-permissions-available-in-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划中是否提供细分权限?"><span class="mt-icon-article-none"></span>综合财务管理和资金规划中是否提供细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-pending-commitments-automatically-synced-with-integrated-erp-systems" title="待处理合约是否会与集成 ERP 系统自动同步?"><span class="mt-icon-article-none"></span>待处理合约是否会与集成 ERP 系统自动同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-there-any-system-limitations-when-creating-multiple-prime-contracts" title="当项目有多个主合同时,是否有任何系统限制?"><span class="mt-icon-article-none"></span>当项目有多个主合同时,是否有任何系统限制?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/at-what-tier-can-an-upstream-collaborator-approve-a-change-order" title="上游协作者可以在哪一层批准变更通知单?"><span class="mt-icon-article-none"></span>上游协作者可以在哪一层批准变更通知单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-a-person-be-associated-with-multiple-vendor-company-records-in-the-company-directory" title="人员能否与公司级别目录工具中的多个供应商/公司记录关联?"><span class="mt-icon-article-none"></span>人员能否与公司级别目录工具中的多个供应商/公司记录关联?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-a-private-correspondence-item-be-made-public" title="私密通信可以公开吗?"><span class="mt-icon-article-none"></span>私密通信可以公开吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-bidders-submit-their-bid-via-email-or-must-they-sign-in" title="投标人可以通过电子邮件提交投标还是必须登录?"><span class="mt-icon-article-none"></span>投标人可以通过电子邮件提交投标还是必须登录?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-access-forms-offline" title="我可以离线访问表单吗?"><span class="mt-icon-article-none"></span>我可以离线访问表单吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-add-personal-avatars-or-profile-photos-for-other-users" title="我可以为其他用户添加个人头像或个人资料照片吗?"><span class="mt-icon-article-none"></span>我可以为其他用户添加个人头像或个人资料照片吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-apply-custom-segments-to-my-existing-non-wbs-projects" title="是否可以将自定义细分应用于现有的非 WBS 项目?"><span class="mt-icon-article-none"></span>是否可以将自定义细分应用于现有的非 WBS 项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-apply-permissions-templates-to-multiple-users-at-one-time" title="可以一次将权限模板应用于多个用户吗?"><span class="mt-icon-article-none"></span>可以一次将权限模板应用于多个用户吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-attach-a-photo-to-a-punch-list-item-from-my-mobile-device" title="我能否通过移动设备将照片添加到尾项清单项目?"><span class="mt-icon-article-none"></span>我能否通过移动设备将照片添加到尾项清单项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-change-a-persons-email-address-in-the-directory" title="我能否更改目录中人员的电子邮件地址?"><span class="mt-icon-article-none"></span>我能否更改目录中人员的电子邮件地址?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-change-the-language-of-my-company-project-or-user-in-procore" title="我可以在 Procore 中更改公司、项目或用户语言吗?"><span class="mt-icon-article-none"></span>我可以在 Procore 中更改公司、项目或用户语言吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-change-the-language-that-procore-scans-my-drawings-for" title="我可以更改 Procore 扫描图纸所用的语言吗?"><span class="mt-icon-article-none"></span>我可以更改 Procore 扫描图纸所用的语言吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-change-the-name-of-a-meeting" title="我可以更改会议名称吗?"><span class="mt-icon-article-none"></span>我可以更改会议名称吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-change-the-selected-vendor-type-after-a-company-has-been-synced" title="我能否在公司同步后更改选定的供应商类型?"><span class="mt-icon-article-none"></span>我能否在公司同步后更改选定的供应商类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-copy-estimates-from-the-estimating-tool-to-a-new-project" title="是否可以将估算值从估算工具复制到新项目?"><span class="mt-icon-article-none"></span>是否可以将估算值从估算工具复制到新项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-copy-files-in-the-documents-tool-to-another-project" title="我可以将文档工具中的文件复制到另一个项目吗?"><span class="mt-icon-article-none"></span>我可以将文档工具中的文件复制到另一个项目吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-copy-one-projects-folders-to-a-new-project" title="我可以将一个项目的文档文件夹复制到一个新项目吗?"><span class="mt-icon-article-none"></span>我可以将一个项目的文档文件夹复制到一个新项目吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-create-a-change-order-for-a-contract-or-funding-before-a-downstream-collaborator-responds-to-an-rfq-for-a-change-event" title="我可以在下游协作者响应变更事件的 RFQ 之前为合同或资金创建变更通知单吗?"><span class="mt-icon-article-none"></span>我可以在下游协作者响应变更事件的 RFQ 之前为合同或资金创建变更通知单吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-create-a-list-of-overdue-pccos" title="我可以创建一份逾期主合同变更通知单 (PCCO) 的清单吗?"><span class="mt-icon-article-none"></span>我可以创建一份逾期主合同变更通知单 (PCCO) 的清单吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-create-an-rfi-with-a-duplicate-number" title="我能否创建具有重复编号的 RFI?"><span class="mt-icon-article-none"></span>我能否创建具有重复编号的 RFI?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-customize-the-numbering-system-for-financial-management-objects-in-procore" title="我能否在 Procore 中自定义财务对象的编号系统?"><span class="mt-icon-article-none"></span>我能否在 Procore 中自定义财务对象的编号系统?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-customize-the-project-type-options-in-portfolio-financials-and-capital-planning" title="我能否在综合财务管理和资金规划中自定义项目类型选项?"><span class="mt-icon-article-none"></span>我能否在综合财务管理和资金规划中自定义项目类型选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-delete-a-sage-300-cre-cost-code-cost-type-or-vendor" title="我可以从 Procore 中删除 Sage 300 CRE 成本编号、成本类型或供应商吗?"><span class="mt-icon-article-none"></span>我可以从 Procore 中删除 Sage 300 CRE 成本编号、成本类型或供应商吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-disable-the-change-events-tool" title="我可以禁用变更事件工具吗?"><span class="mt-icon-article-none"></span>我可以禁用变更事件工具吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-edit-my-change-order-or-invoice-in-portfolio-financials" title="我可以在综合财务管理中编辑我的变更通知单或发票吗?"><span class="mt-icon-article-none"></span>我可以在综合财务管理中编辑我的变更通知单或发票吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-edit-or-delete-a-commitment-after-its-been-synced-with-an-erp-integration" title="合约与集成 ERP 系统同步后,我能否编辑或删除?"><span class="mt-icon-article-none"></span>合约与集成 ERP 系统同步后,我能否编辑或删除?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-enable-the-change-events-tool-on-my-project" title="可以在现有项目上启用变更事件工具吗?"><span class="mt-icon-article-none"></span>可以在现有项目上启用变更事件工具吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-export-a-correspondence-if-it-is-set-to-private" title="我可以导出设置为私密的通信吗?"><span class="mt-icon-article-none"></span>我可以导出设置为私密的通信吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-export-a-lookahead-schedule" title="可以导出展望进度计划吗?"><span class="mt-icon-article-none"></span>可以导出展望进度计划吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-export-data-from-the-conversations-tool" title="是否可以从对话工具中导出数据?"><span class="mt-icon-article-none"></span>是否可以从对话工具中导出数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-export-procore-budget-modifications-to-an-integrated-erp-system" title="我可以将 Procore 预算修改导出到集成 ERP 系统吗?"><span class="mt-icon-article-none"></span>我可以将 Procore 预算修改导出到集成 ERP 系统吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-fill-out-a-form-on-my-mobile-device" title="我可以在我的移动设备上填写表单吗?"><span class="mt-icon-article-none"></span>我可以在我的移动设备上填写表单吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-fill-out-forms-on-the-web-version-of-procore" title="我能否在 Procore Web 版上填写表单?"><span class="mt-icon-article-none"></span>我能否在 Procore Web 版上填写表单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-import-a-csv-into-a-project-financial-tools-schedule-of-values-if-it-has-blank-values" title="如果 CSV 具有空白值,我能否将其导入到项目财务管理工具的分项价格表中?"><span class="mt-icon-article-none"></span>如果 CSV 具有空白值,我能否将其导入到项目财务管理工具的分项价格表中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-import-clashes-and-clash-groups-into-the-coordination-issues-tool" title="我可以将冲突和冲突组导入到协调问题工具中吗?"><span class="mt-icon-article-none"></span>我可以将冲突和冲突组导入到协调问题工具中吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-include-deducts-in-my-bid-submission-in-the-bid-room" title="我能否在投标室的投标递交中包含扣除额?"><span class="mt-icon-article-none"></span>我能否在投标室的投标递交中包含扣除额?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-include-required-fields-in-a-fillable-pdf-form" title="我能否在可填写 PDF 表单中包含必填字段?"><span class="mt-icon-article-none"></span>我能否在可填写 PDF 表单中包含必填字段?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-include-signature-fields-in-my-fillable-pdfs" title="我可以在可填写的 PDF 中包含签名字段吗?"><span class="mt-icon-article-none"></span>我可以在可填写的 PDF 中包含签名字段吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-integrate-my-lms-with-procore-certification" title="我可以将我的 LMS 与 Procore 认证集成吗?"><span class="mt-icon-article-none"></span>我可以将我的 LMS 与 Procore 认证集成吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-limit-the-number-of-cost-codes-available-to-choose-from-when-creating-timesheet-entries" title="创建考勤表条目时,可以限制可供选择的成本编号数量吗?"><span class="mt-icon-article-none"></span>创建考勤表条目时,可以限制可供选择的成本编号数量吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-log-into-the-procore-web-application-directly-if-my-company-has-implemented-sso" title="如果我的公司已实施单点登录,我可以直接登录 Procore Web 应用程序吗?"><span class="mt-icon-article-none"></span>如果我的公司已实施单点登录,我可以直接登录 Procore Web 应用程序吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-make-files-and-folders-private-by-default" title="是否可以默认在文档工具中将文件和文件夹设为私密?"><span class="mt-icon-article-none"></span>是否可以默认在文档工具中将文件和文件夹设为私密?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-mark-all-photos-private-in-the-projects-photos-tool" title="我可以在项目的照片工具中将所有照片标记为“私密”吗?"><span class="mt-icon-article-none"></span>我可以在项目的照片工具中将所有照片标记为“私密”吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-prevent-emails-from-being-sent-on-the-weekend" title="我可以阻止在周末发送电子邮件吗?"><span class="mt-icon-article-none"></span>我可以阻止在周末发送电子邮件吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-print-or-export-a-copy-of-my-bid-in-the-bid-room" title="我能否在投标室打印或导出我的投标副本?"><span class="mt-icon-article-none"></span>我能否在投标室打印或导出我的投标副本?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-provide-users-with-read-only-level-permissions-with-limited-access-to-update-information-in-procore" title="我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?"><span class="mt-icon-article-none"></span>我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-rearrange-the-order-of-daily-log-sections" title="能否重新排列各工作日志部分的顺序?"><span class="mt-icon-article-none"></span>能否重新排列各工作日志部分的顺序?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-receive-a-daily-activity-summary-for-portfolio-financials-and-capital-planning" title="我能否接收综合财务管理和资金规划的每日活动摘要?"><span class="mt-icon-article-none"></span>我能否接收综合财务管理和资金规划的每日活动摘要?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-receive-weather-delay-alerts-by-phone-or-email" title="我可以通过电话或电子邮件接收天气导致的延误警报吗?"><span class="mt-icon-article-none"></span>我可以通过电话或电子邮件接收天气导致的延误警报吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-remove-a-line-item-from-a-bid" title="能否从投标中移除明细项?"><span class="mt-icon-article-none"></span>能否从投标中移除明细项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-report-on-content-in-the-forms-tool" title="我能否报告表单工具中的内容?"><span class="mt-icon-article-none"></span>我能否报告表单工具中的内容?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-rotate-a-drawing-in-procore" title="我可以在 Procore 中旋转图纸吗?"><span class="mt-icon-article-none"></span>我可以在 Procore 中旋转图纸吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-search-the-contents-of-a-fillable-pdf" title="我能否搜索可填写 PDF 的内容?"><span class="mt-icon-article-none"></span>我能否搜索可填写 PDF 的内容?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-send-a-bid-update-email-to-every-vendor-subcontractor" title="我能否向每个供应商/分包商发送投标更新电子邮件?"><span class="mt-icon-article-none"></span>我能否向每个供应商/分包商发送投标更新电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-send-correspondence-after-the-bid-due-date" title="我可以在投标截止日期之后发送通信吗?"><span class="mt-icon-article-none"></span>我可以在投标截止日期之后发送通信吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-set-up-multiple-favorites-lists-for-my-project-tools-to-apply-to-different-projects" title="是否可以为我的项目工具设置多个收藏夹列表,以应用于不同的项目?"><span class="mt-icon-article-none"></span>是否可以为我的项目工具设置多个收藏夹列表,以应用于不同的项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-update-the-percent-complete-field-on-the-web-application" title="我能否更新 Procore Web 应用程序上的“完成百分比”字段?"><span class="mt-icon-article-none"></span>我能否更新 Procore Web 应用程序上的“完成百分比”字段?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-upload-drawings-with-the-same-revision" title="我可以上传包含相同修订的图纸吗?"><span class="mt-icon-article-none"></span>我可以上传包含相同修订的图纸吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-upload-fillable-pdfs-that-are-password-protected" title="我能否上传受密码保护的可填写 PDF?"><span class="mt-icon-article-none"></span>我能否上传受密码保护的可填写 PDF?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-use-procores-mobile-application-offline" title="我可以在离线模式下使用 Procore 的移动应用程序吗?"><span class="mt-icon-article-none"></span>我可以在离线模式下使用 Procore 的移动应用程序吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-use-the-procore-extracts-application-on-a-mac" title="我可以在 Mac 上使用 Procore Extracts 应用程序吗?"><span class="mt-icon-article-none"></span>我可以在 Mac 上使用 Procore Extracts 应用程序吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-watch-procore-certification-and-continuing-education-courses-from-my-mobile-device" title="我可以从我的移动设备观看 Procore 认证和成人教育课程吗?"><span class="mt-icon-article-none"></span>我可以从我的移动设备观看 Procore 认证和成人教育课程吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-multiple-users-work-on-estimates-and-takeoffs-at-the-same-time-in-the-estimating-tool" title="多个用户是否可以在估算工具中同时进行估算和扣减?"><span class="mt-icon-article-none"></span>多个用户是否可以在估算工具中同时进行估算和扣减?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-the-drawing-markup-tool-be-disabled" title="可以禁用图纸标记工具吗?"><span class="mt-icon-article-none"></span>可以禁用图纸标记工具吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-we-import-our-third-party-timecard-entries-to-work-with-the-timesheet-hours-column-in-the-budget" title="我们能否导入第三方考勤卡条目以与 Procore 预算工具中的“考勤表工时”列配合使用?"><span class="mt-icon-article-none"></span>我们能否导入第三方考勤卡条目以与 Procore 预算工具中的“考勤表工时”列配合使用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/common-questions-apps-and-marketplace" title="关于应用程序和 Procore 应用商店的常见问题"><span class="mt-icon-article-none"></span>关于应用程序和 Procore 应用商店的常见问题</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/document-management-general-faq" title="文档管理:一般常见问题"><span class="mt-icon-article-none"></span>文档管理:一般常见问题</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/does-an-invoice-contact-need-an-invite-to-bill-to-submit-an-invoice" title="发票联系人是否需要“结算邀请”才能提交发票?"><span class="mt-icon-article-none"></span>发票联系人是否需要“结算邀请”才能提交发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/does-a-user-need-to-log-in-to-procore-to-respond-to-an-rfi" title="用户是否需要登录 Procore 才能答复 RFI?"><span class="mt-icon-article-none"></span>用户是否需要登录 Procore 才能答复 RFI?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/does-the-docusign-integration-have-any-file-size-limits-on-attachments-or-envelopes" title="DocuSign® 集成对附件或信封是否有任何文件大小限制?"><span class="mt-icon-article-none"></span>DocuSign® 集成对附件或信封是否有任何文件大小限制?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/does-the-hh2-synchronization-process-for-sage-100-contractor-require-a-terminal-server" title="Sage 100 Contractor 的 hh2 同步过程是否需要终端服务器?"><span class="mt-icon-article-none"></span>Sage 100 Contractor 的 hh2 同步过程是否需要终端服务器?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/does-the-hh2-synchronization-process-for-sage-300-cre-require-a-terminal-server" title="Sage 300 CRE 的 hh2 同步流程是否需要终端服务器?"><span class="mt-icon-article-none"></span>Sage 300 CRE 的 hh2 同步流程是否需要终端服务器?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/does-the-master-schedule-update-when-i-make-a-change-to-a-lookahead-schedule" title="对展望进度计划进行更改时,主进度计划是否会更新?"><span class="mt-icon-article-none"></span>对展望进度计划进行更改时,主进度计划是否会更新?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-i-need-a-docusign-account" title="我需要拥有 DocuSign© 账户吗?"><span class="mt-icon-article-none"></span>我需要拥有 DocuSign© 账户吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-i-need-to-create-a-dedicated-user-account-in-sage-for-the-hh2-syncrhonization-client" title="我是否需要在 Sage 300 CRE 中为 hh2 同步客户端创建专用用户账户?"><span class="mt-icon-article-none"></span>我是否需要在 Sage 300 CRE 中为 hh2 同步客户端创建专用用户账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-i-need-to-create-procore-user-accounts-if-our-company-implements-sso" title="如果我们公司实施单点登录,我是否需要创建 Procore 用户账户?"><span class="mt-icon-article-none"></span>如果我们公司实施单点登录,我是否需要创建 Procore 用户账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-i-need-to-use-cost-codes-on-a-bid-form" title="我是否需要在投标表单上使用成本编号?"><span class="mt-icon-article-none"></span>我是否需要在投标表单上使用成本编号?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-meetings-integrate-with-microsoft-outlook-calendar" title="会议是否与 Microsoft Outlook 日历集成?"><span class="mt-icon-article-none"></span>会议是否与 Microsoft Outlook 日历集成?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-milestones-in-portfolio-financials-sync-with-my-external-project-schedule" title="综合财务管理中的里程碑是否与我的外部项目进度计划同步?"><span class="mt-icon-article-none"></span>综合财务管理中的里程碑是否与我的外部项目进度计划同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-procores-sso-integrations-support-single-or-multiple-domains" title="Procore 的单点登录集成支持单个域还是多个域?"><span class="mt-icon-article-none"></span>Procore 的单点登录集成支持单个域还是多个域?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-we-have-to-create-and-send-all-our-project-emails-with-the-emails-tool" title="我们是否必须使用电子邮件工具创建和发送我们所有的项目电子邮件?"><span class="mt-icon-article-none"></span>我们是否必须使用电子邮件工具创建和发送我们所有的项目电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/for-which-items-in-procore-should-i-make-templates" title="我应该为 Procore 中的哪些项制作模板?"><span class="mt-icon-article-none"></span>我应该为 Procore 中的哪些项制作模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-action-plans-item-statuses-updated" title="如何更新行动计划项状态"><span class="mt-icon-article-none"></span>如何更新行动计划项状态</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-businesses-approved-to-be-listed-on-the-procore-construction-network" title="企业如何获批在 Procore 建设工程网络中上市?"><span class="mt-icon-article-none"></span>企业如何获批在 Procore 建设工程网络中上市?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-duplicate-companies-handled-between-the-directory-tool-and-procore-construction-network" title="如何处理目录工具和 Procore 建设工程网络之间的重复公司?"><span class="mt-icon-article-none"></span>如何处理目录工具和 Procore 建设工程网络之间的重复公司?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-financial-line-items-and-budget-codes-updated-across-change-objects" title="如何跨变更对象更新财务明细项和预算编号?"><span class="mt-icon-article-none"></span>如何跨变更对象更新财务明细项和预算编号?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-insights-calculated" title="见解是如何计算的?"><span class="mt-icon-article-reference"></span>见解是如何计算的?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-locked-or-restricted-pdf-files-handled-in-the-document-management-tool" title="如何在文档管理工具中处理锁定或受限的 PDF 文件?"><span class="mt-icon-article-none"></span>如何在文档管理工具中处理锁定或受限的 PDF 文件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-pdfs-uploaded-to-the-submittals-tool-affected-by-file-restrictions" title="上传到送审工具的 PDF 如何受文件限制影响?"><span class="mt-icon-article-none"></span>上传到送审工具的 PDF 如何受文件限制影响?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-submittals-numbered-in-procore" title="Procore 中的送审如何编号?"><span class="mt-icon-article-none"></span>Procore 中的送审如何编号?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-task-codes-configured-for-time-entry" title="如何为工时条目配置任务编号?"><span class="mt-icon-article-none"></span>如何为工时条目配置任务编号?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-templates-created-in-portfolio-financials" title="如何在综合财务管理中创建模板?"><span class="mt-icon-article-none"></span>如何在综合财务管理中创建模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-the-date-columns-in-submittal-custom-reports-calculated" title="送审自定义报告中的日期列是如何计算的?"><span class="mt-icon-article-none"></span>送审自定义报告中的日期列是如何计算的?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-version-numbers-updated-in-the-company-level-workflows-tool" title="如何在公司级别工作流工具中更新版本号?"><span class="mt-icon-article-none"></span>如何在公司级别工作流工具中更新版本号?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-bidders-get-locked-out-of-a-sealed-bid-room-in-portfolio-financials" title="如何将投标人锁定在综合财务管理的密封投标室之外?"><span class="mt-icon-article-none"></span>如何将投标人锁定在综合财务管理的密封投标室之外?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-add-cost-codes-to-a-project-synced-with-yardi" title="如何将成本编号添加到与 Yardi Voyager® 同步的项目中"><span class="mt-icon-article-none"></span>如何将成本编号添加到与 Yardi Voyager® 同步的项目中</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-add-custom-bid-form-templates-for-the-bid-room-in-portfolio-financials" title="如何为综合财务管理中的投标室添加自定义投标表单模板?"><span class="mt-icon-article-none"></span>如何为综合财务管理中的投标室添加自定义投标表单模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-add-custom-cost-tracker-templates-in-portfolio-financials" title="如何在综合财务管理中添加自定义成本跟踪器模板?"><span class="mt-icon-article-none"></span>如何在综合财务管理中添加自定义成本跟踪器模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-add-the-procore-project-shutdown-inspection-template-to-my-procore-account" title="如何将“[Procore] 项目停工”检查任务模板添加到我的 Procore 账户?"><span class="mt-icon-article-none"></span>如何将“[Procore] 项目停工”检查任务模板添加到我的 Procore 账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-budget-individual-values-within-a-cost-item-in-portfolio-financials" title="如何为综合财务管理中成本项的单个值编制预算?"><span class="mt-icon-article-none"></span>如何为综合财务管理中成本项的单个值编制预算?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-check-who-has-permissions-to-see-a-specific-correspondence" title="如何查看谁有权查看特定通信?"><span class="mt-icon-article-none"></span>如何查看谁有权查看特定通信?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-check-who-has-permissions-to-see-a-type-of-correspondence" title="如何查看谁有权查看某种类型的通信?"><span class="mt-icon-article-none"></span>如何查看谁有权查看某种类型的通信?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-configure-sso-in-a-sandbox-environment-for-testing" title="在我的 Procore 公司账户中实施 SSO 之前,如何在沙箱环境中配置 SSO 以进行测试?"><span class="mt-icon-article-none"></span>在我的 Procore 公司账户中实施 SSO 之前,如何在沙箱环境中配置 SSO 以进行测试?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-email-a-submittal-so-people-can-reply-through-email" title="我如何通过电子邮件发送送审,以便人们可以通过电子邮件回复?"><span class="mt-icon-article-none"></span>我如何通过电子邮件发送送审,以便人们可以通过电子邮件回复?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-fix-errors-with-pdf-files-in-the-submittals-tool" title="如何在送审工具中修复 PDF 文件错误?"><span class="mt-icon-article-none"></span>如何在送审工具中修复 PDF 文件错误?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-grant-a-limited-user-access-to-a-specific-bid-room-in-portfolio-financials" title="如何授予“有限”用户访问综合财务管理中特定投标室的权限?"><span class="mt-icon-article-none"></span>如何授予“有限”用户访问综合财务管理中特定投标室的权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-handle-cm-fees-in-portfolio-financials" title="我如何处理综合财务管理中的 CM 费用?"><span class="mt-icon-article-none"></span>我如何处理综合财务管理中的 CM 费用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-improve-the-accuracy-of-data-populated-in-the-document-management-tool" title="如何提高文档管理工具中填充数据的准确性?"><span class="mt-icon-article-none"></span>如何提高文档管理工具中填充数据的准确性?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-improve-the-accuracy-of-ocr-on-my-drawings" title="如何提高图纸上 OCR 的准确性?"><span class="mt-icon-article-none"></span>如何提高图纸上 OCR 的准确性?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-improve-the-accuracy-of-specification-section-identification" title="如何提高规范分项识别的准确性?"><span class="mt-icon-article-none"></span>如何提高规范分项识别的准确性?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-keep-track-of-emailed-drawings" title="如何跟踪通过电子邮件发送的图纸?"><span class="mt-icon-article-none"></span>如何跟踪通过电子邮件发送的图纸?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-keep-track-of-emailed-specifications" title="如何跟踪通过电子邮件发送的规范?"><span class="mt-icon-article-none"></span>如何跟踪通过电子邮件发送的规范?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-manually-add-a-bid-in-portfolio-financials" title="如何在综合财务管理中手动添加投标?"><span class="mt-icon-article-none"></span>如何在综合财务管理中手动添加投标?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-monitor-activity-across-all-of-my-buildings-in-portfolio-financials-and-capital-planning" title="如何在综合财务管理和资金规划中监控我所有建筑物的活动?"><span class="mt-icon-article-none"></span>如何在综合财务管理和资金规划中监控我所有建筑物的活动?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-request-a-folder-template-for-documents-in-my-portfolio-financials-projects" title="如何为综合财务管理项目中的文档请求文件夹模板?"><span class="mt-icon-article-none"></span>如何为综合财务管理项目中的文档请求文件夹模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-run-a-best-and-final-round-of-bidding-in-portfolio-financials" title="如何在综合财务管理中进行最佳和最后一轮投标?"><span class="mt-icon-article-none"></span>如何在综合财务管理中进行最佳和最后一轮投标?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-see-where-my-non-budgeted-line-items-are-coming-from" title="如何查看未编制预算的明细项的来源?"><span class="mt-icon-article-none"></span>如何查看未编制预算的明细项的来源?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-set-up-a-tenant-construction-chargeback-in-the-cost-tracker" title="如何在成本跟踪器中设置租户施工退款?"><span class="mt-icon-article-none"></span>如何在成本跟踪器中设置租户施工退款?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-share-access-to-a-bid-room-in-portfolio-financials" title="如何在综合财务管理中共享对投标室的访问权限?"><span class="mt-icon-article-none"></span>如何在综合财务管理中共享对投标室的访问权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-share-access-to-a-contract-room-in-portfolio-financials" title="如何在综合财务管理中共享对合同室的访问权限?"><span class="mt-icon-article-none"></span>如何在综合财务管理中共享对合同室的访问权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-project-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目是否已与集成 ERP 系统同步?"><span class="mt-icon-article-none"></span>如何判断 Procore 项目是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-projects-budget-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目的预算是否已与集成 ERP 系统同步?"><span class="mt-icon-article-none"></span>如何判断 Procore 项目的预算是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-i-have-a-free-or-paid-procore-account" title="如何判断我有免费还是付费 Procore 公司账户?"><span class="mt-icon-article-none"></span>如何判断我有免费还是付费 Procore 公司账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-unaward-a-bid-or-contract-in-portfolio-financials" title="如何在综合财务管理中解除投标或合同?"><span class="mt-icon-article-none"></span>如何在综合财务管理中解除投标或合同?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-upload-large-files-to-the-procore-web-app" title="如何将大文件上传到Procore Web应用程序?"><span class="mt-icon-article-none"></span>如何将大文件上传到Procore Web应用程序?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-procores-hot-work-permit-pdf-in-my-projects-forms-tool" title="如何在项目表单工具中使用 Procore 的动火作业许可 PDF?"><span class="mt-icon-article-none"></span>如何在项目表单工具中使用 Procore 的动火作业许可 PDF?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-procores-incidents-tool-to-record-coronavirus-covid-19-infection-information" title="如何使用 Procore 的事件工具记录冠状病毒 (COVID-19) 感染信息?"><span class="mt-icon-article-none"></span>如何使用 Procore 的事件工具记录冠状病毒 (COVID-19) 感染信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-procores-job-hazard-analysis-pdf-in-my-projects-forms-tool" title="如何在项目表单工具中使用 Procore 的作业危害分析 PDF?"><span class="mt-icon-article-none"></span>如何在项目表单工具中使用 Procore 的作业危害分析 PDF?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-procores-toolbox-talk-sign-in-pdf-in-my-projects-forms-tool" title="如何在项目表单工具中使用 Procore 的 Toolbox Talk Sign-In PDF?"><span class="mt-icon-article-none"></span>如何在项目表单工具中使用 Procore 的 Toolbox Talk Sign-In PDF?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-tax-codes-on-a-procore-project" title="如何在 Procore 项目中使用税务代码?"><span class="mt-icon-article-none"></span>如何在 Procore 项目中使用税务代码?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-nextwave-safety-solutions-concrete-pre-pour-inspection-template-on-my-project" title="如何在我的项目中使用“[NextWave Safety Solutions] 混凝土预浇注”检查任务模板?"><span class="mt-icon-article-none"></span>如何在我的项目中使用“[NextWave Safety Solutions] 混凝土预浇注”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-nextwave-safety-solutions-ladder-safety-simple-checklist-inspection-template-on-my-project" title="如何在我的项目中使用“[NextWave Safety Solutions] 梯子安全性 - 简单检查清单”检查任务模板?"><span class="mt-icon-article-none"></span>如何在我的项目中使用“[NextWave Safety Solutions] 梯子安全性 - 简单检查清单”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-oac-management-inc-pre-backfill-checklist-inspection-template-on-my-project" title="如何在我的项目中使用“[OAC Management Inc.] 预回填检查清单”检查任务模板?"><span class="mt-icon-article-none"></span>如何在我的项目中使用“[OAC Management Inc.] 预回填检查清单”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-oac-management-inc-pre-drywall-checklist-inspection-template-on-my-project" title="如何在我的项目中使用“[OAC Management Inc.] 预干墙检查清单”检查任务模板?"><span class="mt-icon-article-none"></span>如何在我的项目中使用“[OAC Management Inc.] 预干墙检查清单”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-oac-management-inc-pre-roofing-checklist-inspection-template-on-my-project" title="如何在我的项目中使用“[OAC Management Inc.] 铺盖屋顶前检查清单”检查任务模板?"><span class="mt-icon-article-none"></span>如何在我的项目中使用“[OAC Management Inc.] 铺盖屋顶前检查清单”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-osha-daily-inspection-of-trenches-and-excavations-inspection-template-on-my-project" title="如何在我的项目中使用“[OSHA] 沟槽和挖掘日常检查”检查任务模板?"><span class="mt-icon-article-none"></span>如何在我的项目中使用“[OSHA] 沟槽和挖掘日常检查”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-osha-lockout-tagout-procedures-inspection-template-on-my-project" title="如何在我的项目中使用“[OSHA] 上锁/挂牌程序”检查任务模板?"><span class="mt-icon-article-none"></span>如何在我的项目中使用“[OSHA] 上锁/挂牌程序”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-osha-materials-handling-inspection-template-on-my-project" title="如何在我的项目中使用“[OSHA] 材料处理”检查任务模板?"><span class="mt-icon-article-none"></span>如何在我的项目中使用“[OSHA] 材料处理”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-procore-equipment-pre-operation-checklist-inspection-template-on-my-project" title="如何在我的项目中使用“[Procore] 设备操作前检查清单”检查任务模板?"><span class="mt-icon-article-none"></span>如何在我的项目中使用“[Procore] 设备操作前检查清单”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-procore-jobsite-cleanliness-and-preparedness-checklist-inspection-template-on-my-project" title="如何在我的项目中使用“[Procore] 作业现场清洁和准备检查清单”检查任务模板?"><span class="mt-icon-article-none"></span>如何在我的项目中使用“[Procore] 作业现场清洁和准备检查清单”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-procore-swppp-construction-site-stormwater-checklist-inspection-template-on-my-project" title="如何在我的项目中使用“[Procore] SWPPP - 施工现场雨水检查清单”检查任务模板?"><span class="mt-icon-article-none"></span>如何在我的项目中使用“[Procore] SWPPP - 施工现场雨水检查清单”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-site-safety-inspection-template-on-my-project" title="如何在我的项目中使用“现场安全检查任务”模板?"><span class="mt-icon-article-none"></span>如何在我的项目中使用“现场安全检查任务”模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-wages-in-resource-planning" title="如何在资源规划中使用工资?"><span class="mt-icon-article-none"></span>如何在资源规划中使用工资?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-view-a-custom-training-center" title="如何查看自定义培训中心?"><span class="mt-icon-article-none"></span>如何查看自定义培训中心?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-view-reports-of-a-single-log-or-a-single-person-within-a-log" title="如何查看单个日志或日志中某人的报告?"><span class="mt-icon-article-none"></span>如何查看单个日志或日志中某人的报告?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-my-company-receive-bid-invitations-through-the-procore-construction-network" title="我的公司如何通过 Procore 建设工程网络接收投标邀请?"><span class="mt-icon-article-none"></span>我的公司如何通过 Procore 建设工程网络接收投标邀请?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-approval-workflows-get-set-up-in-portfolio-financials" title="如何在综合财务管理中设置审批工作流?"><span class="mt-icon-article-none"></span>如何在综合财务管理中设置审批工作流?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-bid-approvals-work-in-portfolio-financials" title="综合财务管理中的投标审批如何运作?"><span class="mt-icon-article-none"></span>综合财务管理中的投标审批如何运作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-budget-approvals-work-in-portfolio-financials" title="综合财务管理中的预算审批如何运作?"><span class="mt-icon-article-none"></span>综合财务管理中的预算审批如何运作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-budget-codes-in-an-estimate-create-line-items-in-a-budget" title="估算中的预算编号如何创建预算中的明细项?"><span class="mt-icon-article-none"></span>估算中的预算编号如何创建预算中的明细项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-cash-flow-forecasts-and-capital-plans-interact-in-portfolio-financials-and-capital-planning" title="现金流预测和资金规划如何在综合财务管理和资金规划中相互作用?"><span class="mt-icon-article-none"></span>现金流预测和资金规划如何在综合财务管理和资金规划中相互作用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-change-order-approvals-work-in-portfolio-financials" title="综合财务管理中的变更通知单审批如何运作?"><span class="mt-icon-article-none"></span>综合财务管理中的变更通知单审批如何运作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-contract-approvals-work-in-portfolio-financials" title="综合财务管理中的合同审批如何运作?"><span class="mt-icon-article-none"></span>综合财务管理中的合同审批如何运作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-cost-catalog-item-types-relate-to-cost-types-in-procore" title="成本目录项类型与 Procore 中的成本类型有何关系?"><span class="mt-icon-article-none"></span>成本目录项类型与 Procore 中的成本类型有何关系?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-data-entry-differ-between-punch-items-created-with-manual-input-and-punch-items-created-with-quick-capture" title="使用手动输入创建的尾项项目和使用 Quick Capture 创建的尾项项目之间的数据输入有何不同?"><span class="mt-icon-article-none"></span>使用手动输入创建的尾项项目和使用 Quick Capture 创建的尾项项目之间的数据输入有何不同?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-hh2-connect-to-the-sage-300-cre-server" title="hh2 如何连接到 Sage 300 CRE 服务器?"><span class="mt-icon-article-none"></span>hh2 如何连接到 Sage 300 CRE 服务器?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-analytics-store-dates" title="Procore Analytics如何存储日期?"><span class="mt-icon-article-none"></span>Procore Analytics如何存储日期?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-assign-numbers-to-rfis" title="Procore 如何为 RFI 分配编号?"><span class="mt-icon-article-none"></span>Procore 如何为 RFI 分配编号?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-automatically-complete-amounts-on-an-owner-invoice" title="Procore 如何自动完成业主 发票上的金额? (测试版)"><span class="mt-icon-article-none"></span>Procore 如何自动完成业主 发票上的金额? (测试版)</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-automatically-complete-amounts-on-an-upstream-invoice" title="Procore 如何自动完成上游 发票上的金额? (旧版)"><span class="mt-icon-article-none"></span>Procore 如何自动完成上游 发票上的金额? (旧版)</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-calculate-an-invoices-current-payment-due-amount" title="Procore 如何计算发票的“当前到期应付款”金额?"><span class="mt-icon-article-none"></span>Procore 如何计算发票的“当前到期应付款”金额?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-calculate-the-over-under-value-in-change-events" title="Procore 如何计算变更事件中的超支/结余值?"><span class="mt-icon-article-none"></span>Procore 如何计算变更事件中的超支/结余值?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-decide-which-document-version-is-the-latest-in-the-document-management-tool" title="Procore 如何确定文档管理工具中的最新文档版本?"><span class="mt-icon-article-none"></span>Procore 如何确定文档管理工具中的最新文档版本?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-someone-become-a-follower-of-a-conversation-in-procore" title="某人如何才能成为 Procore 中对话的“关注者”?"><span class="mt-icon-article-none"></span>某人如何才能成为 Procore 中对话的“关注者”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-the-actual-date-filter-work-on-a-budget-view" title="“按日期的实际值”筛选器如何在预算视图中工作?"><span class="mt-icon-article-none"></span>“按日期的实际值”筛选器如何在预算视图中工作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-the-budget-forecast-report" title="什么是预算预测报告?"><span class="mt-icon-article-none"></span>什么是预算预测报告?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-the-hh2-synchronization-client-connect-procore-to-sage-100-contractor" title="hh2 同步客户端如何将 Procore 连接到 Sage 100 Contractor?"><span class="mt-icon-article-none"></span>hh2 同步客户端如何将 Procore 连接到 Sage 100 Contractor?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-the-hh2-synchronization-client-transmit-data" title="hh2 同步客户端如何传输数据?"><span class="mt-icon-article-none"></span>hh2 同步客户端如何传输数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-the-integration-by-ryvit-connect-procore-with-viewpoint-vista" title="Ryvit 集成如何连接 Procore 与 Viewpoint® Vista™?"><span class="mt-icon-article-none"></span>Ryvit 集成如何连接 Procore 与 Viewpoint® Vista™?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-the-office-365-integration-in-procores-documents-tool-work" title="Procore 文档工具中的 Office 365 集成如何运行?"><span class="mt-icon-article-none"></span>Procore 文档工具中的 Office 365 集成如何运行?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-the-punch-list-workflow-affect-my-existing-punch-list-items" title="尾项清单工作流如何影响我现有的尾项清单项?"><span class="mt-icon-article-none"></span>尾项清单工作流如何影响我现有的尾项清单项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-tls-1-2-impact-users" title="传输层安全 v1.2 要求对用户有何影响?"><span class="mt-icon-article-none"></span>传输层安全 v1.2 要求对用户有何影响?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-x509-certificate-upgrade-impact-users" title="X.509 证书升级对用户有何影响?"><span class="mt-icon-article-none"></span>X.509 证书升级对用户有何影响?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-access-an-rfi-as-an-assignee" title="作为任务分配对象,如何访问 RFI?"><span class="mt-icon-article-none"></span>作为任务分配对象,如何访问 RFI?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-access-my-companys-training-center" title="如何访问我公司的培训中心?"><span class="mt-icon-article-none"></span>如何访问我公司的培训中心?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-a-bid-board-project-to-the-portfolio-tool-in-procore" title="如何将投标面板项目添加到 Procore 中的项目集合工具?"><span class="mt-icon-article-none"></span>如何将投标面板项目添加到 Procore 中的项目集合工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-a-building-to-my-account-in-portfolio-financials" title="如何在综合财务管理中将建筑添加到我的账户?"><span class="mt-icon-article-none"></span>如何在综合财务管理中将建筑添加到我的账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-additional-contacts-to-a-vendor-profile-in-portfolio-financials" title="如何向综合财务管理中的供应商配置文件添加其他联系人?"><span class="mt-icon-article-none"></span>如何向综合财务管理中的供应商配置文件添加其他联系人?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-an-avatar-or-profile-photo-to-procore" title="如何向 Procore 添加头像或个人资料照片?"><span class="mt-icon-article-none"></span>如何向 Procore 添加头像或个人资料照片?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-a-new-sage-300-cre-cost-code-or-cost-type" title="如何添加新的 Sage 300 CRE 成本编号或成本类型?"><span class="mt-icon-article-none"></span>如何添加新的 Sage 300 CRE 成本编号或成本类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-bidders-in-the-new-bid-management-experience" title="如何在新的投标管理体验中添加投标人?"><span class="mt-icon-article-none"></span>如何在新的投标管理体验中添加投标人?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-missing-cost-codes-so-i-can-migrate-projects-to-the-new-bid-management-experience" title="如何添加缺失的成本编号以便将项目迁移到新版投标管理体验?"><span class="mt-icon-article-none"></span>如何添加缺失的成本编号以便将项目迁移到新版投标管理体验?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-people-to-the-submittal-workflow" title="如何将人员添加到送审工作流?"><span class="mt-icon-article-none"></span>如何将人员添加到送审工作流?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-procore-as-an-endorsable-skill-on-my-linkedin-profile" title="如何在我的 LinkedIn 个人资料中添加“Procore”作为可认可的技能?"><span class="mt-icon-article-none"></span>如何在我的 LinkedIn 个人资料中添加“Procore”作为可认可的技能?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-the-timesheet-hours-column-to-a-budget-view" title="如何将“考勤表工时”列添加到预算视图?"><span class="mt-icon-article-none"></span>如何将“考勤表工时”列添加到预算视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-tools-to-my-favorites-list-in-procore" title="如何在 Procore 中将工具添加到收藏夹列表?"><span class="mt-icon-article-none"></span>如何在 Procore 中将工具添加到收藏夹列表?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-unit-based-line-item-details-in-the-budget-import-template" title="如何在 Procore 的预算导入模板中添加基于单位的明细项详细信息?"><span class="mt-icon-article-none"></span>如何在 Procore 的预算导入模板中添加基于单位的明细项详细信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-adjust-my-budget-views-when-the-client-contracts-funding-or-prime-contracts-tool-is-disabled-in-my-companys-procore-account" title="当我公司 Procore 账户禁用客户合同、资金或主合同工具时,我能如何调整预算视图?"><span class="mt-icon-article-none"></span>当我公司 Procore 账户禁用客户合同、资金或主合同工具时,我能如何调整预算视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-adjust-the-procore-standard-forecast-view-when-the-client-contracts-funding-or-prime-contracts-tool-is-disabled" title="当客户合同、资金或主合同工具被禁用时,我如何调整 Procore 标准预测视图?"><span class="mt-icon-article-none"></span>当客户合同、资金或主合同工具被禁用时,我如何调整 Procore 标准预测视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-apply-markups-from-a-previous-revision" title="如何将先前修订中的标记应用到新修订?"><span class="mt-icon-article-none"></span>如何将先前修订中的标记应用到新修订?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-attach-multiple-files-at-once-to-a-transmittal" title="如何一次将多个文件添加到传输记录中?"><span class="mt-icon-article-none"></span>如何一次将多个文件添加到传输记录中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-avoid-and-report-phishing-emails" title="如何避免和报告网络钓鱼电子邮件?"><span class="mt-icon-article-none"></span>如何避免和报告网络钓鱼电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-backfill-an-invoice-from-yardi-to-portfolio-financials" title="如何将来自 Yardi 的发票回填到综合财务管理?"><span class="mt-icon-article-none"></span>如何将来自 Yardi 的发票回填到综合财务管理?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-bill-for-stored-materials-in-an-invoice" title="如何在发票中为库存材料开具账单? (测试版)"><span class="mt-icon-article-none"></span>如何在发票中为库存材料开具账单? (测试版)</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-change-a-known-password" title="如何更改已知密码?"><span class="mt-icon-article-none"></span>如何更改已知密码?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-change-my-name-or-email-address-in-procore-certification" title="如何更改我在 Procore 认证中的姓名或电子邮件地址?"><span class="mt-icon-article-none"></span>如何更改我在 Procore 认证中的姓名或电子邮件地址?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-change-my-web-browsers-default-email-client-for-mailto-links" title="如何为 mailto 链接更改我的 Web 浏览器的默认电子邮件客户端?"><span class="mt-icon-article-none"></span>如何为 mailto 链接更改我的 Web 浏览器的默认电子邮件客户端?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-change-the-responsible-contractor-field-on-my-submittal" title="如何更改送审的“责任承包商”字段?"><span class="mt-icon-article-none"></span>如何更改送审的“责任承包商”字段?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-check-what-procore-tools-are-included-with-my-procore-account" title="如何查看我的 Procore 账户中包含哪些 Procore 工具?"><span class="mt-icon-article-none"></span>如何查看我的 Procore 账户中包含哪些 Procore 工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-choose-a-default-punch-item-manager-for-my-project" title="如何为我的项目选择默认尾项项目经理?"><span class="mt-icon-article-none"></span>如何为我的项目选择默认尾项项目经理?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-complete-tasks-in-procore-that-i-used-to-complete-in-the-standalone-procore-estimating-application" title="如何在 Procore 中完成以前在独立 Procore Estimating 应用程序中完成的任务?"><span class="mt-icon-article-none"></span>如何在 Procore 中完成以前在独立 Procore Estimating 应用程序中完成的任务?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-configure-my-web-browser-to-allow-popups-from-procore" title="如何配置我的 Web 浏览器以允许来自 Procore 的弹出窗口?"><span class="mt-icon-article-none"></span>如何配置我的 Web 浏览器以允许来自 Procore 的弹出窗口?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-configure-privacy-settings-for-a-correspondence-item" title="如何为通信项配置隐私设置?"><span class="mt-icon-article-none"></span>如何为通信项配置隐私设置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-configure-user-permissions-for-multi-tier-approvals-with-timekeeping" title="如何为带计时的多层审批配置用户权限?"><span class="mt-icon-article-none"></span>如何为带计时的多层审批配置用户权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-control-which-emails-are-sent-by-procore-during-the-rfi-process" title="如何控制 Procore 在 RFI 过程中发送的电子邮件?"><span class="mt-icon-article-none"></span>如何控制 Procore 在 RFI 过程中发送的电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-control-which-emails-are-sent-by-procore-from-the-punch-list-tool" title="我如何控制 Procore 从尾项清单工具发送哪些电子邮件?"><span class="mt-icon-article-none"></span>我如何控制 Procore 从尾项清单工具发送哪些电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-create-a-billing-period-for-an-invoice" title="如何为发票创建结算期?"><span class="mt-icon-article-none"></span>如何为发票创建结算期?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-create-a-bookmark-to-procore" title="如何为 Procore 创建书签?"><span class="mt-icon-article-none"></span>如何为 Procore 创建书签?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-create-a-desktop-shortcut-to-procore" title="如何创建 Procore 的桌面快捷方式?"><span class="mt-icon-article-none"></span>如何创建 Procore 的桌面快捷方式?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-create-a-fillable-pdf" title="如何创建可填写 PDF?"><span class="mt-icon-article-none"></span>如何创建可填写 PDF?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-create-or-join-a-zoom-meeting-in-procore" title="如何在 Procore 中创建或加入 Zoom 会议?"><span class="mt-icon-article-none"></span>如何在 Procore 中创建或加入 Zoom 会议?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-customize-submittal-responses" title="如何自定义送审答复?"><span class="mt-icon-article-none"></span>如何自定义送审答复?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-delete-line-items-in-approved-change-orders" title="如何删除已获批变更通知单中的明细项?"><span class="mt-icon-article-none"></span>如何删除已获批变更通知单中的明细项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-determine-the-latitude-and-longitude-values-on-an-address" title="如何确定地址的纬度和经度值?"><span class="mt-icon-article-none"></span>如何确定地址的纬度和经度值?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-determine-whether-a-punch-list-item-has-been-sent" title="如何确定是否已发送尾项清单项目?"><span class="mt-icon-article-none"></span>如何确定是否已发送尾项清单项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-disable-quick-capture-for-ios" title="如何禁用 iOS 的 Quick Capture?"><span class="mt-icon-article-none"></span>如何禁用 iOS 的 Quick Capture?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-display-a-list-of-project-dates-on-the-home-page" title="如何在主页上显示项目日期列表?"><span class="mt-icon-article-none"></span>如何在主页上显示项目日期列表?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-download-the-google-chrome-browser" title="如何下载 Google Chrome 浏览器?"><span class="mt-icon-article-none"></span>如何下载 Google Chrome 浏览器?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-download-the-mozilla-firefox-browser" title="如何下载 Mozilla Firefox 浏览器?"><span class="mt-icon-article-none"></span>如何下载 Mozilla Firefox 浏览器?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-download-the-procore-android-mobile-application" title="如何下载 Procore 的 Android 移动应用程序?"><span class="mt-icon-article-none"></span>如何下载 Procore 的 Android 移动应用程序?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-edit-an-initial-award-amount-for-a-contract-in-portfolio-financials" title="如何在综合财务管理中编辑合同初始奖励金额?"><span class="mt-icon-article-none"></span>如何在综合财务管理中编辑合同初始奖励金额?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-edit-a-project-schedule-in-procore" title="如何在 Procore 中编辑项目进度计划?"><span class="mt-icon-article-none"></span>如何在 Procore 中编辑项目进度计划?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enable-additional-workforce-labor-types-for-the-daily-log" title="如何为工作日志启用其他劳动力人工类型?"><span class="mt-icon-article-none"></span>如何为工作日志启用其他劳动力人工类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enable-cost-allocations-and-components-for-a-portfolio-financials-project" title="如何为综合财务管理项目启用成本分配和组件?"><span class="mt-icon-article-none"></span>如何为综合财务管理项目启用成本分配和组件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enable-retainage-for-a-contract-in-portfolio-financials" title="如何在综合财务管理中为合同启用保留金?"><span class="mt-icon-article-none"></span>如何在综合财务管理中为合同启用保留金?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enable-the-docusign-integration" title="如何启用 DocuSign® 集成?"><span class="mt-icon-article-none"></span>如何启用 DocuSign® 集成?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-ensure-that-procore-emails-reach-the-recipients" title="如何确保 Procore 电子邮件送达收件人?"><span class="mt-icon-article-none"></span>如何确保 Procore 电子邮件送达收件人?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enter-a-credit-invoice-in-portfolio-financials" title="如何在综合财务管理中输入信用发票?"><span class="mt-icon-article-none"></span>如何在综合财务管理中输入信用发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enter-budgeted-projects-for-the-year-in-portfolio-financials-and-capital-planning" title="如何在综合财务管理和资金规划中输入当年的预算项目?"><span class="mt-icon-article-none"></span>如何在综合财务管理和资金规划中输入当年的预算项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-export-a-project-budget-from-procore-to-sage-300-cre" title="如何将项目预算从 Procore 导出到 Sage 300 CRE?"><span class="mt-icon-article-none"></span>如何将项目预算从 Procore 导出到 Sage 300 CRE?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-export-cost-forecast-data-from-a-procore-budget-to-cmic" title="如何将成本预测数据从 Procore 预算导出到CMiC"><span class="mt-icon-article-none"></span>如何将成本预测数据从 Procore 预算导出到CMiC</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-export-cost-forecast-data-from-a-procore-budget-to-erp" title="如何将成本预测数据从 Procore 预算导出到 ERP"><span class="mt-icon-article-none"></span>如何将成本预测数据从 Procore 预算导出到 ERP</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-filter-items-by-multi-tiered-locations" title="如何按多层地点筛选项?"><span class="mt-icon-article-none"></span>如何按多层地点筛选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-filter-out-recycled-items-from-a-custom-rfis-report" title="如何从自定义 RFI 报告中筛选掉“已回收”项?"><span class="mt-icon-article-none"></span>如何从自定义 RFI 报告中筛选掉“已回收”项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-find-the-company-id" title="如何找到公司 ID?"><span class="mt-icon-article-none"></span>如何找到公司 ID?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-find-the-project-id" title="如何查找项目 ID?"><span class="mt-icon-article-none"></span>如何查找项目 ID?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-get-a-docusign-account" title="如何获得 DocuSign® 账户?"><span class="mt-icon-article-none"></span>如何获得 DocuSign® 账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-get-started-with-procore-analytics" title="如何开始使用Procore Analytics?"><span class="mt-icon-article-none"></span>如何开始使用Procore Analytics?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-get-the-latest-version-of-safari-for-osx" title="如何获取适用于 Mac OS X 的最新版本的 Safari?"><span class="mt-icon-article-none"></span>如何获取适用于 Mac OS X 的最新版本的 Safari?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/How-do-I-get-the-percent-complete-updated-in-the-native-schedule-file" title="如何在本地进度计划文件中更新完成百分比?"><span class="mt-icon-article-none"></span>如何在本地进度计划文件中更新完成百分比?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-give-users-access-to-the-prequalifications-tool" title="如何让用户访问资格预审工具?"><span class="mt-icon-article-none"></span>如何让用户访问资格预审工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-know-if-an-rfi-that-i-posted-in-the-bid-room-has-been-answered" title="我如何知道我在投标室发布的 RFI 是否已得到答复?"><span class="mt-icon-article-none"></span>我如何知道我在投标室发布的 RFI 是否已得到答复?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-know-if-my-docusign-account-is-synced-to-procores" title="如何了解我的 DocuSign 账户是否与 Procore 同步?"><span class="mt-icon-article-none"></span>如何了解我的 DocuSign 账户是否与 Procore 同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-know-if-someone-has-downloaded-a-file" title="我如何知道是否有人下载了文件?"><span class="mt-icon-article-none"></span>我如何知道是否有人下载了文件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-locate-an-archived-project-in-portfolio-financials-and-capital-planning" title="如何在综合财务管理和资金规划中找到存档的项目?"><span class="mt-icon-article-none"></span>如何在综合财务管理和资金规划中找到存档的项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-log-in-to-portfolio-financials-and-capital-planning" title="如何登录综合财务管理和资金规划?"><span class="mt-icon-article-none"></span>如何登录综合财务管理和资金规划?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-log-in-to-procore-support-site" title="如何登录 Procore 支持网站?"><span class="mt-icon-article-none"></span>如何登录 Procore 支持网站?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-log-into-procore-using-azure-ad-sso" title="如何使用Microsoft Azure AD (Entra ID)单点登录来登录 Procore?"><span class="mt-icon-article-none"></span>如何使用Microsoft Azure AD (Entra ID)单点登录来登录 Procore?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-look-at-the-daily-log-for-multiple-days" title="如何查看多天的工作日志?"><span class="mt-icon-article-none"></span>如何查看多天的工作日志?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-make-my-punch-list-items-private-by-default" title="如何将我的尾项清单项目默认设为私密?"><span class="mt-icon-article-none"></span>如何将我的尾项清单项目默认设为私密?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-mark-an-assignee-as-a-required-responder-on-an-rfi" title="如何将任务分配对象标记为 RFI 的所需答复者?"><span class="mt-icon-article-none"></span>如何将任务分配对象标记为 RFI 的所需答复者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-navigate-to-a-bid-room-in-portfolio-financials" title="如何导航到综合财务管理中的投标室?"><span class="mt-icon-article-none"></span>如何导航到综合财务管理中的投标室?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-integrations-with-procore-access-my-companys-data" title="与 Procore 集成如何访问公司的数据?"><span class="mt-icon-article-none"></span>与 Procore 集成如何访问公司的数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-invoice-approvals-work-in-portfolio-financials" title="综合财务管理中的发票审批如何运作?"><span class="mt-icon-article-none"></span>综合财务管理中的发票审批如何运作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-opt-in-to-the-beta-for-procore-conversations" title="如何选择加入 Procore 对话的测试版?"><span class="mt-icon-article-none"></span>如何选择加入 Procore 对话的测试版?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-perform-a-hard-refresh-in-my-web-browser" title="如何在 Web 浏览器中执行硬刷新?"><span class="mt-icon-article-none"></span>如何在 Web 浏览器中执行硬刷新?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-post-an-idea-for-procore" title="我如何发布有关 Procore 的想法?"><span class="mt-icon-article-none"></span>我如何发布有关 Procore 的想法?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-preserve-cost-code-formatting-in-excel" title="如何在 Excel 中保留成本编号格式?"><span class="mt-icon-article-none"></span>如何在 Excel 中保留成本编号格式?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-prevent-duplicate-projects-when-syncing-data-with-resource-planning" title="与资源规划同步数据时如何防止重复项目?"><span class="mt-icon-article-none"></span>与资源规划同步数据时如何防止重复项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-rate-a-page-and-send-feedback" title="如何对页面评分并发送反馈?"><span class="mt-icon-article-none"></span>如何对页面评分并发送反馈?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-remove-a-submitter-or-approver-from-a-submittal-workflow-while-the-approval-process-is-in-progress" title="在审批流程中,如何从送审工作流中移除送审者或审批者?"><span class="mt-icon-article-none"></span>在审批流程中,如何从送审工作流中移除送审者或审批者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-request-access-to-a-custom-training-center" title="如何请求访问自定义培训中心?"><span class="mt-icon-article-none"></span>如何请求访问自定义培训中心?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-revoke-project-access-for-a-procore-user" title="如何撤销 Procore 用户的项目访问权限?"><span class="mt-icon-article-none"></span>如何撤销 Procore 用户的项目访问权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-run-a-sealed-bid-process-in-portfolio-financials" title="如何在综合财务管理中运行密封投标流程?"><span class="mt-icon-article-none"></span>如何在综合财务管理中运行密封投标流程?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-and-release-retainage-on-a-subcontractor-invoice-in-procore" title="如何在 Procore 中设置和返还分包商发票的保留金?"><span class="mt-icon-article-none"></span>如何在 Procore 中设置和返还分包商发票的保留金?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-the-accounting-method-for-a-contract-or-funding" title="如何设置合同或资金的会计方法?"><span class="mt-icon-article-none"></span>如何设置合同或资金的会计方法?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-the-accounting-method-for-bids" title="如何为投标设置会计方法?"><span class="mt-icon-article-none"></span>如何为投标设置会计方法?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-a-budget-view-for-real-time-labor-productivity" title="如何为实时人工生产力设置预算视图?"><span class="mt-icon-article-none"></span>如何为实时人工生产力设置预算视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-I-set-up-my-account-in-resource-planning" title="如何在资源规划中设置我的账户?"><span class="mt-icon-article-none"></span>如何在资源规划中设置我的账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-permissions-for-a-correspondence-type" title="如何设置通信类型的权限?"><span class="mt-icon-article-none"></span>如何设置通信类型的权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-procore-sso-with-okta" title="如何为 Procore 配置 Okta 单点登录 (SAML 2.0)?"><span class="mt-icon-article-none"></span>如何为 Procore 配置 Okta 单点登录 (SAML 2.0)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-single-sign-on-sso-with-procore" title="如何使用 Procore 设置单点登录 (SSO)?"><span class="mt-icon-article-none"></span>如何使用 Procore 设置单点登录 (SSO)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-the-procore-labor-productivity-cost-view" title="如何设置“Procore 人工生产力成本”预算视图?"><span class="mt-icon-article-none"></span>如何设置“Procore 人工生产力成本”预算视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-the-subcontractor-invoices-and-payments-feature-for-procore-quickbooks" title="如何为 Procore + QuickBooks 设置分包商发票和付款功能?"><span class="mt-icon-article-none"></span>如何为 Procore + QuickBooks 设置分包商发票和付款功能?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-share-feedback-with-procore" title="如何与 Procore 分享反馈?"><span class="mt-icon-article-none"></span>如何与 Procore 分享反馈?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-show-previous-minutes-on-a-meeting-pdf" title="如何在会议 PDF 上显示以前的会议纪要?"><span class="mt-icon-article-none"></span>如何在会议 PDF 上显示以前的会议纪要?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-sign-up-for-procore-certification-if-i-do-not-have-procore-login-credentials" title="如果我没有 Procore 登录凭证,该如何注册 Procore 认证?"><span class="mt-icon-article-none"></span>如果我没有 Procore 登录凭证,该如何注册 Procore 认证?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-stop-a-meeting-item-from-carrying-over-to-a-follow-up-meeting" title="如何阻止会议项转移到后续会议?"><span class="mt-icon-article-none"></span>如何阻止会议项转移到后续会议?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-submit-a-response-to-a-draft-rfi-when-i-am-the-rfi-manager" title="如果我是 RFI 经理,如何提交对 RFI“草稿”的答复?"><span class="mt-icon-article-none"></span>如果我是 RFI 经理,如何提交对 RFI“草稿”的答复?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-submit-a-subcontractor-schedule-of-values-for-a-procore-commitment" title="如何提交 Procore 合约的分包商分项价格表?"><span class="mt-icon-article-none"></span>如何提交 Procore 合约的分包商分项价格表?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-submit-change-orders-and-invoices-in-portfolio-financials" title="如何在综合财务管理中提交变更通知单和发票?"><span class="mt-icon-article-none"></span>如何在综合财务管理中提交变更通知单和发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-switch-between-portfolio-financials-and-project-management-toolkits-in-procore" title="如何在 Procore 中的综合财务管理和项目管理工具包之间切换?"><span class="mt-icon-article-none"></span>如何在 Procore 中的综合财务管理和项目管理工具包之间切换?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-sync-my-prime-contract-with-acumatica" title="如何将我的主合同与 Acumatica 或MYOB Advanced Construction同步?"><span class="mt-icon-article-none"></span>如何将我的主合同与 Acumatica 或MYOB Advanced Construction同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-items-in-procore-appear-on-the-map" title="Procore 中的项如何在地图上显示?"><span class="mt-icon-article-reference"></span>Procore 中的项如何在地图上显示?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-track-non-commitment-costs-on-a-change-event" title="如何跟踪变更事件的非合约成本?"><span class="mt-icon-article-none"></span>如何跟踪变更事件的非合约成本?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-track-the-actual-materials-received-and-installed-on-a-job-site" title="如何跟踪在作业现场接收和安装的实际材料?"><span class="mt-icon-article-none"></span>如何跟踪在作业现场接收和安装的实际材料?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-update-an-expiring-x509-certificate-in-my-companys-procore-sso-configuration-settings" title="如何在公司的 Procore 单点登录配置设置中更新即将到期的 x509 证书?"><span class="mt-icon-article-none"></span>如何在公司的 Procore 单点登录配置设置中更新即将到期的 x509 证书?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-use-tags-keywords-in-procore" title="如何在 Procore 中使用标签/关键词?"><span class="mt-icon-article-none"></span>如何在 Procore 中使用标签/关键词?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-use-tags-with-expiration-dates-in-resource-planning" title="如何在资源规划中使用带有到期日期的标记?"><span class="mt-icon-article-none"></span>如何在资源规划中使用带有到期日期的标记?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-use-the-navigation-bar-to-go-back-to-the-company-portfolio" title="如何使用导航栏返回公司项目集合?"><span class="mt-icon-article-none"></span>如何使用导航栏返回公司项目集合?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-use-the-notification-center" title="如何使用通知中心?"><span class="mt-icon-article-none"></span>如何使用通知中心?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-verify-an-australian-business-number-abn" title="如何验证澳大利亚商业编号 (ABN)?"><span class="mt-icon-article-none"></span>如何验证澳大利亚商业编号 (ABN)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-view-incomplete-certification-or-ce-lessons" title="我如何查看未完成的认证或成人教育课程?"><span class="mt-icon-article-none"></span>我如何查看未完成的认证或成人教育课程?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-I-view-resource-allocation-percentage" title="如何查看资源分配百分比?"><span class="mt-icon-article-none"></span>如何查看资源分配百分比?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-my-project-specific-cost-code-segment-items-get-carried-over-to-a-new-project-from-a-project-template" title="我的特定于项目的“成本编号”细分项如何从项目模板转移到新项目?"><span class="mt-icon-article-none"></span>我的特定于项目的“成本编号”细分项如何从项目模板转移到新项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-notifications-work-for-the-conversations-tool-in-procore" title="Procore 中的对话工具的通知如何工作?"><span class="mt-icon-article-none"></span>Procore 中的对话工具的通知如何工作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-permissions-work-for-analytics" title="Analytics 2.0 的权限如何工作?"><span class="mt-icon-article-none"></span>Analytics 2.0 的权限如何工作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-permissions-work-for-free-procore-accounts" title="免费 Procore 账户的权限如何工作?"><span class="mt-icon-article-none"></span>免费 Procore 账户的权限如何工作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-permissions-work-for-the-conversations-tool" title="对话工具的权限如何工作?"><span class="mt-icon-article-none"></span>对话工具的权限如何工作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-permissions-work-in-the-document-management-tool" title="权限如何在文档管理工具中发挥作用?"><span class="mt-icon-article-none"></span>权限如何在文档管理工具中发挥作用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-the-change-event-tools-column-display-settings-work" title="变更事件工具的列显示设置如何工作?"><span class="mt-icon-article-none"></span>变更事件工具的列显示设置如何工作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-is-security-handled-with-third-party-applications" title="如何处理第三方应用程序的安全问题?"><span class="mt-icon-article-none"></span>如何处理第三方应用程序的安全问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-long-does-it-take-to-extract-data-from-procore" title="从 Procore 中提取数据需要多长时间?"><span class="mt-icon-article-none"></span>从 Procore 中提取数据需要多长时间?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-often-can-i-sync-data-between-procore-and-viewpoint-spectrum" title="我多久可以在 Procore 和 Viewpoint® Spectrum® 之间同步数据一次?"><span class="mt-icon-article-none"></span>我多久可以在 Procore 和 Viewpoint® Spectrum® 之间同步数据一次?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-often-can-i-sync-data-between-sage-100-contractor-and-procore" title="我可在 Sage 100 Contractor 和 Procore 之间以何种频率同步数据?"><span class="mt-icon-article-none"></span>我可在 Sage 100 Contractor 和 Procore 之间以何种频率同步数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-often-can-i-sync-data-between-sage-300-cre-and-procore" title="我可在 Sage 300 CRE 和 Procore 之间以何种频率同步数据?"><span class="mt-icon-article-none"></span>我可在 Sage 300 CRE 和 Procore 之间以何种频率同步数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-often-can-i-sync-data-using-the-integration-by-ryvit" title="我可以使用 Ryvit 集成以何种频率同步数据?"><span class="mt-icon-article-none"></span>我可以使用 Ryvit 集成以何种频率同步数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-to-i-select-which-viewpoint-spectrum-jobs-appear-in-the-select-a-job-template-list-of-the-erp-integrations-tool" title="我该选择哪些 Viewpoint® Spectrum® 作业出现在 ERP 集成工具的“选择作业模板”列表中?"><span class="mt-icon-article-none"></span>我该选择哪些 Viewpoint® Spectrum® 作业出现在 ERP 集成工具的“选择作业模板”列表中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-to-resolve-commitment-with-code-already-exists-sage-300" title="导出到 ERP 时如何解决“合约编号已存在”错误"><span class="mt-icon-article-none"></span>导出到 ERP 时如何解决“合约编号已存在”错误</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-to-resolve-export-cannot-be-completed-because-the-number-of-line-items-does-not-match-up-quickbooks" title="如何解决导出到ERP时的"无法完成此导出,因为QuickBooks中的明细项数量与 Procore 中的数量不匹配"错误?"><span class="mt-icon-article-none"></span>如何解决导出到ERP时的"无法完成此导出,因为QuickBooks中的明细项数量与 Procore 中的数量不匹配"错误?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-to-resolve-import-operation-took-longer-than-the-set-timeout-sage" title="导出到 ERP 时如何解决“导入操作花费的时间超过设置的超时时间”错误?"><span class="mt-icon-article-none"></span>导出到 ERP 时如何解决“导入操作花费的时间超过设置的超时时间”错误?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-to-resolve-there-was-an-error-adding-modifying-deleting-because-it-is-already-in-use-quickbooks" title="在导出到 ERP 时,如何解决“添加、修改或删除 XXXXXX-XXXXXXXXXXX 时出错,因为已在使用中。”错误"><span class="mt-icon-article-none"></span>在导出到 ERP 时,如何解决“添加、修改或删除 XXXXXX-XXXXXXXXXXX 时出错,因为已在使用中。”错误</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-will-configured-fieldsets-affect-my-existing-projects" title="配置的字段集将如何影响现有项目?"><span class="mt-icon-article-none"></span>配置的字段集将如何影响现有项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-will-i-know-when-my-invoice-or-change-order-is-approved-or-rejected-in-portfolio-financials" title="我如何知道我的发票或变更通知单何时在综合财务管理中被批准或拒绝?"><span class="mt-icon-article-none"></span>我如何知道我的发票或变更通知单何时在综合财务管理中被批准或拒绝?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-will-my-previous-timecard-entries-work-with-timesheets" title="如何在考勤表中使用以前的考勤卡条目?"><span class="mt-icon-article-none"></span>如何在考勤表中使用以前的考勤卡条目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/if-a-user-does-not-have-permission-to-view-a-specific-correspondence-type-can-they-see-that-correspondence-type-in-their-project-overview-dashboard" title="如果用户没有查看特定通信类型的权限,他们能否在其“项目概况”仪表板中查看该通信类型?"><span class="mt-icon-article-none"></span>如果用户没有查看特定通信类型的权限,他们能否在其“项目概况”仪表板中查看该通信类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/inspection-requirements-general-faq" title="检查任务要求:一般常见问题"><span class="mt-icon-article-reference"></span>检查任务要求:一般常见问题</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/is-there-a-minimum-passing-score-for-procore-certification-quizzes" title="Procore 认证测验是否有最低及格分数?"><span class="mt-icon-article-none"></span>Procore 认证测验是否有最低及格分数?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/is-there-a-way-to-bulk-replace-an-approver-submitter-or-reviewer-on-a-projects-submittals" title="是否可以批量替换项目送审中的审批者、送审者或审核人?"><span class="mt-icon-article-none"></span>是否可以批量替换项目送审中的审批者、送审者或审核人?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/is-there-a-way-to-see-all-the-open-items-in-procore-assigned-to-me" title="是否有办法查看 Procore 中分配给我的所有未完成项?"><span class="mt-icon-article-none"></span>是否有办法查看 Procore 中分配给我的所有未完成项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/i-thought-i-added-a-user-but-now-i-cant-find-that-person-what-happened" title="我以为自己添加了一个用户,但现在找不到那个人。发生了什么?"><span class="mt-icon-article-none"></span>我以为自己添加了一个用户,但现在找不到那个人。发生了什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/plug-icon-missing-marketplace-nav-how-to" title="“插头”图标已移除,我如何导航到应用商店?"><span class="mt-icon-article-none"></span>“插头”图标已移除,我如何导航到应用商店?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/should-i-enable-the-specifications-tool-on-my-project" title="我应该在项目中启用规范工具吗?"><span class="mt-icon-article-none"></span>我应该在项目中启用规范工具吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/should-i-integrate-my-microsoft-project-schedule-in-procores-web-application-or-procore-drive" title="是否应该将 Microsoft Project 进度计划集成到 Procore Web 应用程序或 Procore Drive?"><span class="mt-icon-article-none"></span>是否应该将 Microsoft Project 进度计划集成到 Procore Web 应用程序或 Procore Drive?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/should-i-update-my-budget-view-to-add-rfq-values-to-the-budget" title="是否应该更新预算视图以将 RFQ 值添加到预算中?"><span class="mt-icon-article-none"></span>是否应该更新预算视图以将 RFQ 值添加到预算中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/trouble-logging-in-to-procore/forgot-password" title="忘记密码"><span class="mt-icon-article-topic"></span>忘记密码</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/trouble-logging-in-to-procore/tried-to-log-in-but-received-an-error-message" title="尝试登录,但收到错误消息"><span class="mt-icon-article-none"></span>尝试登录,但收到错误消息</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-activity-metrics-can-i-see-for-companies-listed-on-the-procore-construction-network" title="在 Procore 建设工程网络上列出的公司,我可以查看哪些活动指标?"><span class="mt-icon-article-none"></span>在 Procore 建设工程网络上列出的公司,我可以查看哪些活动指标?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-additional-user-permissions-are-required-to-access-reportable-data-with-360-reporting" title="使用 360 度报告访问可报告数据需要哪些额外的用户权限?"><span class="mt-icon-article-none"></span>使用 360 度报告访问可报告数据需要哪些额外的用户权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-app-configurations" title="什么是应用程序配置,如何使用?"><span class="mt-icon-article-none"></span>什么是应用程序配置,如何使用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-approvals-in-portfolio-financials" title="什么是综合财务管理审批?"><span class="mt-icon-article-none"></span>什么是综合财务管理审批?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-available-regions-on-apps" title="应用商店应用程序上的“可用区域”是什么?"><span class="mt-icon-article-none"></span>应用商店应用程序上的“可用区域”是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-best-practices-for-using-multiple-phased-budget-uploads" title="使用多个(分阶段)预算上传的最佳做法是什么?"><span class="mt-icon-article-none"></span>使用多个(分阶段)预算上传的最佳做法是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-configurable-fieldsets-and-which-procore-tools-support-them" title="什么是可配置字段集以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是可配置字段集以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-cost-allocations-and-components-in-portfolio-financials" title="什么是综合财务管理中的成本分配和组件?"><span class="mt-icon-article-none"></span>什么是综合财务管理中的成本分配和组件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-cost-types-and-how-does-our-erp-integration-support-them" title="有哪些“成本类型”以及我们的 ERP 集成如何支持这些成本类型?"><span class="mt-icon-article-none"></span>有哪些“成本类型”以及我们的 ERP 集成如何支持这些成本类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-fields-and-which-procore-tools-support-them" title="什么是自定义字段以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是自定义字段以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-project-roles" title="什么是自定义项目角色?"><span class="mt-icon-article-none"></span>什么是自定义项目角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-sections-and-which-procore-tools-support-them" title="什么是自定义部分以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是自定义部分以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-drawing-areas" title="什么是图纸区域?"><span class="mt-icon-article-none"></span>什么是图纸区域?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-dynamic-approver-due-dates" title="什么是动态计算审批者截止日期?"><span class="mt-icon-article-none"></span>什么是动态计算审批者截止日期?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-meeting-minutes" title="什么是会议纪要?"><span class="mt-icon-article-none"></span>什么是会议纪要?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-milestone-dependencies-in-portfolio-financials-and-how-do-i-set-them" title="综合财务管理中的里程碑依赖项是什么?如何进行设置?"><span class="mt-icon-article-none"></span>综合财务管理中的里程碑依赖项是什么?如何进行设置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-multi-tiered-locations" title="什么是多层地点?"><span class="mt-icon-article-none"></span>什么是多层地点?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-permissions-in-procore-and-how-do-they-work" title="什么是 Procore 中的权限以及它们如何工作?"><span class="mt-icon-article-none"></span>什么是 Procore 中的权限以及它们如何工作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-change-types-and-change-reasons" title="Procore 的默认变更类型和变更原因是什么?"><span class="mt-icon-article-none"></span>Procore 的默认变更类型和变更原因是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore 默认成本编号有哪些?"><span class="mt-icon-article-none"></span>Procore 默认成本编号有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-types" title="Procore 有哪些默认成本类型?"><span class="mt-icon-article-none"></span>Procore 有哪些默认成本类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-product-categories" title="Procore 的产品类别有哪些?"><span class="mt-icon-article-none"></span>Procore 的产品类别有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-standard-budget-views" title="什么是 Procore 的标准预算视图?"><span class="mt-icon-article-none"></span>什么是 Procore 的标准预算视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-production-quantities" title="什么是“生产数量”?"><span class="mt-icon-article-none"></span>什么是“生产数量”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="什么是 Procore 中的“相关项”?"><span class="mt-icon-article-none"></span>什么是 Procore 中的“相关项”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-role-based-permissions" title="什么是基于角色的权限?"><span class="mt-icon-article-none"></span>什么是基于角色的权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-segments-and-segment-items" title="什么是细分和细分项?"><span class="mt-icon-article-none"></span>什么是细分和细分项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-some-best-practices-for-reporting-in-portfolio-financials-and-capital-planning" title="综合财务管理务和资金规划报告的一些最佳实践是什么?"><span class="mt-icon-article-none"></span>综合财务管理务和资金规划报告的一些最佳实践是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-some-examples-of-reports-i-can-generate-in-portfolio-financials-and-capital-planning" title="可以在综合财务管理和资金规划中生成哪些报告示例?"><span class="mt-icon-article-none"></span>可以在综合财务管理和资金规划中生成哪些报告示例?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-specifications" title="什么是规范?"><span class="mt-icon-article-none"></span>什么是规范?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-super-private-correspondence-types" title="什么是超级私密通信类型?"><span class="mt-icon-article-none"></span>什么是超级私密通信类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-blue-icons-in-my-drawings-log" title="我的图纸日志中的蓝色图标是什么?"><span class="mt-icon-article-none"></span>我的图纸日志中的蓝色图标是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-budget-warning-banner-changes" title="预算警告横幅有哪些变化?"><span class="mt-icon-article-none"></span>预算警告横幅有哪些变化?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-column-header-updates-in-the-import-templates" title="导入模板中的列标题更新是什么?"><span class="mt-icon-article-none"></span>导入模板中的列标题更新是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-data-points-available-for-custom-reports-in-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划中的自定义报告可使用哪些数据点?"><span class="mt-icon-article-none"></span>综合财务管理和资金规划中的自定义报告可使用哪些数据点?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-data-points-for-capital-plans-in-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划中资金规划的数据点是什么?"><span class="mt-icon-article-none"></span>综合财务管理和资金规划中资金规划的数据点是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-action-plan-verification-methods" title="什么是默认行动计划验证方法?"><span class="mt-icon-article-none"></span>什么是默认行动计划验证方法?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-columns-in-the-contracts-tab-of-the-commitments-tool" title="合约工具的合同标签页中的默认列有哪些?"><span class="mt-icon-article-none"></span>合约工具的合同标签页中的默认列有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-columns-in-the-prime-contracts-tool" title="主合同工具中的默认列是什么列?"><span class="mt-icon-article-none"></span>主合同工具中的默认列是什么列?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-commitment-statuses-in-procore" title="Procore 中的默认合约状态有哪些?"><span class="mt-icon-article-none"></span>Procore 中的默认合约状态有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-addendum-template-correspondence-type" title="Procore 的“附录”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“附录”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-bulletin-template-correspondence-type" title="Procore 的“公告”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“公告”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-change-request-template-correspondence-type" title="Procore 的“变更请求”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“变更请求”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-client-instruction-template-correspondence-type" title="Procore 的“客户指示”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“客户指示”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-constraints-template-correspondence-type" title="Procore 的“约束”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“约束”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-early-warning-notice-template-correspondence-type" title="Procore 的“提早警告通知”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“提早警告通知”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-extension-of-time-template-correspondence-type" title="Procore 的“延期申请”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“延期申请”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-general-correspondence-template-correspondence-type" title="Procore 的“一般通信”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“一般通信”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-lessons-learned-template-correspondence-type" title="Procore 的“经验教训”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“经验教训”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-letters-of-intent-template-correspondence-type" title="Procore 的“意向书”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“意向书”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-letters-template-correspondence-type" title="Procore 的“信函”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“信函”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-material-request-template-correspondence-type" title="Procore 的“材料请求”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“材料请求”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-mitigation-plan-template-correspondence-type" title="Procore 的“缓解计划”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“缓解计划”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-notice-of-delay-template-correspondence-type" title="Procore 的“延迟通知”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“延迟通知”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-notice-to-proceed-template-correspondence-type" title="Procore 的“开工通知”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“开工通知”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-notification-of-backcharge-template-correspondence-type" title="Procore 的“扣款通知”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“扣款通知”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-permit-request-template-correspondence-type" title="Procore 的“许可请求”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“许可请求”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-project-request-template-correspondence-type" title="Procore 的“项目请求”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“项目请求”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-risk-identification-template-correspondence-type" title="Procore 的“风险识别”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“风险识别”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-site-instruction-template-correspondence-type" title="Procore 的“现场指示”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“现场指示”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-template-correspondence-types" title="Procore 模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-transmittal-template-correspondence-type" title="Procore 的“传输记录”模板通信 类型的默认字段集配置是什么?"><span class="mt-icon-article-none"></span>Procore 的“传输记录”模板通信 类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-observation-types-used-for" title="默认观察任务类型有何用途?"><span class="mt-icon-article-none"></span>默认观察任务类型有何用途?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-permission-levels-in-procore" title="Procore 中的默认权限级别有哪些?"><span class="mt-icon-article-none"></span>Procore 中的默认权限级别有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-project-permissions-templates-in-procore" title="什么是 Procore 中的默认项目权限模板?"><span class="mt-icon-article-none"></span>什么是 Procore 中的默认项目权限模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-project-stages-in-procore" title="Procore 中的默认项目阶段是什么?"><span class="mt-icon-article-none"></span>Procore 中的默认项目阶段是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-scope-options-for-change-events-in-procore" title="Procore 中变更事件的默认“范围”选项有哪些?"><span class="mt-icon-article-none"></span>Procore 中变更事件的默认“范围”选项有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-statuses-for-change-events-in-procore" title="Procore 中变更事件的默认状态有哪些?"><span class="mt-icon-article-none"></span>Procore 中变更事件的默认状态有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-statuses-for-change-orders-in-procore" title="Procore 中变更通知单的默认状态是什么?"><span class="mt-icon-article-none"></span>Procore 中变更通知单的默认状态是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-statuses-for-insurance-in-procore" title="在 Procore 中,保险的默认状态有哪些?"><span class="mt-icon-article-none"></span>在 Procore 中,保险的默认状态有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-statuses-for-procore-invoices" title="Procore 发票的默认状态有哪些?"><span class="mt-icon-article-none"></span>Procore 发票的默认状态有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-statuses-for-tm-tickets" title="工时和材料单的默认状态是什么?"><span class="mt-icon-article-none"></span>工时和材料单的默认状态是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-submittal-responses-in-procore" title="Procore 中的默认送审答复有哪些?"><span class="mt-icon-article-none"></span>Procore 中的默认送审答复有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-submittal-statuses-in-procore" title="Procore 中的默认送审状态有哪些?"><span class="mt-icon-article-none"></span>Procore 中的默认送审状态有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-differences-between-legacy-and-self-serve-workflows" title="旧版工作流和自助式工作流之间有什么区别?"><span class="mt-icon-article-none"></span>旧版工作流和自助式工作流之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-differences-between-procores-time-modules" title="Procore 的工时模块之间有什么区别?"><span class="mt-icon-article-none"></span>Procore 的工时模块之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-change-order-tier-settings-in-project-financials" title="项目财务中有哪些不同的变更通知单层设置?"><span class="mt-icon-article-none"></span>项目财务中有哪些不同的变更通知单层设置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-fields-in-the-document-management-tool" title="文档管理工具中有哪些不同的字段?"><span class="mt-icon-article-none"></span>文档管理工具中有哪些不同的字段?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-permission-levels-for-team-members-in-portfolio-financials" title="综合财务管理中团队成员有哪些不同的权限级别?"><span class="mt-icon-article-none"></span>综合财务管理中团队成员有哪些不同的权限级别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-rfq-statuses" title="有哪些不同的 RFQ 状态以及它们如何影响成本和变更通知单金额?"><span class="mt-icon-article-none"></span>有哪些不同的 RFQ 状态以及它们如何影响成本和变更通知单金额?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-roles-associated-with-workflows" title="与工作流关联有哪些不同的角色?"><span class="mt-icon-article-none"></span>与工作流关联有哪些不同的角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-types-of-invoices-in-procore" title="Procore 中有哪些不同类型的发票?"><span class="mt-icon-article-none"></span>Procore 中有哪些不同类型的发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-types-of-steps-in-a-workflow" title="工作流中有哪些不同类型的步骤?"><span class="mt-icon-article-none"></span>工作流中有哪些不同类型的步骤?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-user-roles-in-procore-estimating" title="Procore Estimating 中有哪些不同的“用户角色”?"><span class="mt-icon-article-none"></span>Procore Estimating 中有哪些不同的“用户角色”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-docusign-fields-and-can-i-customize-them" title="什么是 DocuSign® 字段,我可以自定义它们吗?"><span class="mt-icon-article-none"></span>什么是 DocuSign® 字段,我可以自定义它们吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-financial-line-items-in-360-reporting" title="360 度报告中有哪些财务明细项?"><span class="mt-icon-article-none"></span>360 度报告中有哪些财务明细项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-requirements-for-importing-sov-line-items-from-csv" title="从 CSV 导入 SOV 行项目有哪些要求?"><span class="mt-icon-article-none"></span>从 CSV 导入 SOV 行项目有哪些要求?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-threshold-values-for-the-portfolio-tools-health-dashboard" title="什么是项目集合工具的健康仪表板的阈值?"><span class="mt-icon-article-none"></span>什么是项目集合工具的健康仪表板的阈值?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-timesheets-tools-default-statuses-for-time-entries" title="考勤表工具时间条目的默认状态是什么?"><span class="mt-icon-article-none"></span>考勤表工具时间条目的默认状态是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-user-roles-in-the-submittals-tool" title="送审工具中的用户角色是什么?"><span class="mt-icon-article-none"></span>送审工具中的用户角色是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-touch-commands" title="什么是触控指令?"><span class="mt-icon-article-none"></span>什么是触控指令?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-uncategorized-invoices-in-portfolio-financials" title="什么是综合财务管理中的未分类发票?"><span class="mt-icon-article-none"></span>什么是综合财务管理中的未分类发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-changes-when-companies-upgrade-to-paid-accounts" title="公司升级到付费账户会发生什么变化?"><span class="mt-icon-article-none"></span>公司升级到付费账户会发生什么变化?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-custom-segments-should-we-create-for-our-companys-work-breakdown-structure" title="我们应该为公司的工作分解结构创建哪些自定义细分?"><span class="mt-icon-article-none"></span>我们应该为公司的工作分解结构创建哪些自定义细分?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-data-can-procore-automatically-populate-when-uploading-files-to-the-document-management-tool" title="将文件上传到文档管理工具时,Procore 可以自动填充什么数据?"><span class="mt-icon-article-none"></span>将文件上传到文档管理工具时,Procore 可以自动填充什么数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-data-is-synced-between-procore-and-sage-100-contractor" title="Procore 和 Sage 100 Contractor 之间同步哪些数据?"><span class="mt-icon-article-none"></span>Procore 和 Sage 100 Contractor 之间同步哪些数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-data-is-synced-between-sage-300-cre-and-procore" title="Sage 300 CRE® 和 Procore 之间同步了哪些数据?"><span class="mt-icon-article-none"></span>Sage 300 CRE® 和 Procore 之间同步了哪些数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-data-is-synced-with-the-integration-by-ryvit-connector" title="哪些数据与 Ryvit 集成连接器同步?"><span class="mt-icon-article-none"></span>哪些数据与 Ryvit 集成连接器同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-bidders-see-when-they-are-in-the-bid-room" title="投标人在投标室看到什么?"><span class="mt-icon-article-none"></span>投标人在投标室看到什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-does-each-column-in-the-submittals-log-represent" title="“送审日志”中的每一列代表什么?"><span class="mt-icon-article-none"></span>“送审日志”中的每一列代表什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-does-each-permission-level-mean" title="每个权限级别的含义是什么?"><span class="mt-icon-article-none"></span>每个权限级别的含义是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-does-hide-bidding-info-mean-for-someone-on-the-bid-room-team" title="“隐藏投标信息”对投标室团队中的某人意味着什么?"><span class="mt-icon-article-none"></span>“隐藏投标信息”对投标室团队中的某人意味着什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-does-it-mean-when-my-docusign-account-is-synced-with-procore" title="当我的 DocuSign 账户与我的 Procore 账户“同步”时,这意味着什么?我该如何同步?"><span class="mt-icon-article-none"></span>当我的 DocuSign 账户与我的 Procore 账户“同步”时,这意味着什么?我该如何同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-does-the-search-box-search-for" title="照片工具中的“搜索”框会搜索什么?"><span class="mt-icon-article-none"></span>照片工具中的“搜索”框会搜索什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-i-do-when-a-commimtment-fails-to-export-from-the-erp-integrations-tool" title="当合约未能从 ERP 集成工具中导出时,我该怎么办?"><span class="mt-icon-article-none"></span>当合约未能从 ERP 集成工具中导出时,我该怎么办?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-i-need-to-know-about-the-analytics-deprecation" title="关于 Procore Analytics 1.0 的弃用,我需要了解什么?"><span class="mt-icon-article-none"></span>关于 Procore Analytics 1.0 的弃用,我需要了解什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-i-need-to-know-about-workforce-plannings-authentication-update" title="关于资源规划的身份验证更新,我需要了解什么?"><span class="mt-icon-article-none"></span>关于资源规划的身份验证更新,我需要了解什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-arrows-mean-on-the-project-comparison-tab-of-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划的“项目比较”标签页中的箭头是什么意思?"><span class="mt-icon-article-none"></span>综合财务管理和资金规划的“项目比较”标签页中的箭头是什么意思?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-dates-in-the-projects-admin-tool-mean" title="项目管理员工具中的日期是什么意思?"><span class="mt-icon-article-none"></span>项目管理员工具中的日期是什么意思?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-different-docusign-banners-in-procore-mean" title="Procore 中不同的 DocuSign® 横幅是什么意思?"><span class="mt-icon-article-none"></span>Procore 中不同的 DocuSign® 横幅是什么意思?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-different-statuses-mean-on-procores-feedback-forum" title="Procore 反馈论坛上的不同状态意味着什么?"><span class="mt-icon-article-none"></span>Procore 反馈论坛上的不同状态意味着什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-erp-icons-mean" title="ERP 图标的含义是什么?"><span class="mt-icon-article-none"></span>ERP 图标的含义是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-punch-item-color-codes-on-a-drawing-mean" title="图纸上的尾项项目颜色代码有什么含义?"><span class="mt-icon-article-none"></span>图纸上的尾项项目颜色代码有什么含义?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-we-need-to-consider-before-allowing-downstream-collaborators-to-submit-invoices-in-procore" title="在允许下游协作者在 Procore 中提交发票之前,我们需要考虑什么?"><span class="mt-icon-article-none"></span>在允许下游协作者在 Procore 中提交发票之前,我们需要考虑什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-email-notifications-are-sent-for-approval-workflows-in-portfolio-financials" title="综合财务管理中的审批工作流会发送哪些电子邮件通知?"><span class="mt-icon-article-none"></span>综合财务管理中的审批工作流会发送哪些电子邮件通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-emails-are-sent-during-the-bidding-process-in-portfolio-financials" title="在综合财务管理的投标过程中会发送哪些电子邮件?"><span class="mt-icon-article-none"></span>在综合财务管理的投标过程中会发送哪些电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-encryption-standard-does-procore-use-to-protect-user-data" title="Procore 使用什么加密标准来保护用户数据?"><span class="mt-icon-article-none"></span>Procore 使用什么加密标准来保护用户数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-fields-are-in-an-estimate-and-how-are-they-calculated" title="估算中有哪些字段以及它们是如何计算的?"><span class="mt-icon-article-none"></span>估算中有哪些字段以及它们是如何计算的?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-fields-are-searched-in-the-directory-tool" title="在目录工具中可搜索到哪些字段?"><span class="mt-icon-article-none"></span>在目录工具中可搜索到哪些字段?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-fieldset-configurations-are-recommended-for-configurable-fieldsets" title="对于可配置字段集推荐使用哪些配置?"><span class="mt-icon-article-none"></span>对于可配置字段集推荐使用哪些配置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-field-types-are-available-for-custom-fields-in-procore-tools" title="Procore 工具中的自定义字段有哪些字段类型可用?"><span class="mt-icon-article-none"></span>Procore 工具中的自定义字段有哪些字段类型可用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-file-types-and-formats-are-supported-in-the-attachment-viewer" title="统一附件查看器支持哪些文件类型和格式?"><span class="mt-icon-article-none"></span>统一附件查看器支持哪些文件类型和格式?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-file-types-are-supported-for-the-3d-model-viewer-in-the-documents-tool" title="文档工具中的 3D 模型查看器支持哪些文件类型?"><span class="mt-icon-article-none"></span>文档工具中的 3D 模型查看器支持哪些文件类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-file-types-does-the-forms-tool-support" title="表单工具支持哪些文件类型?"><span class="mt-icon-article-none"></span>表单工具支持哪些文件类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-gets-copied-over-to-a-new-project-when-applying-a-project-template" title="将哪些内容从项目模板复制到新项目?"><span class="mt-icon-article-none"></span>将哪些内容从项目模板复制到新项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-commitments-workflows" title="合约工作流有哪些细分权限?"><span class="mt-icon-article-none"></span>合约工作流有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-document-management-workflows" title="文档管理工作流有哪些细分权限?"><span class="mt-icon-article-none"></span>文档管理工作流有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-company-level-directory-tool" title="公司级别目录工具有哪些细分权限?"><span class="mt-icon-article-none"></span>公司级别目录工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-companys-bid-board-tool" title="公司投标板工具有哪些细分权限?"><span class="mt-icon-article-none"></span>公司投标板工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-companys-resource-planning-tool" title="公司的资源规划工具有哪些细分权限?"><span class="mt-icon-article-none"></span>公司的资源规划工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-project-level-admin-tool" title="项目级别管理员工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目级别管理员工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-project-level-directory-tool" title="项目级别目录工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目级别目录工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-project-level-documents-tool" title="项目级别文档工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目级别文档工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-project-level-inspections-tool" title="项目级别检查任务工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目级别检查任务工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-project-level-schedule-tool" title="项目级别进度计划工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目级别进度计划工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-project-level-timesheets-tool" title="项目级别考勤表工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目级别考勤表工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-action-plans-tool" title="项目的行动计划工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的行动计划工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-bidding-tool" title="项目的投标工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的投标工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-budget-tool" title="项目的预算工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的预算工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-change-orders-tool" title="项目的变更通知单工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的变更通知单工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-client-contracts-tool" title="项目的客户合同工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的客户合同工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-commitments-tool" title="项目的合约工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的合约工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-correspondence-tool" title="项目的通信工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的通信工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-daily-log-tool" title="项目的工作日志工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的工作日志工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-direct-costs-tool" title="项目的直接成本工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的直接成本工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-drawings-tool" title="项目的图纸工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的图纸工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-funding-tool" title="项目的资金工具有哪细分权限?"><span class="mt-icon-article-none"></span>项目的资金工具有哪细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-meetings-tool" title="项目的会议工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的会议工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-observations-tool" title="项目的观察任务工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的观察任务工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-photos-tool" title="项目的照片工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的照片工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-prime-contracts-tool" title="项目的主合同工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的主合同工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-punch-list-tool" title="项目的尾项清单工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的尾项清单工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-rfis-tool" title="项目的 RFI 工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的 RFI 工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-submittals-tool" title="项目的送审工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的送审工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-transmittals-tool" title="项目的传输记录工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的传输记录工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-if-i-have-duplicate-company-records-in-procores-company-directory" title="如果 Procore 公司目录中存在重复公司记录会怎样?"><span class="mt-icon-article-none"></span>如果 Procore 公司目录中存在重复公司记录会怎样?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-to-existing-submittals-when-dynamic-approver-due-dates-is-enabled" title="启用“动态计算审批者截止日期”后,现有送审有什么变化?"><span class="mt-icon-article-none"></span>启用“动态计算审批者截止日期”后,现有送审有什么变化?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-when-companies-and-users-are-added-from-the-procore-construction-network-to-the-company-directory" title="从 Procore 建设工程网络中将公司和用户添加到公司目录时会发生什么?"><span class="mt-icon-article-none"></span>从 Procore 建设工程网络中将公司和用户添加到公司目录时会发生什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-when-i-import-a-document-management-file-into-the-drawings-tool" title="当我将文档管理文件导入图纸工具时会发生什么?"><span class="mt-icon-article-none"></span>当我将文档管理文件导入图纸工具时会发生什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-when-i-share-a-report-with-another-user" title="当我与其他 Procore 用户共享报告时会怎样?"><span class="mt-icon-article-none"></span>当我与其他 Procore 用户共享报告时会怎样?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-when-i-update-a-project-to-the-new-bid-management-experience" title="将项目更新到新版投标 管理体验时会发生什么?"><span class="mt-icon-article-none"></span>将项目更新到新版投标 管理体验时会发生什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-when-restrict-non-draft-edits-to-contracts-and-change-orders-and-enable-always-editable-schedule-of-values-are-both-enabled" title="当"限制对合同和变更通知单的非草稿编辑"和"启用始终可编辑的分项价格表"同时启用时会发生什么?"><span class="mt-icon-article-none"></span>当"限制对合同和变更通知单的非草稿编辑"和"启用始终可编辑的分项价格表"同时启用时会发生什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-if-my-spec-sections-or-divisions-start-in-the-middle-of-a-page" title="如果规范分项或分部从页面中间开始怎么办?"><span class="mt-icon-article-none"></span>如果规范分项或分部从页面中间开始怎么办?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-information-is-searchable-using-procore-search" title="可以使用 Procore Search 搜索到哪些信息?"><span class="mt-icon-article-none"></span>可以使用 Procore Search 搜索到哪些信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-budget-code-in-procores-wbs" title="Procore 的 WBS 中的预算编号是什么?"><span class="mt-icon-article-none"></span>Procore 的 WBS 中的预算编号是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-budget-code-structure-in-procores-wbs" title="Procore 的 WBS 中的预算编号结构是什么?"><span class="mt-icon-article-none"></span>Procore 的 WBS 中的预算编号结构是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-change-event" title="什么是变更事件?"><span class="mt-icon-article-none"></span>什么是变更事件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-change-order" title="什么是变更通知单?"><span class="mt-icon-article-none"></span>什么是变更通知单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-collection-in-the-document-management-tool" title="什么是文档管理工具中的集合?"><span class="mt-icon-article-none"></span>什么是文档管理工具中的集合?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-company-admin" title="什么是公司管理员?"><span class="mt-icon-article-none"></span>什么是公司管理员?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-completed-action-plan-receiver" title="什么是“已完成行动计划的接收者”?"><span class="mt-icon-article-none"></span>什么是“已完成行动计划的接收者”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-construction-projects-schedule" title="什么是建设工程项目的进度计划?"><span class="mt-icon-article-none"></span>什么是建设工程项目的进度计划?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-contact-in-procore-and-which-project-tools-support-the-concept" title="Procore 中的“联系人”是什么?哪些项目工具支持此概念?"><span class="mt-icon-article-none"></span>Procore 中的“联系人”是什么?哪些项目工具支持此概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-daily-log" title="什么是工作日志?"><span class="mt-icon-article-none"></span>什么是工作日志?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-downstream-collaborator" title="什么是下游协作者?"><span class="mt-icon-article-none"></span>什么是下游协作者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-draft-rfi" title="什么是 RFI“草稿”?"><span class="mt-icon-article-none"></span>什么是 RFI“草稿”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-draft-submittal" title="什么是送审“草稿”?"><span class="mt-icon-article-none"></span>什么是送审“草稿”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-drawing-set" title="什么是图纸集?"><span class="mt-icon-article-none"></span>什么是图纸集?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-fillable-pdf" title="什么是可填写 PDF?"><span class="mt-icon-article-none"></span>什么是可填写 PDF?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-action-plan-approver" title="什么是“行动计划审批者”?"><span class="mt-icon-article-none"></span>什么是“行动计划审批者”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-advanced-search-symbol-in-procore" title="Procore 中高级搜索符号是什么?"><span class="mt-icon-article-none"></span>Procore 中高级搜索符号是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-naming-standard-in-the-document-management-tool" title="什么是文档管理工具中的命名标准?"><span class="mt-icon-article-none"></span>什么是文档管理工具中的命名标准?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-assignable-permissions-template" title="什么是可分配权限模板?"><span class="mt-icon-article-none"></span>什么是可分配权限模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-assignment-alert-in-resource-planning" title="什么是资源规划中的分配警报?"><span class="mt-icon-article-none"></span>什么是资源规划中的分配警报?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-example-use-case-for-project-comaprison-in-portfolio-financials-and-capital-planning" title="什么是综合财务管理和资金规划中项目比较的示例用例?"><span class="mt-icon-article-none"></span>什么是综合财务管理和资金规划中项目比较的示例用例?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-incident" title="什么是事件?"><span class="mt-icon-article-none"></span>什么是事件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-invoice-administrator" title="什么是发票 管理员?"><span class="mt-icon-article-none"></span>什么是发票 管理员?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-invoice-contact" title="什么是发票联系人?"><span class="mt-icon-article-none"></span>什么是发票联系人?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-rfi" title="什么是 RFI?"><span class="mt-icon-article-none"></span>什么是 RFI?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-upstream-collaborator" title="什么是上游协作者?"><span class="mt-icon-article-none"></span>什么是上游协作者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-partial-budget-line-item" title="什么是部分预算明细项?"><span class="mt-icon-article-none"></span>什么是部分预算明细项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-permissions-template" title="什么是权限模板?"><span class="mt-icon-article-none"></span>什么是权限模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-plan-manager-in-an-action-plan" title="什么是行动计划中的“计划经理”?"><span class="mt-icon-article-none"></span>什么是行动计划中的“计划经理”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-app-management" title="什么是应用程序管理?"><span class="mt-icon-article-none"></span>什么是应用程序管理?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-private-timecard-and-which-timecards-can-be-set-to-private" title="什么是“私密”考勤卡以及哪些考勤卡可以设置为私密?"><span class="mt-icon-article-none"></span>什么是“私密”考勤卡以及哪些考勤卡可以设置为私密?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-project-administrator" title="什么是项目管理员?"><span class="mt-icon-article-none"></span>什么是项目管理员?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-project-template" title="什么是项目模板?"><span class="mt-icon-article-none"></span>什么是项目模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-punch-list" title="什么是尾项清单?"><span class="mt-icon-article-none"></span>什么是尾项清单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-resource-allocation-type" title="什么是资源分配类型?"><span class="mt-icon-article-none"></span>什么是资源分配类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-sensitive-field-in-resource-planning" title="什么是资源规划中的"敏感字段"?"><span class="mt-icon-article-none"></span>什么是资源规划中的"敏感字段"?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-service-account" title="什么是服务账户?"><span class="mt-icon-article-none"></span>什么是服务账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-site-instruction" title="什么是“指示”或“现场指示”?"><span class="mt-icon-article-none"></span>什么是“指示”或“现场指示”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-specification-set" title="什么是规范集?"><span class="mt-icon-article-none"></span>什么是规范集?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-asta-powerproject-and-how-does-it-integrate-with-procore" title="什么是 Asta Powerproject 以及它如何与 Procore 集成?"><span class="mt-icon-article-none"></span>什么是 Asta Powerproject 以及它如何与 Procore 集成?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-subcontractor-schedule-of-values" title="什么是分包商分项价格表?"><span class="mt-icon-article-none"></span>什么是分包商分项价格表?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-submittal" title="什么是送审?"><span class="mt-icon-article-none"></span>什么是送审?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-submittal-package" title="什么是送审汇总包?"><span class="mt-icon-article-none"></span>什么是送审汇总包?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-submittal-revision" title="什么是送审修订?"><span class="mt-icon-article-none"></span>什么是送审修订?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-test-project" title="什么是测试项目?"><span class="mt-icon-article-none"></span>什么是测试项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-tm-ticket" title="什么是工时和材料单?"><span class="mt-icon-article-none"></span>什么是工时和材料单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-training-center" title="什么是培训中心?"><span class="mt-icon-article-none"></span>什么是培训中心?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-transmittal-in-procore" title="什么是 Procore 中的传输记录?"><span class="mt-icon-article-none"></span>什么是 Procore 中的传输记录?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-blind-bidding" title="什么是投盲标?"><span class="mt-icon-article-none"></span>什么是投盲标?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-blocking-functionality-in-an-action-plan" title="什么是行动计划中的“锁定功能”?"><span class="mt-icon-article-none"></span>什么是行动计划中的“锁定功能”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-bluebeam-studio" title="什么是 Bluebeam Studio?"><span class="mt-icon-article-none"></span>什么是 Bluebeam Studio?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-capital-planning" title="什么是 Capital Planning 资金规划?"><span class="mt-icon-article-none"></span>什么是 Capital Planning 资金规划?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-conditional-logic-within-the-inspections-tool" title="什么是检查任务工具中的条件逻辑?"><span class="mt-icon-article-none"></span>什么是检查任务工具中的条件逻辑?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-data-syncing-for-resource-planning" title="什么是资源规划的数据同步?"><span class="mt-icon-article-none"></span>什么是资源规划的数据同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-developer-managed-service-account" title="什么是开发人员管理服务账户?"><span class="mt-icon-article-none"></span>什么是开发人员管理服务账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-in-the-emails-sent-from-procore" title="Procore 发送的电子邮件中有什么内容?"><span class="mt-icon-article-none"></span>Procore 发送的电子邮件中有什么内容?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-maintenance" title="什么是维护?"><span class="mt-icon-article-none"></span>什么是维护?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-phishing" title="什么是网络钓鱼?"><span class="mt-icon-article-none"></span>什么是网络钓鱼?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-portfolio-financials" title="什么是综合财务管理?"><span class="mt-icon-article-none"></span>什么是综合财务管理?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-primavera-p6-and-how-does-it-integrate-with-procore" title="什么是 Primavera P6 及其如何与 Procore 集成?"><span class="mt-icon-article-none"></span>什么是 Primavera P6 及其如何与 Procore 集成?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procore-bim" title="什么是 Procore BIM?"><span class="mt-icon-article-none"></span>什么是 Procore BIM?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procore-community" title="什么是 Procore 社区?"><span class="mt-icon-article-none"></span>什么是 Procore 社区?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-availability" title="什么是 Procore 的可用性?"><span class="mt-icon-article-none"></span>什么是 Procore 的可用性?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-data-backup-strategy" title="Procore 的数据备份策略是什么?"><span class="mt-icon-article-none"></span>Procore 的数据备份策略是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="什么是 Procore 回收站?"><span class="mt-icon-article-none"></span>什么是 Procore 回收站?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-unavailibility" title="什么是 Procore 的不可用性?"><span class="mt-icon-article-none"></span>什么是 Procore 的不可用性?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-project-cost-reporting-in-portfolio-financials" title="什么是综合财务管理中的项目成本报告?"><span class="mt-icon-article-none"></span>什么是综合财务管理中的项目成本报告?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-single-sign-on-sso" title="什么是单点登录 (SSO)?"><span class="mt-icon-article-none"></span>什么是单点登录 (SSO)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-sliding-scale-retention" title="什么是浮动保留金?"><span class="mt-icon-article-none"></span>什么是浮动保留金?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="什么是会计审批者角色?"><span class="mt-icon-article-none"></span>什么是会计审批者角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-adjustments-section-on-a-bid-form-in-the-bid-room" title="投标室投标表单上的“调整”部分包括哪些内容?"><span class="mt-icon-article-none"></span>投标室投标表单上的“调整”部分包括哪些内容?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-bid-room-in-portfolio-financials" title="综合财务管理中的投标室是什么?"><span class="mt-icon-article-none"></span>综合财务管理中的投标室是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-budget-rom-column-in-procores-budget-tool" title="Procore 预算工具中的“预算 ROM”列是什么?"><span class="mt-icon-article-none"></span>Procore 预算工具中的“预算 ROM”列是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-code-field-on-the-project-creation-page" title="项目创建页面上的“Code”字段是什么?"><span class="mt-icon-article-none"></span>项目创建页面上的“Code”字段是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-construction-bidding-process" title="什么是建设工程投标流程?"><span class="mt-icon-article-none"></span>什么是建设工程投标流程?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-contract-room-in-portfolio-financials" title="什么是综合财务管理中的合同室?"><span class="mt-icon-article-none"></span>什么是综合财务管理中的合同室?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-correspondence-tool" title="什么是通信工具?"><span class="mt-icon-article-none"></span>什么是通信工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-date-notified-field-in-my-punch-list" title="我的尾项清单中的“通知日期”字段是什么?"><span class="mt-icon-article-none"></span>我的尾项清单中的“通知日期”字段是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-default-behavior-for-playing-certificiation-videos-on-certain-browsers" title="在某些浏览器上播放认证视频的默认行为是什么?"><span class="mt-icon-article-none"></span>在某些浏览器上播放认证视频的默认行为是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-betweeen-baseline-and-forecast-or-actual-dates-for-milestones-in-portfolio-financials" title="综合财务管理中里程碑的“基准”和“预测或实际”日期之间有何区别?"><span class="mt-icon-article-none"></span>综合财务管理中里程碑的“基准”和“预测或实际”日期之间有何区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-budget-code-and-a-task-code" title="预算编号和任务编号有什么区别?"><span class="mt-icon-article-none"></span>预算编号和任务编号有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-catalog-category-and-item-in-the-cost-catalog-for-estimating" title="用于估算的成本目录中的目录、类别和项之间有什么区别?"><span class="mt-icon-article-none"></span>用于估算的成本目录中的目录、类别和项之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-accepting-a-procore-invitation-and-creating-a-free-procore-account" title="接受 Procore 邀请和创建免费 Procore 公司账户之间有什么区别?"><span class="mt-icon-article-none"></span>接受 Procore 邀请和创建免费 Procore 公司账户之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-claimed-and-unclaimed-business-on-the-procore-construction-network" title="Procore 建设工程网络上已认领和未认领的企业有什么区别?"><span class="mt-icon-article-none"></span>Procore 建设工程网络上已认领和未认领的企业有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-default-and-custom-segment-in-procores-wbs" title="Procore 的工作分解结构中的默认细分和自定义细分之间有什么区别?"><span class="mt-icon-article-none"></span>Procore 的工作分解结构中的默认细分和自定义细分之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-distribution-group-and-a-distribution-list" title="Procore 中的通讯组和通讯名单有什么区别?"><span class="mt-icon-article-none"></span>Procore 中的通讯组和通讯名单有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-flat-and-tiered-segment-in-procores-wbs" title="Procore 的工作分解结构中的平面细分和分层细分之间有什么区别?"><span class="mt-icon-article-none"></span>Procore 的工作分解结构中的平面细分和分层细分之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-labor-productivity-budget-view-and-field-production-report" title="人工生产力预算视图和现场生产报告有什么区别?"><span class="mt-icon-article-none"></span>人工生产力预算视图和现场生产报告有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-submitter-and-approver-in-submittals" title="送审中的送审者和审批者有什么区别?"><span class="mt-icon-article-none"></span>送审中的送审者和审批者有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-copy-and-duplicate-with-drawing-markups%3F" title="使用图纸标记进行复制和复制有什么区别?"><span class="mt-icon-article-none"></span>使用图纸标记进行复制和复制有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-custom-fields-and-configurable-fieldsets" title="自定义字段和可配置字段集之间有什么区别?"><span class="mt-icon-article-none"></span>自定义字段和可配置字段集之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-document-management-attachments-and-attachments-from-other-tools" title="文档管理附件和来自其他工具的附件有什么区别?"><span class="mt-icon-article-none"></span>文档管理附件和来自其他工具的附件有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-horizontal-and-vertical-markup" title="水平分项利润加成和垂直汇总利润加成有什么区别?"><span class="mt-icon-article-none"></span>水平分项利润加成和垂直汇总利润加成有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-personal-and-published-drawing-markups" title="个人图纸标记与已发布图纸标记之间有什么区别?"><span class="mt-icon-article-none"></span>个人图纸标记与已发布图纸标记之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-raster-and-vector-content-in-pdfs" title="PDF 中的栅格和矢量内容有何区别?"><span class="mt-icon-article-none"></span>PDF 中的栅格和矢量内容有何区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-resource-tracking-and-resource-management" title=""资源跟踪"和"资源管理"有什么区别?"><span class="mt-icon-article-none"></span>"资源跟踪"和"资源管理"有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-sp-and-idp-initiated-sso" title="SP 发起的单点登录和 IdP 发起的单点登录之间有何区别?"><span class="mt-icon-article-none"></span>SP 发起的单点登录和 IdP 发起的单点登录之间有何区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-the-documents-and-document-management-tools-in-procore" title="Procore 中的“文档”和“文档管理”工具之间有什么区别?"><span class="mt-icon-article-none"></span>Procore 中的“文档”和“文档管理”工具之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-the-embedded-app-and-power-bi-procore-analytics" title="在嵌入式应用程序和 Power BI 服务中查看Procore Analytics报告有什么区别?"><span class="mt-icon-article-none"></span>在嵌入式应用程序和 Power BI 服务中查看Procore Analytics报告有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-the-old-and-new-bid-management-experience-in-the-bidding-tool" title="投标工具中旧版和新版投标管理体验之间有什么区别?"><span class="mt-icon-article-none"></span>投标工具中旧版和新版投标管理体验之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-enable-always-editable-schedule-of-values-setting" title="什么是“启用始终可编辑的分项价格表”设置?"><span class="mt-icon-article-none"></span>什么是“启用始终可编辑的分项价格表”设置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-file-rename-information-file-included-with-my-extracted-project-data" title="提取的项目数据中包含的“文件重命名信息 (File Rename Information)”文件是什么?"><span class="mt-icon-article-none"></span>提取的项目数据中包含的“文件重命名信息 (File Rename Information)”文件是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-laborchart-app" title="什么是资源规划/ LaborChart应用程序?"><span class="mt-icon-article-none"></span>什么是资源规划/ LaborChart应用程序?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-commitments-number" title="合约“编号 (#)”的最大字符长度是多少?"><span class="mt-icon-article-none"></span>合约“编号 (#)”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-commitment-title" title="合约“标题”的最大字符长度是多少?"><span class="mt-icon-article-none"></span>合约“标题”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-company-name-in-the-directory-tool" title="目录工具中“公司名称”的最大字符长度是多少?"><span class="mt-icon-article-none"></span>目录工具中“公司名称”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-monthly-sandbox-environment" title="什么是每月沙箱环境?"><span class="mt-icon-article-none"></span>什么是每月沙箱环境?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-my-tasks-page-in-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划中的“我的任务”页面是什么?"><span class="mt-icon-article-none"></span>综合财务管理和资金规划中的“我的任务”页面是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-procore-analytics-risk-report" title="什么是Procore Analytics风险报告?"><span class="mt-icon-article-none"></span>什么是Procore Analytics风险报告?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-procore-construction-network" title="什么是 Procore 建设工程网络?"><span class="mt-icon-article-none"></span>什么是 Procore 建设工程网络?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-procore-plugin-and-what-is-it-used-for" title="什么是 Procore插件,有何用途?"><span class="mt-icon-article-none"></span>什么是 Procore插件,有何用途?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-project-page-in-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划中的项目页面是什么?"><span class="mt-icon-article-none"></span>综合财务管理和资金规划中的项目页面是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-project-team-in-portfolio-financials-and-what-are-the-varying-permission-levels" title="综合财务管理中的项目团队是什么?有哪些不同的权限级别?"><span class="mt-icon-article-none"></span>综合财务管理中的项目团队是什么?有哪些不同的权限级别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-punch-list-work-flow" title="什么是尾项清单工作流?"><span class="mt-icon-article-none"></span>什么是尾项清单工作流?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-resource-bench-in-resource-planning" title="什么是资源规划中的"资源台"?"><span class="mt-icon-article-none"></span>什么是资源规划中的"资源台"?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-rfi-manager-role" title="什么是 RFI 经理角色?"><span class="mt-icon-article-none"></span>什么是 RFI 经理角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-schedules-folder-in-the-documents-tool-and-why-cant-i-delete-it" title="文档工具中的“进度计划”文件夹是什么?为什么不能删除?"><span class="mt-icon-article-none"></span>文档工具中的“进度计划”文件夹是什么?为什么不能删除?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-send-to-accounts-payable-feature-in-portfolio-financials" title="综合财务管理中的“发送到应付会计”功能是什么?"><span class="mt-icon-article-none"></span>综合财务管理中的“发送到应付会计”功能是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-submittal-manager-role" title="什么是“送审经理”角色?"><span class="mt-icon-article-none"></span>什么是“送审经理”角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-unpublished-status-on-drawings" title="什么是图纸的未发布状态?"><span class="mt-icon-article-none"></span>什么是图纸的未发布状态?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-workforce-planning-laborchart-web-application" title="什么是劳动力规划/ LaborChart Web 应用程序?"><span class="mt-icon-article-none"></span>什么是劳动力规划/ LaborChart Web 应用程序?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-work-breakdown-structure-wbs" title="什么是工作分解结构 (WBS)?"><span class="mt-icon-article-none"></span>什么是工作分解结构 (WBS)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-items-can-be-added-to-a-message-in-the-conversations-tool" title="可以在对话工具中将哪些项目添加到消息中?"><span class="mt-icon-article-none"></span>可以在对话工具中将哪些项目添加到消息中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-languages-are-available-in-procore" title="Procore 中有哪些语言可用?"><span class="mt-icon-article-none"></span>Procore 中有哪些语言可用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-languages-can-be-automatically-translated-in-the-conversations-tool" title="对话工具可以自动翻译哪些语言?"><span class="mt-icon-article-none"></span>对话工具可以自动翻译哪些语言?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-makes-a-company-appear-higher-in-search-results-for-the-procore-construction-network" title="是什么使公司在 Procore 建设工程网络的搜索结果中更高?"><span class="mt-icon-article-none"></span>是什么使公司在 Procore 建设工程网络的搜索结果中更高?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-messages-and-alerts-can-people-respond-to-in-resource-planning" title="人员可以在资源规划中答复哪些消息和警报?"><span class="mt-icon-article-none"></span>人员可以在资源规划中答复哪些消息和警报?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-options-do-i-have-for-numbering-rfis-in-procore" title="在 Procore 中为 RFI 编号有哪些选项?"><span class="mt-icon-article-none"></span>在 Procore 中为 RFI 编号有哪些选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-people-information-is-synced-between-resource-planning-and-the-procore-company-directory" title="资源规划和 Procore 公司目录之间同步了哪些人员信息?"><span class="mt-icon-article-none"></span>资源规划和 Procore 公司目录之间同步了哪些人员信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-permissions-do-bidders-need-in-order-to-be-invited-to-bid-and-submit-a-bid" title="投标人需要哪些权限才能受邀投标和提交投标?"><span class="mt-icon-article-none"></span>投标人需要哪些权限才能受邀投标和提交投标?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-project-information-is-synced-between-resource-planning-and-procore-projects" title="资源规划和 Procore 项目之间同步了哪些项目信息?"><span class="mt-icon-article-none"></span>资源规划和 Procore 项目之间同步了哪些项目信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-report-templates-are-available-in-the-360-reporting-tools" title="360 度报告工具中提供哪些报告模板?"><span class="mt-icon-article-none"></span>360 度报告工具中提供哪些报告模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-settings-are-available-for-project-tools-in-procore" title="Procore 中的项目工具有哪些设置可用?"><span class="mt-icon-article-none"></span>Procore 中的项目工具有哪些设置可用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-do-if-a-model-is-too-large-to-view-in-procores-web-application" title="如果模型太大而无法在 Procore 的 Web 应用程序中查看,我该怎么办?"><span class="mt-icon-article-none"></span>如果模型太大而无法在 Procore 的 Web 应用程序中查看,我该怎么办?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-do-if-i-forgot-my-password-for-portfolio-financials" title="如果我忘记了综合财务管理的密码,该怎么办?"><span class="mt-icon-article-none"></span>如果我忘记了综合财务管理的密码,该怎么办?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-do-if-my-model-file-is-too-large-to-process-in-the-documents-tool" title="如果我的模型文件太大而无法在文档工具中处理,我该怎么办?"><span class="mt-icon-article-none"></span>如果我的模型文件太大而无法在文档工具中处理,我该怎么办?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-know-about-approval-workflows-in-portfolio-financials" title="关于综合财务管理中的审批工作流,我应该了解什么?"><span class="mt-icon-article-none"></span>关于综合财务管理中的审批工作流,我应该了解什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-know-about-bidding-in-portfolio-financials" title="关于综合财务管理中的投标,我应该知道什么?"><span class="mt-icon-article-none"></span>关于综合财务管理中的投标,我应该知道什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-know-about-change-orders-in-portfolio-financials" title="关于综合财务管理中的变更通知单,我应该知道什么?"><span class="mt-icon-article-none"></span>关于综合财务管理中的变更通知单,我应该知道什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-I-know-about-claiming-a-business-on-the-procore-construction-network" title="关于在 Procore 建设工程网络上申请业务,我应该了解什么?"><span class="mt-icon-article-none"></span>关于在 Procore 建设工程网络上申请业务,我应该了解什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-know-about-invoicing-in-portfolio-financials" title="关于综合财务管理中的开发票,我应该知道什么?"><span class="mt-icon-article-none"></span>关于综合财务管理中的开发票,我应该知道什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-know-about-the-contract-room-in-portfolio-financials" title="关于综合财务管理中的合同室,我应该知道什么?"><span class="mt-icon-article-none"></span>关于综合财务管理中的合同室,我应该知道什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-source-columns-are-available-in-custom-budget-views" title="自定义 预算 视图中有哪些源列?"><span class="mt-icon-article-none"></span>自定义 预算 视图中有哪些源列?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-standard-trades-are-available-in-procore" title="Procore 中提供哪些标准行业?"><span class="mt-icon-article-none"></span>Procore 中提供哪些标准行业?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/whats-the-difference-between-adding-an-assignee-to-an-rfi-and-forwarding-an-rfi-for-review" title="将任务分配对象添加到 RFI 和转发 RFI 供审核之间有什么区别?"><span class="mt-icon-article-none"></span>将任务分配对象添加到 RFI 和转发 RFI 供审核之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what's-the-difference-between-a-job-a-parent-job-and-a-sub-job" title="作业、父作业和子作业之间有何区别?"><span class="mt-icon-article-none"></span>作业、父作业和子作业之间有何区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/whats-the-difference-between-procores-user-import-and-vendor-company-import-templates" title="Procore 的用户导入和供应商/公司导入模板之间有什么区别?"><span class="mt-icon-article-none"></span>Procore 的用户导入和供应商/公司导入模板之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/whats-the-difference-between-sequential-and-parallel-approval-in-the-submittal-workflow" title="送审工作流中的依序审批和平行审批有什么区别?"><span class="mt-icon-article-none"></span>送审工作流中的依序审批和平行审批有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-to-know-vapid-api-deprecation" title="关于 Vapid API 的弃用,我需要了解什么?"><span class="mt-icon-article-none"></span>关于 Vapid API 的弃用,我需要了解什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-tool-names-and-terms-are-different-in-procore-for-general-contractors-owners-and-specialty-contractors" title="Procore 中的哪些工具名称和术语对于总承包商、业主和专业承包商是不同的?"><span class="mt-icon-article-none"></span>Procore 中的哪些工具名称和术语对于总承包商、业主和专业承包商是不同的?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-tools-are-supported-by-maps-in-procore" title="Procore 中的地图支持哪些工具?"><span class="mt-icon-article-reference"></span>Procore 中的地图支持哪些工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-tools-can-you-use-on-mobile-for-inactive-projects" title="可以在移动设备上将哪些工具用于非活动项目?"><span class="mt-icon-article-none"></span>可以在移动设备上将哪些工具用于非活动项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-type-of-device-is-recommended-for-viewing-models-in-the-models-tool" title="建议在模型工具中使用什么类型的设备查看模型?"><span class="mt-icon-article-none"></span>建议在模型工具中使用什么类型的设备查看模型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-type-of-mobile-device-should-i-use-for-procore" title="应该使用什么类型的移动设备来使用 Procore?"><span class="mt-icon-article-none"></span>应该使用什么类型的移动设备来使用 Procore?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-types-of-correspondences-can-be-created-with-the-correspondence-tool" title="可以使用通信工具创建哪些类型的通信?"><span class="mt-icon-article-none"></span>可以使用通信工具创建哪些类型的通信?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-values-pull-into-a-change-order-sov-from-a-change-event" title="从变更事件中将哪些值提取到变更通知单 SOV?"><span class="mt-icon-article-none"></span>从变更事件中将哪些值提取到变更通知单 SOV?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-visibility-settings-are-available-for-procore-maps" title="Procore 地图有哪些可见性设置?"><span class="mt-icon-article-none"></span>Procore 地图有哪些可见性设置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-are-email-notifications-sent-from-workflows" title="工作流发送哪些电子邮件通知?"><span class="mt-icon-article-none"></span>工作流发送哪些电子邮件通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-does-an-action-plan-shift-to-edit-or-view-mode" title="行动计划何时转换为“编辑”或“查看”模式?"><span class="mt-icon-article-none"></span>行动计划何时转换为“编辑”或“查看”模式?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-does-my-user-session-expire-on-procore-support-site" title="我在 Procore 支持网站上的用户会话何时过期?"><span class="mt-icon-article-none"></span>我在 Procore 支持网站上的用户会话何时过期?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-does-procore-send-email-notifications-to-invoice-contacts" title="Procore 何时向发票联系人发送电子邮件通知?"><span class="mt-icon-article-none"></span>Procore 何时向发票联系人发送电子邮件通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-does-the-rfis-tool-send-email-notifications" title="RFI 工具何时发送电子邮件通知?"><span class="mt-icon-article-none"></span>RFI 工具何时发送电子邮件通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-does-the-tasks-tool-send-email-notifications" title="任务工具何时发送电子邮件通知?"><span class="mt-icon-article-none"></span>任务工具何时发送电子邮件通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-is-a-submittal-attachment-labeled-as-current-in-the-submittal-worfklow-table" title="送审附件何时在“送审工作流”表中标记为“当前”?"><span class="mt-icon-article-none"></span>送审附件何时在“送审工作流”表中标记为“当前”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-updating-the-work-log-section-why-cant-i-see-any-names-in-my-resource-list" title="更新作业日志部分时,为什么在我的资源列表中看不到任何名称?"><span class="mt-icon-article-none"></span>更新作业日志部分时,为什么在我的资源列表中看不到任何名称?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-will-i-receive-emails-about-the-project-i-am-bidding-on-in-portfolio-financials" title="什么时候会收到有关我在综合财务管理中投标的项目的电子邮件?"><span class="mt-icon-article-none"></span>什么时候会收到有关我在综合财务管理中投标的项目的电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-and-how-does-procore-store-customer-information" title="Procore 在哪里以及如何存储客户信息?"><span class="mt-icon-article-none"></span>Procore 在哪里以及如何存储客户信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-can-i-find-the-email-address-to-send-photos-documents-and-emails-to-procore" title="在哪里可以找到用于向 Procore 发送工作日志、照片、文档和电子邮件的电子邮件地址?"><span class="mt-icon-article-none"></span>在哪里可以找到用于向 Procore 发送工作日志、照片、文档和电子邮件的电子邮件地址?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-can-i-sign-up-for-free-public-trainings" title="我在哪里可以报名参加免费的公开培训?"><span class="mt-icon-article-none"></span>我在哪里可以报名参加免费的公开培训?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-did-quality-and-safety-go-in-procore" title="Procore 中的质量和安全去哪里了?"><span class="mt-icon-article-none"></span>Procore 中的质量和安全去哪里了?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-did-the-numbered-templates-on-the-timesheets-and-my-time-tool-fieldsets-come-from" title="考勤表和我的工时工具字段集上的编号模板从何而来?"><span class="mt-icon-article-none"></span>考勤表和我的工时工具字段集上的编号模板从何而来?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-does-the-qualifications-data-come-from-when-searching-for-bidders" title="搜索投标人时,"资格"数据从何而来?"><span class="mt-icon-article-none"></span>搜索投标人时,"资格"数据从何而来?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-do-i-put-my-bid-documents-in-procore" title="在 Procore 中,我应该将投标文件放在哪里?"><span class="mt-icon-article-none"></span>在 Procore 中,我应该将投标文件放在哪里?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-do-the-selections-in-the-spec-sections-drop-down-list-come-from" title=""规范分项"下拉列表中的选项从何而来?"><span class="mt-icon-article-none"></span>"规范分项"下拉列表中的选项从何而来?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-is-the-division-in-the-cost-code-segment-in-procores-wbs" title="Procore 的 WBS 中“成本编号”细分中的“分部”在哪里?"><span class="mt-icon-article-none"></span>Procore 的 WBS 中“成本编号”细分中的“分部”在哪里?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-is-the-procore-certification-course-that-i'm-looking-for" title="正在寻找的 Procore 认证课程在哪里?"><span class="mt-icon-article-none"></span>正在寻找的 Procore 认证课程在哪里?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-asta-powerproject-file-formats-are-supported-by-procore" title="Procore 支持哪些 Asta Powerproject 文件格式?"><span class="mt-icon-article-none"></span>Procore 支持哪些 Asta Powerproject 文件格式?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-budget-views-should-i-add-to-my-projects" title="我应该将哪些预算视图添加到我的 Procore 项目中?"><span class="mt-icon-article-none"></span>我应该将哪些预算视图添加到我的 Procore 项目中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-calculation-method-should-i-choose-when-using-the-forecast-to-complete-feature" title="使用“完工预测”功能时应该选择哪种计算方法?"><span class="mt-icon-article-none"></span>使用“完工预测”功能时应该选择哪种计算方法?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-cost-code-formats-are-supported-by-erp" title="我的 ERP 集成支持哪些成本编号格式?"><span class="mt-icon-article-none"></span>我的 ERP 集成支持哪些成本编号格式?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-data-columns-are-in-a-field-production-report" title="现场生产报告中包含哪些数据列?"><span class="mt-icon-article-none"></span>现场生产报告中包含哪些数据列?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-data-columns-can-i-add-to-a-custom-submittals-report" title="可以将哪些数据列添加到自定义送审报告中?"><span class="mt-icon-article-none"></span>可以将哪些数据列添加到自定义送审报告中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-domains-do-we-add-to-our-networks-allowed-list-to-ensure-access-to-procore" title="我们将哪些域添加到我们网络的“允许名单”中以确保访问 Procore?"><span class="mt-icon-article-none"></span>我们将哪些域添加到我们网络的“允许名单”中以确保访问 Procore?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-emails-are-affected-by-the-updated-inbound-email-communication-settings-in-procore" title="Procore 中更新的入站电子邮件通信设置会影响哪些电子邮件?"><span class="mt-icon-article-none"></span>Procore 中更新的入站电子邮件通信设置会影响哪些电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-can-procore-automatically-populate-when-uploading-drawings" title="上传图纸时,Procore 可以自动填充哪些字段?"><span class="mt-icon-article-none"></span>上传图纸时,Procore 可以自动填充哪些字段?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-can-procore-automatically-populate-when-uploading-specifications" title="上传规范时,Procore 可以自动填充哪些字段?"><span class="mt-icon-article-none"></span>上传规范时,Procore 可以自动填充哪些字段?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-action-plans-tool-can-be-configured-as-required-optional-or-hidden" title="行动计划工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>行动计划工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-budget-tool-can-be-configured" title="预算工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>预算工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-change-events-tool-can-be-configured-as-required-optional-or-hidden" title="变更事件工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>变更事件工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-commitments-tool-can-be-configured-as-required-optional-or-hidden" title="合约工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>合约工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-coordination-issues-tool-can-be-configured-as-required-optional-or-hidden" title="协调问题工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>协调问题工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-correspondence-tool-can-be-configured-as-required-optional-or-hidden" title="通信工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>通信工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-daily-log-tool-can-be-configured-as-required-optional-or-hidden" title="工作日志工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>工作日志工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-directory-tool-can-be-configured-as-required-optional-or-hidden" title="目录工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>目录工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-documents-tool-can-be-configured-as-required-optional-or-hidden" title="文档工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>文档工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-drawings-tool-can-be-configured-as-required-optional-or-hidden" title="图纸工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>图纸工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-incidents-tool-can-be-configured-as-required-optional-or-hidden" title="事件工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>事件工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-inspections-tool-can-be-configured-as-required-optional-or-hidden" title="检查任务工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>检查任务工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-invoicing-or-progress-billings-tools-can-be-configured-as-required-optional-or-hidden" title="发票或按进度收款账单工具中的哪些字段可以配置为必填、选填或隐藏?"><span class="mt-icon-article-none"></span>发票或按进度收款账单工具中的哪些字段可以配置为必填、选填或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-my-time-tool-can-be-configured-as-required-optional-or-hidden" title="我的工时工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>我的工时工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-observations-tool-can-be-configured-as-required-optional-or-hidden" title="观察任务工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>观察任务工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-prime-contracts-tool-can-be-configured-as-required-optional-or-hidden" title="主合同工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>主合同工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-punch-list-tool-can-be-configured-as-required-optional-or-hidden" title="尾项清单工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>尾项清单工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-rfis-tool-can-be-configured-as-required-optional-or-hidden" title="RFI 工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>RFI 工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-specifications-tool-can-be-configured-as-required-optional-or-hidden" title="规范工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>规范工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-submittals-tool-can-be-configured-as-required-optional-or-hidden" title="送审工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>送审工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-timesheets-tool-can-be-configured-as-required-optional-or-hidden" title="考勤表工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>考勤表工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-tm-tickets-tool-can-be-configured-as-required-optional-or-hidden" title="工时和材料单工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>工时和材料单工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-on-the-create-or-update-project-page-can-be-configured-as-required-optional-or-hidden" title="创建或更新项目页面上的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>创建或更新项目页面上的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-file-formats-are-supported-when-exporting-a-projects-submittals" title="导出项目的送审材料时支持哪些文件格式?"><span class="mt-icon-article-none"></span>导出项目的送审材料时支持哪些文件格式?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-filters-are-supported-in-the-portfolio-tools-views" title="项目集合工具的视图中支持哪些筛选器?"><span class="mt-icon-article-none"></span>项目集合工具的视图中支持哪些筛选器?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-filters-can-i-apply-to-the-change-events-tool" title="我可以将哪些筛选器应用于变更事件工具?"><span class="mt-icon-article-none"></span>我可以将哪些筛选器应用于变更事件工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-groundbreak-2021-sessions-qualified-for-ce-credit" title="哪些 Groundbreak 2021 会议有资格获得 CE 学分?"><span class="mt-icon-article-none"></span>哪些 Groundbreak 2021 会议有资格获得 CE 学分?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-insurance-fields-in-a-procore-company-sync-with-sage-300-cre" title="Procore 公司的哪些保险字段与 Sage 300 CRE 供应商同步?"><span class="mt-icon-article-none"></span>Procore 公司的哪些保险字段与 Sage 300 CRE 供应商同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-category-concept" title="哪些集成 ERP 系统支持“成本类型”概念?"><span class="mt-icon-article-none"></span>哪些集成 ERP 系统支持“成本类型”概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-sub-job-concept" title="哪些集成 ERP 系统支持“子作业”概念?"><span class="mt-icon-article-none"></span>哪些集成 ERP 系统支持“子作业”概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-logos-appear-on-pdf-exports-in-procore" title="哪些徽标会在 Procore 的 PDF 导出中显示?"><span class="mt-icon-article-none"></span>哪些徽标会在 Procore 的 PDF 导出中显示?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-prime-contract-and-pcco-fields-are-synced-with-procore-and-viewpoint-spectrum" title="哪些主合同和主合同变更通知单字段与 Procore 和 Viewpoint Spectrum 同步?"><span class="mt-icon-article-none"></span>哪些主合同和主合同变更通知单字段与 Procore 和 Viewpoint Spectrum 同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-platforms-support-azure-ad-sso" title="哪些 Procore 平台支持Azure AD (Entra ID)单点登录?"><span class="mt-icon-article-none"></span>哪些 Procore 平台支持Azure AD (Entra ID)单点登录?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-support-the-docusign-integration" title="哪些 Procore 项目工具支持 DocuSign® 集成?"><span class="mt-icon-article-none"></span>哪些 Procore 项目工具支持 DocuSign® 集成?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-update-data-in-the-field-production-report" title="哪些 Procore 项目工具会更新现场生产报告中的数据?"><span class="mt-icon-article-none"></span>哪些 Procore 项目工具会更新现场生产报告中的数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-can-i-use-to-add-production-quantities-to-my-projects-budget" title="可以使用哪些 Procore 工具将生产数量添加到我的项目预算中?"><span class="mt-icon-article-none"></span>可以使用哪些 Procore 工具将生产数量添加到我的项目预算中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-can-i-use-to-create-a-change-event" title="我可以使用哪些 Procore 工具创建变更事件?"><span class="mt-icon-article-none"></span>我可以使用哪些 Procore 工具创建变更事件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-let-me-view-a-digital-image-attachment-in-a-map-view" title="哪些 Procore 工具可让我在地图视图中查看数字图像附件?"><span class="mt-icon-article-none"></span>哪些 Procore 工具可让我在地图视图中查看数字图像附件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-classifications" title="哪些 Procore 工具支持“工种”?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持“工种”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="哪些 Procore 工具支持细分权限?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-work-breakdown-structure" title="哪些 Procore 工具支持工作分解结构?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持工作分解结构?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-workflows" title="哪些 Procore 工具支持工作流?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持工作流?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-project-tools-support-conversations" title="哪些项目工具支持对话?"><span class="mt-icon-article-none"></span>哪些项目工具支持对话?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-setting-do-i-enable-in-quickbooks-to-export-invoices-with-the-erp-integrations-tool" title="在 QuickBooks® 中启用哪个设置才能使用 ERP 集成工具导出发票?"><span class="mt-icon-article-none"></span>在 QuickBooks® 中启用哪个设置才能使用 ERP 集成工具导出发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-settings-are-available-in-procore" title="Procore 中有哪些设置可用?"><span class="mt-icon-article-none"></span>Procore 中有哪些设置可用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-sso-identity-providers-are-supported-by-procore" title="Procore 支持哪些单点登录身份提供商?"><span class="mt-icon-article-none"></span>Procore 支持哪些单点登录身份提供商?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-tools-can-attach-document-management-files" title="哪些工具可以添加文档管理文件?"><span class="mt-icon-article-none"></span>哪些工具可以添加文档管理文件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-tools-can-i-extract-project-data-from-using-the-procore-extracts-application" title="使用 Procore Extracts 应用程序可以从哪些工具中提取项目数据?"><span class="mt-icon-article-none"></span>使用 Procore Extracts 应用程序可以从哪些工具中提取项目数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-tools-currently-support-the-bookmarks-feature-on-the-procore-mobile-app" title="在 Procore 移动应用程序上,目前哪些工具支持“书签”功能?"><span class="mt-icon-article-none"></span>在 Procore 移动应用程序上,目前哪些工具支持“书签”功能?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-units-of-measure-are-included-in-procores-master-list" title="Procore 的主列表中包含哪些计量单位?"><span class="mt-icon-article-none"></span>Procore 的主列表中包含哪些计量单位?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-versions-of-microsoft-project-does-procore-support" title="Procore 支持哪些版本的 Microsoft Project?"><span class="mt-icon-article-none"></span>Procore 支持哪些版本的 Microsoft Project?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-weather-providers-are-supported-by-procore" title="Procore 支持哪些天气预报提供商?"><span class="mt-icon-article-none"></span>Procore 支持哪些天气预报提供商?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-web-browsers-are-supported-by-procore" title="Procore 支持哪些 Web 浏览器?"><span class="mt-icon-article-none"></span>Procore 支持哪些 Web 浏览器?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-can-be-designated-as-an-assignee-on-an-rfi" title="谁可以被指定为 RFI 的“任务分配对象”?"><span class="mt-icon-article-none"></span>谁可以被指定为 RFI 的“任务分配对象”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-can-i-assign-a-task-to" title="我可以将任务分配给谁?"><span class="mt-icon-article-none"></span>我可以将任务分配给谁?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-can-see-users-listed-in-a-project-directory" title="谁可以查看项目目录中列出的用户?"><span class="mt-icon-article-none"></span>谁可以查看项目目录中列出的用户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-can-view-a-draft-rfi" title="谁可以查看 RFI“草稿”?"><span class="mt-icon-article-none"></span>谁可以查看 RFI“草稿”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-can-view-bids-within-a-free-procore-account" title="谁可以在免费 Procore 账户中查看投标?"><span class="mt-icon-article-none"></span>谁可以在免费 Procore 账户中查看投标?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-gets-notifications-from-observations" title="谁会收到观察任务通知?"><span class="mt-icon-article-none"></span>谁会收到观察任务通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-an-email-when-a-submittal-is-created-or-updated" title="创建或更新送审时谁会收到电子邮件?"><span class="mt-icon-article-none"></span>创建或更新送审时谁会收到电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-a-notification-for-updates-in-the-drawings-tool" title="谁会收到图纸工具中的更新通知?"><span class="mt-icon-article-none"></span>谁会收到图纸工具中的更新通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-a-notification-when-an-item-is-rejected-from-erp" title="当项被 ERP 拒绝时,谁会收到通知?"><span class="mt-icon-article-none"></span>当项被 ERP 拒绝时,谁会收到通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-correspondence-item-emails-and-push-notifications" title="谁会接收通信项电子邮件和推送通知?"><span class="mt-icon-article-none"></span>谁会接收通信项电子邮件和推送通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-emails-about-coordination-issues" title="谁会收到有关协调问题的电子邮件?"><span class="mt-icon-article-none"></span>谁会收到有关协调问题的电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-notification-emails-when-a-vendors-insurance-expires" title="当供应商的保险到期时,谁会收到通知电子邮件?"><span class="mt-icon-article-none"></span>当供应商的保险到期时,谁会收到通知电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-notifications-about-project-connections" title="谁会收到有关项目连接的通知?"><span class="mt-icon-article-none"></span>谁会收到有关项目连接的通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-getting-an-error-when-downloading-procore-drive" title="为什么下载 Procore Drive 时出错?"><span class="mt-icon-article-none"></span>为什么下载 Procore Drive 时出错?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-getting-the-error-missing-authentication-cookie-when-viewing-certification-lessons" title="为什么在查看认证课程时会收到“缺少身份验证 Cookie”错误?"><span class="mt-icon-article-none"></span>为什么在查看认证课程时会收到“缺少身份验证 Cookie”错误?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-having-problems-playing-training-videos" title="为什么我在播放培训视频时遇到问题?"><span class="mt-icon-article-none"></span>为什么我在播放培训视频时遇到问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-not-receiving-emails-from-portfolio-financials" title="为什么我没有收到来自综合财务管理和资金规划的电子邮件?"><span class="mt-icon-article-none"></span>为什么我没有收到来自综合财务管理和资金规划的电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-not-seeing-all-of-my-projects-in-the-conversations-tool" title="为什么没有在对话工具中看到我的所有项目?"><span class="mt-icon-article-none"></span>为什么没有在对话工具中看到我的所有项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-not-seeing-all-of-my-viewpoints-in-the-viewpoints-inport-tool" title="为什么我在视点导入工具中看不到我的所有视点?"><span class="mt-icon-article-none"></span>为什么我在视点导入工具中看不到我的所有视点?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-not-seeing-my-issues-after-i-associate-the-file-to-my-project" title="为什么我在将文件关联到我的项目后看不到我的问题?"><span class="mt-icon-article-none"></span>为什么我在将文件关联到我的项目后看不到我的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-receiving-an-error-message-in-the-procore-imports-app" title="为什么我在 Procore Imports 应用程序中收到错误消息?"><span class="mt-icon-article-none"></span>为什么我在 Procore Imports 应用程序中收到错误消息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-receiving-emails-from-procore" title="为什么会收到 Procore 的电子邮件?"><span class="mt-icon-article-none"></span>为什么会收到 Procore 的电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-receiving-procore-emails-at-night" title="为什么会在晚上收到 Procore 电子邮件?"><span class="mt-icon-article-none"></span>为什么会在晚上收到 Procore 电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-receiving-the-error-no-user-found-with-the-given-email-address-when-logging-in-with-sso" title="为什么我在使用 SSO 登录时收到“未发现有用户使用给定的电子邮件地址”错误?"><span class="mt-icon-article-none"></span>为什么我在使用 SSO 登录时收到“未发现有用户使用给定的电子邮件地址”错误?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-unable-to-download-and-open-a-zip-file-from-procore" title="为什么我无法从 Procore 下载和打开 .ZIP 文件?"><span class="mt-icon-article-none"></span>为什么我无法从 Procore 下载和打开 .ZIP 文件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-unable-to-log-in-to-the-procore-certification-site" title="为什么我无法登录 Procore 认证网站?"><span class="mt-icon-article-none"></span>为什么我无法登录 Procore 认证网站?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-unable-to-assign-users-to-a-rfq" title="为什么无法将用户分配到 RFQ?"><span class="mt-icon-article-none"></span>为什么无法将用户分配到 RFQ?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-automatic-drawing-sheet-links-missing" title="为什么自动图纸页链接丢失?"><span class="mt-icon-article-none"></span>为什么自动图纸页链接丢失?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-change-order-line-items-duplicated-on-my-subcontractor-invoice" title="为什么我的变更通知单明细项在我的分包商发票上重复?"><span class="mt-icon-article-none"></span>为什么我的变更通知单明细项在我的分包商发票上重复?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-courses-not-showing-up-in-my-procore-certification-profile" title="为什么我的课程未显示在 Procore 认证资料中?"><span class="mt-icon-article-none"></span>为什么我的课程未显示在 Procore 认证资料中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-drawing-comparisons-failing" title="为什么我的图纸对比失败?"><span class="mt-icon-article-none"></span>为什么我的图纸对比失败?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-drawing-uploads-failing" title="为什么我的图纸上传失败?"><span class="mt-icon-article-none"></span>为什么我的图纸上传失败?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-file-uploads-failing" title="为什么我的文件上传失败?"><span class="mt-icon-article-none"></span>为什么我的文件上传失败?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-specification-uploads-failing" title="为什么我的规范上传失败?"><span class="mt-icon-article-none"></span>为什么我的规范上传失败?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-training-courses-missing" title="为什么我的培训课程不见了?"><span class="mt-icon-article-none"></span>为什么我的培训课程不见了?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-recent-changes-to-my-sage-database-missing-in-procore" title="为什么 Procore 中缺少对 Sage 数据库的最近更改?"><span class="mt-icon-article-none"></span>为什么 Procore 中缺少对 Sage 数据库的最近更改?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-some-of-my-sub-folders-in-my-bid-documents-folder-not-showing-up-when-my-bidders-download-them" title="为什么我的投标人下载[投标文件]文件夹中的子文件夹时,某些子文件夹没有显示?"><span class="mt-icon-article-none"></span>为什么我的投标人下载[投标文件]文件夹中的子文件夹时,某些子文件夹没有显示?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-the-weather-conditions-not-showing-on-my-daily-log-weather-log" title="为什么我的工作日志天气日志中不显示天气条件?"><span class="mt-icon-article-none"></span>为什么我的工作日志天气日志中不显示天气条件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-viewpoints-being-created-after-i-use-the-markup-tools" title="为什么在使用标记工具后会创建视点?"><span class="mt-icon-article-none"></span>为什么在使用标记工具后会创建视点?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-can-i-access-the-prime-contracts-tool-if-i-cant-view-the-prime-contract" title="如果无法查看主合同,为什么可以访问主合同工具?"><span class="mt-icon-article-none"></span>如果无法查看主合同,为什么可以访问主合同工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-can-i-view-the-commitments-tool-but-cannot-see-any-commitments" title="为什么我可以查看合约工具但看不到任何合约?"><span class="mt-icon-article-none"></span>为什么我可以查看合约工具但看不到任何合约?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-add-procore-tools-to-my-favorites-list" title="为什么我不能将 Procore 工具添加到收藏夹列表中?"><span class="mt-icon-article-none"></span>为什么我不能将 Procore 工具添加到收藏夹列表中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-change-the-weather-delay-or-any-of-the-boxes-on-that-row" title="为什么不能更改天气导致的延误或该行上的任何框?"><span class="mt-icon-article-none"></span>为什么不能更改天气导致的延误或该行上的任何框?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-a-change-order" title="为什么我无法创建变更通知单?"><span class="mt-icon-article-none"></span>为什么我无法创建变更通知单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-a-follow-up-meeting-in-the-meetings-tool" title="为什么我不能在会议工具中创建后续会议?"><span class="mt-icon-article-none"></span>为什么我不能在会议工具中创建后续会议?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-or-activate-procore-projects" title="为什么我无法创建或激活 Procore 项目?"><span class="mt-icon-article-none"></span>为什么我无法创建或激活 Procore 项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-wbs-custom-segments" title="为什么我不能创建 WBS 自定义细分?"><span class="mt-icon-article-none"></span>为什么我不能创建 WBS 自定义细分?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-deactivate-a-cost-type-cost-code-or-sub-job-in-wbs" title="为什么我不能在 WBS 中停用成本类型、成本编号或子作业?"><span class="mt-icon-article-none"></span>为什么我不能在 WBS 中停用成本类型、成本编号或子作业?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-delete-certain-saved-views-in-the-document-management-tool" title="为什么我不能删除文档管理工具中的某些保存的视图?"><span class="mt-icon-article-none"></span>为什么我不能删除文档管理工具中的某些保存的视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-delete-items-in-procore" title="为什么不能在 Procore 中删除项?"><span class="mt-icon-article-none"></span>为什么不能在 Procore 中删除项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-edit-or-delete-an-approved-change-order" title="为什么我不能编辑或删除“获批”变更通知单?"><span class="mt-icon-article-none"></span>为什么我不能编辑或删除“获批”变更通知单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-expand-the-awarded-value-row-in-portfolio-financials-and-capital-planning" title="为什么我不能在综合财务管理和资金规划中展开“中标值”行?"><span class="mt-icon-article-none"></span>为什么我不能在综合财务管理和资金规划中展开“中标值”行?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-export-an-item-from-portfolio-financials-and-capital-planning" title="为什么我不能从综合财务管理和资金规划中导出项目?"><span class="mt-icon-article-none"></span>为什么我不能从综合财务管理和资金规划中导出项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-log-in-to-my-certification-analytics-dashboard" title="为什么无法登录认证分析仪表板?"><span class="mt-icon-article-none"></span>为什么无法登录认证分析仪表板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-log-in-to-portfolio-financials-and-capital-planning" title="为什么我无法登录“综合财务管理”和“资金规划”?"><span class="mt-icon-article-none"></span>为什么我无法登录“综合财务管理”和“资金规划”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-receive-email-from-procore" title="为什么收不到 Procore 的电子邮件?"><span class="mt-icon-article-none"></span>为什么收不到 Procore 的电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-all-my-favorite-tools-on-a-project" title="为什么我在项目中看不到所有收藏的工具?"><span class="mt-icon-article-none"></span>为什么我在项目中看不到所有收藏的工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-one-of-my-users-in-my-certification-analytics" title="为什么我在认证分析中看不到我的某位用户?"><span class="mt-icon-article-none"></span>为什么我在认证分析中看不到我的某位用户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-accept-reject-options-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到接受/拒绝选项?"><span class="mt-icon-article-none"></span>为什么我在 ERP 集成工具中看不到接受/拒绝选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-bid-room-in-portfolio-financials" title="为什么我在综合财务管理中看不到投标室?"><span class="mt-icon-article-none"></span>为什么我在综合财务管理中看不到投标室?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-contract-room-in-portfolio-financials" title="为什么我在综合财务管理中看不到合同室?"><span class="mt-icon-article-none"></span>为什么我在综合财务管理中看不到合同室?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-favorites-tab-in-my-profile-settings" title="为什么在“我的个人资料设置”中看不到“收藏夹”标签页?"><span class="mt-icon-article-none"></span>为什么在“我的个人资料设置”中看不到“收藏夹”标签页?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-sync-or-refresh-buttons-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到“同步”或“刷新”按钮?"><span class="mt-icon-article-none"></span>为什么我在 ERP 集成工具中看不到“同步”或“刷新”按钮?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-turn-off-certain-document-types-for-the-document-management-tool" title="为什么我不能关闭文档管理工具的某些文档"类型"?"><span class="mt-icon-article-none"></span>为什么我不能关闭文档管理工具的某些文档"类型"?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-turn-off-the-action-required-emails-from-the-submittals-tool" title="为什么无法关闭从送审工具发送的“待办事项”电子邮件?"><span class="mt-icon-article-none"></span>为什么无法关闭从送审工具发送的“待办事项”电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-update-my-procore-app-ios" title="为什么无法更新我的 Procore 应用程序?(iOS)"><span class="mt-icon-article-none"></span>为什么无法更新我的 Procore 应用程序?(iOS)</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-use-the-cloud-redline-tool-in-navisworks" title="为什么我不能在 Navisworks® 中使用云红线工具?"><span class="mt-icon-article-none"></span>为什么我不能在 Navisworks® 中使用云红线工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-my-team-member-see-a-project-in-portfolio-financials-and-capital-planning" title="为什么我的团队成员无法查看综合财务管理和资金规划中的项目?"><span class="mt-icon-article-none"></span>为什么我的团队成员无法查看综合财务管理和资金规划中的项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-my-vendor-access-the-bid-room-in-portfolio-financials" title="为什么我的供应商无法访问综合财务管理中的投标室?"><span class="mt-icon-article-none"></span>为什么我的供应商无法访问综合财务管理中的投标室?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-didnt-i-receive-an-email-notification-from-a-submittal" title="为什么我没有收到送审的电子邮件通知?"><span class="mt-icon-article-none"></span>为什么我没有收到送审的电子邮件通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-did-procore-switch-from-procoretech-to-app.procore" title="为什么 Procore 从 procoretech.com 改为 app.procore.com?"><span class="mt-icon-article-none"></span>为什么 Procore 从 procoretech.com 改为 app.procore.com?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-does-procore-stop-supporting-older-versions-of-ios-and-android" title="为什么 Procore 停止支持旧版本的 iOS 和 Android?"><span class="mt-icon-article-none"></span>为什么 Procore 停止支持旧版本的 iOS 和 Android?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-do-i-need-to-log-in-to-procores-support-site" title="为什么我需要登录 Procore 的支持网站?"><span class="mt-icon-article-none"></span>为什么我需要登录 Procore 的支持网站?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-do-i-not-have-permission-to-view-this-web-page" title="我为什么没有查看此网页的权限?"><span class="mt-icon-article-none"></span>我为什么没有查看此网页的权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-do-i-see-an-error-when-trying-to-export-data-to-sage-300-cre" title="为什么我在尝试将数据导出到 Sage 300 CRE 时看到错误?"><span class="mt-icon-article-none"></span>为什么我在尝试将数据导出到 Sage 300 CRE 时看到错误?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-do-i-see-people-in-workforce-planning-but-not-procore" title="为什么我能在劳动力规划中看到人员,在 Procore 中却不能?"><span class="mt-icon-article-none"></span>为什么我能在劳动力规划中看到人员,在 Procore 中却不能?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-dont-i-have-permission-to-access-the-resource-planning-tool" title="为什么我无权查看资源规划工具?"><span class="mt-icon-article-none"></span>为什么我无权查看资源规划工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-do-some-of-our-projects-rfi-numbers-have-two-prefixes" title="为什么我们项目的某些 RFI 编号有两个前缀?"><span class="mt-icon-article-none"></span>为什么我们项目的某些 RFI 编号有两个前缀?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-a-feature-called-beta-and-what-does-that-mean" title="测试版是什么意思?"><span class="mt-icon-article-none"></span>测试版是什么意思?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-it-valuable-to-have-procore-as-an-endorsable-skill-on-my-linkedin-profile" title="为什么在我的 LinkedIn 个人资料中将“Procore”作为可认可的技能很有价值?"><span class="mt-icon-article-none"></span>为什么在我的 LinkedIn 个人资料中将“Procore”作为可认可的技能很有价值?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-bid-package-missing-from-the-planroom" title="为什么 Planroom 中没有我的投标文件包?"><span class="mt-icon-article-none"></span>为什么 Planroom 中没有我的投标文件包?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-certification-analytics-page-blank" title="为什么我的认证分析页面是空白的?"><span class="mt-icon-article-none"></span>为什么我的认证分析页面是空白的?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-financial-health-section-of-the-health-dashboard-not-configured" title="为什么没有配置健康仪表板的财务健康部分?"><span class="mt-icon-article-none"></span>为什么没有配置健康仪表板的财务健康部分?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-form-template-not-loading" title="为什么我的表单模板没有加载?"><span class="mt-icon-article-none"></span>为什么我的表单模板没有加载?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-open-items-list-not-showing-tasks-that-have-been-assigned-to-me" title="为什么“我的未完成项”列表不显示已分配给我的任务?"><span class="mt-icon-article-none"></span>为什么“我的未完成项”列表不显示已分配给我的任务?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-procore-certified-certificate-missing" title="为什么我的 Procore 认证证书缺失?"><span class="mt-icon-article-none"></span>为什么我的 Procore 认证证书缺失?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-procore-project-missing-from-the-erp-integrations-tool" title="为什么 ERP 集成工具中缺少我的 Procore 项目?"><span class="mt-icon-article-none"></span>为什么 ERP 集成工具中缺少我的 Procore 项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-sage-data-not-syncing" title="为什么我的 Sage 300 CRE 数据不同步?"><span class="mt-icon-article-none"></span>为什么我的 Sage 300 CRE 数据不同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-isnt-my-model-showing-when-viewing-models-in-procore" title="为什么在 Procore 中查看模型时,模型不显示?"><span class="mt-icon-article-none"></span>为什么在 Procore 中查看模型时,模型不显示?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-isnt-my-project-weather-working" title="为什么我的项目天气小部件不工作?"><span class="mt-icon-article-none"></span>为什么我的项目天气小部件不工作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-isnt-the-job-to-date-costs-column-in-the-budget-matching-our-subcontractor-invoice-amounts" title="为什么预算中的“开工至今成本”列与分包商发票金额不一致?"><span class="mt-icon-article-none"></span>为什么预算中的“开工至今成本”列与分包商发票金额不一致?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-isnt-the-projects-budget-view-reflecting-labor-costs-and-production-quantities-from-timecard-entries" title="为什么项目的预算视图没有反映考勤卡条目中的人工成本和生产数量?"><span class="mt-icon-article-none"></span>为什么项目的预算视图没有反映考勤卡条目中的人工成本和生产数量?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-the-add-visual-button-unavailable-on-a-single-tool-report" title="为什么"添加视觉元素"按钮在单个工具报告上不可用?"><span class="mt-icon-article-none"></span>为什么"添加视觉元素"按钮在单个工具报告上不可用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-the-delete-button-dimmed-and-not-available--in-the-schedule-tool-of-procore-drive" title="为什么删除按钮在 Procore Drive 的进度计划工具中变暗且不可用?"><span class="mt-icon-article-none"></span>为什么删除按钮在 Procore Drive 的进度计划工具中变暗且不可用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-the-percentage-complete-less-than-100-for-a-procore-certification-course" title="为什么 Procore 认证课程的完成百分比低于 100%?"><span class="mt-icon-article-none"></span>为什么 Procore 认证课程的完成百分比低于 100%?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-the-procore-drive-desktop-shortcut-not-working" title="为什么 Procore Drive 桌面快捷方式不起作用?"><span class="mt-icon-article-none"></span>为什么 Procore Drive 桌面快捷方式不起作用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-the-send-to-erp-button-grayed-out-in-the-project-creation-assistant" title="为什么“发送到 ERP”按钮变暗并且在项目创建助手中不可用?"><span class="mt-icon-article-none"></span>为什么“发送到 ERP”按钮变暗并且在项目创建助手中不可用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-was-the-procore-fundamentals-training-course-deprecated" title="为什么“Procore 基础知识”培训课程被弃用?"><span class="mt-icon-article-none"></span>为什么“Procore 基础知识”培训课程被弃用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-were-the-deep-dive-training-courses-deprecated" title="为什么“深入研究培训”课程被弃用?"><span class="mt-icon-article-none"></span>为什么“深入研究培训”课程被弃用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-were-tool-configuration-user-usage-and-data-quality-moved" title="为什么移动工具配置、用户使用情况和数据质量报告页面?"><span class="mt-icon-article-none"></span>为什么移动工具配置、用户使用情况和数据质量报告页面?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-wont-the-resource-planning-tool-load" title="为什么资源规划工具不加载?"><span class="mt-icon-article-none"></span>为什么资源规划工具不加载?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-would-the-file-size-of-a-model-increase-in-procore" title="为什么 Procore 中模型的文件大小会增加?"><span class="mt-icon-article-none"></span>为什么 Procore 中模型的文件大小会增加?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/will-dates-from-a-bid-room-be-added-to-the-projects-milestones-in-portfolio-financials" title="投标室中的日期是否会添加到综合财务管理中的项目里程碑?"><span class="mt-icon-article-none"></span>投标室中的日期是否会添加到综合财务管理中的项目里程碑?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/will-procore-convert-my-non-fillable-pdf-to-a-fillable-pdf" title="Procore 会将我的不可填写 PDF 转换为可填写 PDF 吗?"><span class="mt-icon-article-none"></span>Procore 会将我的不可填写 PDF 转换为可填写 PDF 吗?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-forms"><span id="forms"></span><h5>forms</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-access-forms-offline" title="我可以离线访问表单吗?"><span class="mt-icon-article-none"></span>我可以离线访问表单吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-enforce-required-fields-in-a-form" title="我能否在表单中强制执行必填字段?"><span class="mt-icon-article-none"></span>我能否在表单中强制执行必填字段?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-fill-out-a-form-on-my-mobile-device" title="我可以在我的移动设备上填写表单吗?"><span class="mt-icon-article-none"></span>我可以在我的移动设备上填写表单吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-fill-out-forms-on-the-web-version-of-procore" title="我能否在 Procore Web 版上填写表单?"><span class="mt-icon-article-none"></span>我能否在 Procore Web 版上填写表单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-include-required-fields-in-a-fillable-pdf-form" title="我能否在可填写 PDF 表单中包含必填字段?"><span class="mt-icon-article-none"></span>我能否在可填写 PDF 表单中包含必填字段?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-include-signature-fields-in-my-fillable-pdfs" title="我可以在可填写的 PDF 中包含签名字段吗?"><span class="mt-icon-article-none"></span>我可以在可填写的 PDF 中包含签名字段吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-report-on-content-in-the-forms-tool" title="我能否报告表单工具中的内容?"><span class="mt-icon-article-none"></span>我能否报告表单工具中的内容?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-search-the-contents-of-a-fillable-pdf" title="我能否搜索可填写 PDF 的内容?"><span class="mt-icon-article-none"></span>我能否搜索可填写 PDF 的内容?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-upload-fillable-pdfs-that-are-password-protected" title="我能否上传受密码保护的可填写 PDF?"><span class="mt-icon-article-none"></span>我能否上传受密码保护的可填写 PDF?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-procores-hot-work-permit-pdf-in-my-projects-forms-tool" title="如何在项目表单工具中使用 Procore 的动火作业许可 PDF?"><span class="mt-icon-article-none"></span>如何在项目表单工具中使用 Procore 的动火作业许可 PDF?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-procores-job-hazard-analysis-pdf-in-my-projects-forms-tool" title="如何在项目表单工具中使用 Procore 的作业危害分析 PDF?"><span class="mt-icon-article-none"></span>如何在项目表单工具中使用 Procore 的作业危害分析 PDF?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-procores-toolbox-talk-sign-in-pdf-in-my-projects-forms-tool" title="如何在项目表单工具中使用 Procore 的 Toolbox Talk Sign-In PDF?"><span class="mt-icon-article-none"></span>如何在项目表单工具中使用 Procore 的 Toolbox Talk Sign-In PDF?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-create-a-fillable-pdf" title="如何创建可填写 PDF?"><span class="mt-icon-article-none"></span>如何创建可填写 PDF?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-file-types-does-the-forms-tool-support" title="表单工具支持哪些文件类型?"><span class="mt-icon-article-none"></span>表单工具支持哪些文件类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-fillable-pdf" title="什么是可填写 PDF?"><span class="mt-icon-article-none"></span>什么是可填写 PDF?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="什么是 Procore 回收站?"><span class="mt-icon-article-none"></span>什么是 Procore 回收站?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-let-me-view-a-digital-image-attachment-in-a-map-view" title="哪些 Procore 工具可让我在地图视图中查看数字图像附件?"><span class="mt-icon-article-none"></span>哪些 Procore 工具可让我在地图视图中查看数字图像附件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-form-template-not-loading" title="为什么我的表单模板没有加载?"><span class="mt-icon-article-none"></span>为什么我的表单模板没有加载?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/will-procore-convert-my-non-fillable-pdf-to-a-fillable-pdf" title="Procore 会将我的不可填写 PDF 转换为可填写 PDF 吗?"><span class="mt-icon-article-none"></span>Procore 会将我的不可填写 PDF 转换为可填写 PDF 吗?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-free-account"><span id="free-account"></span><h5>free-account</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-i-have-a-free-or-paid-procore-account" title="如何判断我有免费还是付费 Procore 公司账户?"><span class="mt-icon-article-none"></span>如何判断我有免费还是付费 Procore 公司账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-permissions-work-for-free-procore-accounts" title="免费 Procore 账户的权限如何工作?"><span class="mt-icon-article-none"></span>免费 Procore 账户的权限如何工作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-changes-when-companies-upgrade-to-paid-accounts" title="公司升级到付费账户会发生什么变化?"><span class="mt-icon-article-none"></span>公司升级到付费账户会发生什么变化?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-accepting-a-procore-invitation-and-creating-a-free-procore-account" title="接受 Procore 邀请和创建免费 Procore 公司账户之间有什么区别?"><span class="mt-icon-article-none"></span>接受 Procore 邀请和创建免费 Procore 公司账户之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-can-view-bids-within-a-free-procore-account" title="谁可以在免费 Procore 账户中查看投标?"><span class="mt-icon-article-none"></span>谁可以在免费 Procore 账户中查看投标?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-free-procore-account mt-tags-single"><span id="free-procore-account"></span><h5>free-procore-account</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-my-company-receive-bid-invitations-through-the-procore-construction-network" title="我的公司如何通过 Procore 建设工程网络接收投标邀请?"><span class="mt-icon-article-none"></span>我的公司如何通过 Procore 建设工程网络接收投标邀请?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-funding"><span id="funding"></span><h5>funding</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/at-what-tier-can-an-upstream-collaborator-approve-a-change-order" title="上游协作者可以在哪一层批准变更通知单?"><span class="mt-icon-article-none"></span>上游协作者可以在哪一层批准变更通知单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-create-a-change-order-for-a-contract-or-funding-before-a-downstream-collaborator-responds-to-an-rfq-for-a-change-event" title="我可以在下游协作者响应变更事件的 RFQ 之前为合同或资金创建变更通知单吗?"><span class="mt-icon-article-none"></span>我可以在下游协作者响应变更事件的 RFQ 之前为合同或资金创建变更通知单吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-customize-the-numbering-system-for-financial-management-objects-in-procore" title="我能否在 Procore 中自定义财务对象的编号系统?"><span class="mt-icon-article-none"></span>我能否在 Procore 中自定义财务对象的编号系统?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-import-a-csv-into-a-project-financial-tools-schedule-of-values-if-it-has-blank-values" title="如果 CSV 具有空白值,我能否将其导入到项目财务管理工具的分项价格表中?"><span class="mt-icon-article-none"></span>如果 CSV 具有空白值,我能否将其导入到项目财务管理工具的分项价格表中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-tax-codes-on-a-procore-project" title="如何在 Procore 项目中使用税务代码?"><span class="mt-icon-article-none"></span>如何在 Procore 项目中使用税务代码?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-automatically-complete-amounts-on-an-upstream-invoice" title="Procore 如何自动完成上游 发票上的金额? (旧版)"><span class="mt-icon-article-none"></span>Procore 如何自动完成上游 发票上的金额? (旧版)</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-calculate-an-invoices-current-payment-due-amount" title="Procore 如何计算发票的“当前到期应付款”金额?"><span class="mt-icon-article-none"></span>Procore 如何计算发票的“当前到期应付款”金额?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-adjust-my-budget-views-when-the-client-contracts-funding-or-prime-contracts-tool-is-disabled-in-my-companys-procore-account" title="当我公司 Procore 账户禁用客户合同、资金或主合同工具时,我能如何调整预算视图?"><span class="mt-icon-article-none"></span>当我公司 Procore 账户禁用客户合同、资金或主合同工具时,我能如何调整预算视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-change-my-web-browsers-default-email-client-for-mailto-links" title="如何为 mailto 链接更改我的 Web 浏览器的默认电子邮件客户端?"><span class="mt-icon-article-none"></span>如何为 mailto 链接更改我的 Web 浏览器的默认电子邮件客户端?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-sections-and-which-procore-tools-support-them" title="什么是自定义部分以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是自定义部分以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-change-types-and-change-reasons" title="Procore 的默认变更类型和变更原因是什么?"><span class="mt-icon-article-none"></span>Procore 的默认变更类型和变更原因是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore 默认成本编号有哪些?"><span class="mt-icon-article-none"></span>Procore 默认成本编号有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-types" title="Procore 有哪些默认成本类型?"><span class="mt-icon-article-none"></span>Procore 有哪些默认成本类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="什么是 Procore 中的“相关项”?"><span class="mt-icon-article-none"></span>什么是 Procore 中的“相关项”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-statuses-for-change-orders-in-procore" title="Procore 中变更通知单的默认状态是什么?"><span class="mt-icon-article-none"></span>Procore 中变更通知单的默认状态是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-statuses-for-procore-invoices" title="Procore 发票的默认状态有哪些?"><span class="mt-icon-article-none"></span>Procore 发票的默认状态有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-change-order-tier-settings-in-project-financials" title="项目财务中有哪些不同的变更通知单层设置?"><span class="mt-icon-article-none"></span>项目财务中有哪些不同的变更通知单层设置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-types-of-invoices-in-procore" title="Procore 中有哪些不同类型的发票?"><span class="mt-icon-article-none"></span>Procore 中有哪些不同类型的发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-docusign-fields-and-can-i-customize-them" title="什么是 DocuSign® 字段,我可以自定义它们吗?"><span class="mt-icon-article-none"></span>什么是 DocuSign® 字段,我可以自定义它们吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-requirements-for-importing-sov-line-items-from-csv" title="从 CSV 导入 SOV 行项目有哪些要求?"><span class="mt-icon-article-none"></span>从 CSV 导入 SOV 行项目有哪些要求?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-funding-tool" title="项目的资金工具有哪细分权限?"><span class="mt-icon-article-none"></span>项目的资金工具有哪细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-budget-code-in-procores-wbs" title="Procore 的 WBS 中的预算编号是什么?"><span class="mt-icon-article-none"></span>Procore 的 WBS 中的预算编号是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-upstream-collaborator" title="什么是上游协作者?"><span class="mt-icon-article-none"></span>什么是上游协作者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-distribution-group-and-a-distribution-list" title="Procore 中的通讯组和通讯名单有什么区别?"><span class="mt-icon-article-none"></span>Procore 中的通讯组和通讯名单有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-horizontal-and-vertical-markup" title="水平分项利润加成和垂直汇总利润加成有什么区别?"><span class="mt-icon-article-none"></span>水平分项利润加成和垂直汇总利润加成有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-enable-always-editable-schedule-of-values-setting" title="什么是“启用始终可编辑的分项价格表”设置?"><span class="mt-icon-article-none"></span>什么是“启用始终可编辑的分项价格表”设置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-tool-names-and-terms-are-different-in-procore-for-general-contractors-owners-and-specialty-contractors" title="Procore 中的哪些工具名称和术语对于总承包商、业主和专业承包商是不同的?"><span class="mt-icon-article-none"></span>Procore 中的哪些工具名称和术语对于总承包商、业主和专业承包商是不同的?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-support-the-docusign-integration" title="哪些 Procore 项目工具支持 DocuSign® 集成?"><span class="mt-icon-article-none"></span>哪些 Procore 项目工具支持 DocuSign® 集成?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="哪些 Procore 工具支持细分权限?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-work-breakdown-structure" title="哪些 Procore 工具支持工作分解结构?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持工作分解结构?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-units-of-measure-are-included-in-procores-master-list" title="Procore 的主列表中包含哪些计量单位?"><span class="mt-icon-article-none"></span>Procore 的主列表中包含哪些计量单位?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-a-change-order" title="为什么我无法创建变更通知单?"><span class="mt-icon-article-none"></span>为什么我无法创建变更通知单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-edit-or-delete-an-approved-change-order" title="为什么我不能编辑或删除“获批”变更通知单?"><span class="mt-icon-article-none"></span>为什么我不能编辑或删除“获批”变更通知单?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-generic-faq"><span id="generic-faq"></span><h5>generic-faq</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-change-my-web-browsers-default-email-client-for-mailto-links" title="如何为 mailto 链接更改我的 Web 浏览器的默认电子邮件客户端?"><span class="mt-icon-article-none"></span>如何为 mailto 链接更改我的 Web 浏览器的默认电子邮件客户端?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-let-me-view-a-digital-image-attachment-in-a-map-view" title="哪些 Procore 工具可让我在地图视图中查看数字图像附件?"><span class="mt-icon-article-none"></span>哪些 Procore 工具可让我在地图视图中查看数字图像附件?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-google-sso"><span id="google-sso"></span><h5>google-sso</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-log-into-the-procore-web-application-directly-if-my-company-has-implemented-sso" title="如果我的公司已实施单点登录,我可以直接登录 Procore Web 应用程序吗?"><span class="mt-icon-article-none"></span>如果我的公司已实施单点登录,我可以直接登录 Procore Web 应用程序吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-i-need-to-create-procore-user-accounts-if-our-company-implements-sso" title="如果我们公司实施单点登录,我是否需要创建 Procore 用户账户?"><span class="mt-icon-article-none"></span>如果我们公司实施单点登录,我是否需要创建 Procore 用户账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-procores-sso-integrations-support-single-or-multiple-domains" title="Procore 的单点登录集成支持单个域还是多个域?"><span class="mt-icon-article-none"></span>Procore 的单点登录集成支持单个域还是多个域?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-configure-sso-in-a-sandbox-environment-for-testing" title="在我的 Procore 公司账户中实施 SSO 之前,如何在沙箱环境中配置 SSO 以进行测试?"><span class="mt-icon-article-none"></span>在我的 Procore 公司账户中实施 SSO 之前,如何在沙箱环境中配置 SSO 以进行测试?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-single-sign-on-sso-with-procore" title="如何使用 Procore 设置单点登录 (SSO)?"><span class="mt-icon-article-none"></span>如何使用 Procore 设置单点登录 (SSO)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-update-an-expiring-x509-certificate-in-my-companys-procore-sso-configuration-settings" title="如何在公司的 Procore 单点登录配置设置中更新即将到期的 x509 证书?"><span class="mt-icon-article-none"></span>如何在公司的 Procore 单点登录配置设置中更新即将到期的 x509 证书?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-single-sign-on-sso" title="什么是单点登录 (SSO)?"><span class="mt-icon-article-none"></span>什么是单点登录 (SSO)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-sp-and-idp-initiated-sso" title="SP 发起的单点登录和 IdP 发起的单点登录之间有何区别?"><span class="mt-icon-article-none"></span>SP 发起的单点登录和 IdP 发起的单点登录之间有何区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-sso-identity-providers-are-supported-by-procore" title="Procore 支持哪些单点登录身份提供商?"><span class="mt-icon-article-none"></span>Procore 支持哪些单点登录身份提供商?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-receiving-the-error-no-user-found-with-the-given-email-address-when-logging-in-with-sso" title="为什么我在使用 SSO 登录时收到“未发现有用户使用给定的电子邮件地址”错误?"><span class="mt-icon-article-none"></span>为什么我在使用 SSO 登录时收到“未发现有用户使用给定的电子邮件地址”错误?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-home"><span id="home"></span><h5>home</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-an-avatar-or-profile-photo-to-procore" title="如何向 Procore 添加头像或个人资料照片?"><span class="mt-icon-article-none"></span>如何向 Procore 添加头像或个人资料照片?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-tools-to-my-favorites-list-in-procore" title="如何在 Procore 中将工具添加到收藏夹列表?"><span class="mt-icon-article-none"></span>如何在 Procore 中将工具添加到收藏夹列表?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-determine-the-latitude-and-longitude-values-on-an-address" title="如何确定地址的纬度和经度值?"><span class="mt-icon-article-none"></span>如何确定地址的纬度和经度值?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-display-a-list-of-project-dates-on-the-home-page" title="如何在主页上显示项目日期列表?"><span class="mt-icon-article-none"></span>如何在主页上显示项目日期列表?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/is-there-a-way-to-see-all-the-open-items-in-procore-assigned-to-me" title="是否有办法查看 Procore 中分配给我的所有未完成项?"><span class="mt-icon-article-none"></span>是否有办法查看 Procore 中分配给我的所有未完成项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-project-roles" title="什么是自定义项目角色?"><span class="mt-icon-article-none"></span>什么是自定义项目角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-information-is-searchable-using-procore-search" title="可以使用 Procore Search 搜索到哪些信息?"><span class="mt-icon-article-none"></span>可以使用 Procore Search 搜索到哪些信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what's-the-difference-between-a-job-a-parent-job-and-a-sub-job" title="作业、父作业和子作业之间有何区别?"><span class="mt-icon-article-none"></span>作业、父作业和子作业之间有何区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-weather-providers-are-supported-by-procore" title="Procore 支持哪些天气预报提供商?"><span class="mt-icon-article-none"></span>Procore 支持哪些天气预报提供商?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-add-procore-tools-to-my-favorites-list" title="为什么我不能将 Procore 工具添加到收藏夹列表中?"><span class="mt-icon-article-none"></span>为什么我不能将 Procore 工具添加到收藏夹列表中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-favorites-tab-in-my-profile-settings" title="为什么在“我的个人资料设置”中看不到“收藏夹”标签页?"><span class="mt-icon-article-none"></span>为什么在“我的个人资料设置”中看不到“收藏夹”标签页?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-open-items-list-not-showing-tasks-that-have-been-assigned-to-me" title="为什么“我的未完成项”列表不显示已分配给我的任务?"><span class="mt-icon-article-none"></span>为什么“我的未完成项”列表不显示已分配给我的任务?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-isnt-my-project-weather-working" title="为什么我的项目天气小部件不工作?"><span class="mt-icon-article-none"></span>为什么我的项目天气小部件不工作?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-in-app-link"><span id="in-app-link"></span><h5>in-app-link</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-task-codes-configured-for-time-entry" title="如何为工时条目配置任务编号?"><span class="mt-icon-article-none"></span>如何为工时条目配置任务编号?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-bill-for-stored-materials-in-an-invoice" title="如何在发票中为库存材料开具账单? (测试版)"><span class="mt-icon-article-none"></span>如何在发票中为库存材料开具账单? (测试版)</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-configurable-fieldsets-and-which-procore-tools-support-them" title="什么是可配置字段集以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是可配置字段集以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-fields-and-which-procore-tools-support-them" title="什么是自定义字段以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是自定义字段以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-budget-code-and-a-task-code" title="预算编号和任务编号有什么区别?"><span class="mt-icon-article-none"></span>预算编号和任务编号有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-monthly-sandbox-environment" title="什么是每月沙箱环境?"><span class="mt-icon-article-none"></span>什么是每月沙箱环境?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-rfi-manager-role" title="什么是 RFI 经理角色?"><span class="mt-icon-article-none"></span>什么是 RFI 经理角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-and-how-does-procore-store-customer-information" title="Procore 在哪里以及如何存储客户信息?"><span class="mt-icon-article-none"></span>Procore 在哪里以及如何存储客户信息?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-incident-management"><span id="incident_management"></span><h5>incident management</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-incident" title="什么是事件?"><span class="mt-icon-article-none"></span>什么是事件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-maintenance" title="什么是维护?"><span class="mt-icon-article-none"></span>什么是维护?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-availability" title="什么是 Procore 的可用性?"><span class="mt-icon-article-none"></span>什么是 Procore 的可用性?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-unavailibility" title="什么是 Procore 的不可用性?"><span class="mt-icon-article-none"></span>什么是 Procore 的不可用性?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-incidents"><span id="incidents"></span><h5>incidents</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-provide-users-with-read-only-level-permissions-with-limited-access-to-update-information-in-procore" title="我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?"><span class="mt-icon-article-none"></span>我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-procores-incidents-tool-to-record-coronavirus-covid-19-infection-information" title="如何使用 Procore 的事件工具记录冠状病毒 (COVID-19) 感染信息?"><span class="mt-icon-article-none"></span>如何使用 Procore 的事件工具记录冠状病毒 (COVID-19) 感染信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-configurable-fieldsets-and-which-procore-tools-support-them" title="什么是可配置字段集以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是可配置字段集以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-fields-and-which-procore-tools-support-them" title="什么是自定义字段以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是自定义字段以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-fieldset-configurations-are-recommended-for-configurable-fieldsets" title="对于可配置字段集推荐使用哪些配置?"><span class="mt-icon-article-none"></span>对于可配置字段集推荐使用哪些配置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-contact-in-procore-and-which-project-tools-support-the-concept" title="Procore 中的“联系人”是什么?哪些项目工具支持此概念?"><span class="mt-icon-article-none"></span>Procore 中的“联系人”是什么?哪些项目工具支持此概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="什么是 Procore 回收站?"><span class="mt-icon-article-none"></span>什么是 Procore 回收站?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-distribution-group-and-a-distribution-list" title="Procore 中的通讯组和通讯名单有什么区别?"><span class="mt-icon-article-none"></span>Procore 中的通讯组和通讯名单有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-incidents-tool-can-be-configured-as-required-optional-or-hidden" title="事件工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>事件工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-let-me-view-a-digital-image-attachment-in-a-map-view" title="哪些 Procore 工具可让我在地图视图中查看数字图像附件?"><span class="mt-icon-article-none"></span>哪些 Procore 工具可让我在地图视图中查看数字图像附件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="哪些 Procore 工具支持细分权限?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持细分权限?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-insights mt-tags-single"><span id="insights"></span><h5>insights</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-insights-calculated" title="见解是如何计算的?"><span class="mt-icon-article-reference"></span>见解是如何计算的?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-inspections"><span id="inspections"></span><h5>inspections</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/for-which-items-in-procore-should-i-make-templates" title="我应该为 Procore 中的哪些项制作模板?"><span class="mt-icon-article-none"></span>我应该为 Procore 中的哪些项制作模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-add-the-procore-project-shutdown-inspection-template-to-my-procore-account" title="如何将“[Procore] 项目停工”检查任务模板添加到我的 Procore 账户?"><span class="mt-icon-article-none"></span>如何将“[Procore] 项目停工”检查任务模板添加到我的 Procore 账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-nextwave-safety-solutions-concrete-pre-pour-inspection-template-on-my-project" title="如何在我的项目中使用“[NextWave Safety Solutions] 混凝土预浇注”检查任务模板?"><span class="mt-icon-article-none"></span>如何在我的项目中使用“[NextWave Safety Solutions] 混凝土预浇注”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-nextwave-safety-solutions-ladder-safety-simple-checklist-inspection-template-on-my-project" title="如何在我的项目中使用“[NextWave Safety Solutions] 梯子安全性 - 简单检查清单”检查任务模板?"><span class="mt-icon-article-none"></span>如何在我的项目中使用“[NextWave Safety Solutions] 梯子安全性 - 简单检查清单”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-oac-management-inc-pre-backfill-checklist-inspection-template-on-my-project" title="如何在我的项目中使用“[OAC Management Inc.] 预回填检查清单”检查任务模板?"><span class="mt-icon-article-none"></span>如何在我的项目中使用“[OAC Management Inc.] 预回填检查清单”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-oac-management-inc-pre-drywall-checklist-inspection-template-on-my-project" title="如何在我的项目中使用“[OAC Management Inc.] 预干墙检查清单”检查任务模板?"><span class="mt-icon-article-none"></span>如何在我的项目中使用“[OAC Management Inc.] 预干墙检查清单”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-oac-management-inc-pre-roofing-checklist-inspection-template-on-my-project" title="如何在我的项目中使用“[OAC Management Inc.] 铺盖屋顶前检查清单”检查任务模板?"><span class="mt-icon-article-none"></span>如何在我的项目中使用“[OAC Management Inc.] 铺盖屋顶前检查清单”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-osha-daily-inspection-of-trenches-and-excavations-inspection-template-on-my-project" title="如何在我的项目中使用“[OSHA] 沟槽和挖掘日常检查”检查任务模板?"><span class="mt-icon-article-none"></span>如何在我的项目中使用“[OSHA] 沟槽和挖掘日常检查”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-osha-lockout-tagout-procedures-inspection-template-on-my-project" title="如何在我的项目中使用“[OSHA] 上锁/挂牌程序”检查任务模板?"><span class="mt-icon-article-none"></span>如何在我的项目中使用“[OSHA] 上锁/挂牌程序”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-osha-materials-handling-inspection-template-on-my-project" title="如何在我的项目中使用“[OSHA] 材料处理”检查任务模板?"><span class="mt-icon-article-none"></span>如何在我的项目中使用“[OSHA] 材料处理”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-procore-equipment-pre-operation-checklist-inspection-template-on-my-project" title="如何在我的项目中使用“[Procore] 设备操作前检查清单”检查任务模板?"><span class="mt-icon-article-none"></span>如何在我的项目中使用“[Procore] 设备操作前检查清单”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-procore-jobsite-cleanliness-and-preparedness-checklist-inspection-template-on-my-project" title="如何在我的项目中使用“[Procore] 作业现场清洁和准备检查清单”检查任务模板?"><span class="mt-icon-article-none"></span>如何在我的项目中使用“[Procore] 作业现场清洁和准备检查清单”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-procore-swppp-construction-site-stormwater-checklist-inspection-template-on-my-project" title="如何在我的项目中使用“[Procore] SWPPP - 施工现场雨水检查清单”检查任务模板?"><span class="mt-icon-article-none"></span>如何在我的项目中使用“[Procore] SWPPP - 施工现场雨水检查清单”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-site-safety-inspection-template-on-my-project" title="如何在我的项目中使用“现场安全检查任务”模板?"><span class="mt-icon-article-none"></span>如何在我的项目中使用“现场安全检查任务”模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/inspection-requirements-general-faq" title="检查任务要求:一般常见问题"><span class="mt-icon-article-reference"></span>检查任务要求:一般常见问题</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-configurable-fieldsets-and-which-procore-tools-support-them" title="什么是可配置字段集以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是可配置字段集以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-multi-tiered-locations" title="什么是多层地点?"><span class="mt-icon-article-none"></span>什么是多层地点?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="什么是 Procore 中的“相关项”?"><span class="mt-icon-article-none"></span>什么是 Procore 中的“相关项”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-file-types-and-formats-are-supported-in-the-attachment-viewer" title="统一附件查看器支持哪些文件类型和格式?"><span class="mt-icon-article-none"></span>统一附件查看器支持哪些文件类型和格式?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-project-level-inspections-tool" title="项目级别检查任务工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目级别检查任务工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-conditional-logic-within-the-inspections-tool" title="什么是检查任务工具中的条件逻辑?"><span class="mt-icon-article-none"></span>什么是检查任务工具中的条件逻辑?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="什么是 Procore 回收站?"><span class="mt-icon-article-none"></span>什么是 Procore 回收站?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-distribution-group-and-a-distribution-list" title="Procore 中的通讯组和通讯名单有什么区别?"><span class="mt-icon-article-none"></span>Procore 中的通讯组和通讯名单有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-standard-trades-are-available-in-procore" title="Procore 中提供哪些标准行业?"><span class="mt-icon-article-none"></span>Procore 中提供哪些标准行业?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-inspections-tool-can-be-configured-as-required-optional-or-hidden" title="检查任务工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>检查任务工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-let-me-view-a-digital-image-attachment-in-a-map-view" title="哪些 Procore 工具可让我在地图视图中查看数字图像附件?"><span class="mt-icon-article-none"></span>哪些 Procore 工具可让我在地图视图中查看数字图像附件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="哪些 Procore 工具支持细分权限?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持细分权限?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-instructions"><span id="instructions"></span><h5>instructions</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="什么是 Procore 中的“相关项”?"><span class="mt-icon-article-none"></span>什么是 Procore 中的“相关项”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-site-instruction" title="什么是“指示”或“现场指示”?"><span class="mt-icon-article-none"></span>什么是“指示”或“现场指示”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="什么是 Procore 回收站?"><span class="mt-icon-article-none"></span>什么是 Procore 回收站?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-distribution-group-and-a-distribution-list" title="Procore 中的通讯组和通讯名单有什么区别?"><span class="mt-icon-article-none"></span>Procore 中的通讯组和通讯名单有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-can-i-use-to-create-a-change-event" title="我可以使用哪些 Procore 工具创建变更事件?"><span class="mt-icon-article-none"></span>我可以使用哪些 Procore 工具创建变更事件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-let-me-view-a-digital-image-attachment-in-a-map-view" title="哪些 Procore 工具可让我在地图视图中查看数字图像附件?"><span class="mt-icon-article-none"></span>哪些 Procore 工具可让我在地图视图中查看数字图像附件?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-invoice-contact mt-tags-single"><span id="invoice-contact"></span><h5>invoice-contact</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-subcontractor-schedule-of-values" title="什么是分包商分项价格表?"><span class="mt-icon-article-none"></span>什么是分包商分项价格表?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-invoices"><span id="invoices"></span><h5>invoices</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-customize-the-numbering-system-for-financial-management-objects-in-procore" title="我能否在 Procore 中自定义财务对象的编号系统?"><span class="mt-icon-article-none"></span>我能否在 Procore 中自定义财务对象的编号系统?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-invoicing"><span id="invoicing"></span><h5>invoicing</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/does-an-invoice-contact-need-an-invite-to-bill-to-submit-an-invoice" title="发票联系人是否需要“结算邀请”才能提交发票?"><span class="mt-icon-article-none"></span>发票联系人是否需要“结算邀请”才能提交发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-automatically-complete-amounts-on-an-owner-invoice" title="Procore 如何自动完成业主 发票上的金额? (测试版)"><span class="mt-icon-article-none"></span>Procore 如何自动完成业主 发票上的金额? (测试版)</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-automatically-complete-amounts-on-an-upstream-invoice" title="Procore 如何自动完成上游 发票上的金额? (旧版)"><span class="mt-icon-article-none"></span>Procore 如何自动完成上游 发票上的金额? (旧版)</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-bill-for-stored-materials-in-an-invoice" title="如何在发票中为库存材料开具账单? (测试版)"><span class="mt-icon-article-none"></span>如何在发票中为库存材料开具账单? (测试版)</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-create-a-billing-period-for-an-invoice" title="如何为发票创建结算期?"><span class="mt-icon-article-none"></span>如何为发票创建结算期?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-prevent-or-allow-overbilling-on-a-subcontractor-invoice" title="如何防止或允许分包商发票超额 计费?"><span class="mt-icon-article-none"></span>如何防止或允许分包商发票超额 计费?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-and-release-retainage-on-a-subcontractor-invoice-in-procore" title="如何在 Procore 中设置和返还分包商发票的保留金?"><span class="mt-icon-article-none"></span>如何在 Procore 中设置和返还分包商发票的保留金?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-submit-a-subcontractor-schedule-of-values-for-a-procore-commitment" title="如何提交 Procore 合约的分包商分项价格表?"><span class="mt-icon-article-none"></span>如何提交 Procore 合约的分包商分项价格表?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-fields-and-which-procore-tools-support-them" title="什么是自定义字段以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是自定义字段以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore 默认成本编号有哪些?"><span class="mt-icon-article-none"></span>Procore 默认成本编号有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-statuses-for-procore-invoices" title="Procore 发票的默认状态有哪些?"><span class="mt-icon-article-none"></span>Procore 发票的默认状态有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-types-of-invoices-in-procore" title="Procore 中有哪些不同类型的发票?"><span class="mt-icon-article-none"></span>Procore 中有哪些不同类型的发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-we-need-to-consider-before-allowing-downstream-collaborators-to-submit-invoices-in-procore" title="在允许下游协作者在 Procore 中提交发票之前,我们需要考虑什么?"><span class="mt-icon-article-none"></span>在允许下游协作者在 Procore 中提交发票之前,我们需要考虑什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-budget-code-in-procores-wbs" title="Procore 的 WBS 中的预算编号是什么?"><span class="mt-icon-article-none"></span>Procore 的 WBS 中的预算编号是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-downstream-collaborator" title="什么是下游协作者?"><span class="mt-icon-article-none"></span>什么是下游协作者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-invoice-administrator" title="什么是发票 管理员?"><span class="mt-icon-article-none"></span>什么是发票 管理员?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-invoice-contact" title="什么是发票联系人?"><span class="mt-icon-article-none"></span>什么是发票联系人?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-upstream-collaborator" title="什么是上游协作者?"><span class="mt-icon-article-none"></span>什么是上游协作者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-subcontractor-schedule-of-values" title="什么是分包商分项价格表?"><span class="mt-icon-article-none"></span>什么是分包商分项价格表?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-sliding-scale-retention" title="什么是浮动保留金?"><span class="mt-icon-article-none"></span>什么是浮动保留金?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-tool-names-and-terms-are-different-in-procore-for-general-contractors-owners-and-specialty-contractors" title="Procore 中的哪些工具名称和术语对于总承包商、业主和专业承包商是不同的?"><span class="mt-icon-article-none"></span>Procore 中的哪些工具名称和术语对于总承包商、业主和专业承包商是不同的?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-does-procore-send-email-notifications-to-invoice-contacts" title="Procore 何时向发票联系人发送电子邮件通知?"><span class="mt-icon-article-none"></span>Procore 何时向发票联系人发送电子邮件通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-invoicing-or-progress-billings-tools-can-be-configured-as-required-optional-or-hidden" title="发票或按进度收款账单工具中的哪些字段可以配置为必填、选填或隐藏?"><span class="mt-icon-article-none"></span>发票或按进度收款账单工具中的哪些字段可以配置为必填、选填或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-support-the-docusign-integration" title="哪些 Procore 项目工具支持 DocuSign® 集成?"><span class="mt-icon-article-none"></span>哪些 Procore 项目工具支持 DocuSign® 集成?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-workflows" title="哪些 Procore 工具支持工作流?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持工作流?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-setting-do-i-enable-in-quickbooks-to-export-invoices-with-the-erp-integrations-tool" title="在 QuickBooks® 中启用哪个设置才能使用 ERP 集成工具导出发票?"><span class="mt-icon-article-none"></span>在 QuickBooks® 中启用哪个设置才能使用 ERP 集成工具导出发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-units-of-measure-are-included-in-procores-master-list" title="Procore 的主列表中包含哪些计量单位?"><span class="mt-icon-article-none"></span>Procore 的主列表中包含哪些计量单位?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-change-order-line-items-duplicated-on-my-subcontractor-invoice" title="为什么我的变更通知单明细项在我的分包商发票上重复?"><span class="mt-icon-article-none"></span>为什么我的变更通知单明细项在我的分包商发票上重复?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-isnt-the-job-to-date-costs-column-in-the-budget-matching-our-subcontractor-invoice-amounts" title="为什么预算中的“开工至今成本”列与分包商发票金额不一致?"><span class="mt-icon-article-none"></span>为什么预算中的“开工至今成本”列与分包商发票金额不一致?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-jobpac"><span id="jobpac"></span><h5>jobpac</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-accounting-approvers-notified-when-data-is-awaiting-acceptance-in-the-erp-integrations-tool" title="当数据在 ERP 集成工具中等待验收时,是否会通知会计审批者?"><span class="mt-icon-article-none"></span>当数据在 ERP 集成工具中等待验收时,是否会通知会计审批者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-pending-commitments-automatically-synced-with-integrated-erp-systems" title="待处理合约是否会与集成 ERP 系统自动同步?"><span class="mt-icon-article-none"></span>待处理合约是否会与集成 ERP 系统自动同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-change-the-selected-vendor-type-after-a-company-has-been-synced" title="我能否在公司同步后更改选定的供应商类型?"><span class="mt-icon-article-none"></span>我能否在公司同步后更改选定的供应商类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-customize-the-numbering-system-for-financial-management-objects-in-procore" title="我能否在 Procore 中自定义财务对象的编号系统?"><span class="mt-icon-article-none"></span>我能否在 Procore 中自定义财务对象的编号系统?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-edit-or-delete-a-commitment-after-its-been-synced-with-an-erp-integration" title="合约与集成 ERP 系统同步后,我能否编辑或删除?"><span class="mt-icon-article-none"></span>合约与集成 ERP 系统同步后,我能否编辑或删除?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-project-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目是否已与集成 ERP 系统同步?"><span class="mt-icon-article-none"></span>如何判断 Procore 项目是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-i-do-when-a-commimtment-fails-to-export-from-the-erp-integrations-tool" title="当合约未能从 ERP 集成工具中导出时,我该怎么办?"><span class="mt-icon-article-none"></span>当合约未能从 ERP 集成工具中导出时,我该怎么办?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-erp-icons-mean" title="ERP 图标的含义是什么?"><span class="mt-icon-article-none"></span>ERP 图标的含义是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-if-i-have-duplicate-company-records-in-procores-company-directory" title="如果 Procore 公司目录中存在重复公司记录会怎样?"><span class="mt-icon-article-none"></span>如果 Procore 公司目录中存在重复公司记录会怎样?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="什么是会计审批者角色?"><span class="mt-icon-article-none"></span>什么是会计审批者角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-change-order-line-items-duplicated-on-my-subcontractor-invoice" title="为什么我的变更通知单明细项在我的分包商发票上重复?"><span class="mt-icon-article-none"></span>为什么我的变更通知单明细项在我的分包商发票上重复?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-wbs-custom-segments" title="为什么我不能创建 WBS 自定义细分?"><span class="mt-icon-article-none"></span>为什么我不能创建 WBS 自定义细分?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-accept-reject-options-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到接受/拒绝选项?"><span class="mt-icon-article-none"></span>为什么我在 ERP 集成工具中看不到接受/拒绝选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-sync-or-refresh-buttons-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到“同步”或“刷新”按钮?"><span class="mt-icon-article-none"></span>为什么我在 ERP 集成工具中看不到“同步”或“刷新”按钮?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-procore-project-missing-from-the-erp-integrations-tool" title="为什么 ERP 集成工具中缺少我的 Procore 项目?"><span class="mt-icon-article-none"></span>为什么 ERP 集成工具中缺少我的 Procore 项目?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-meetings"><span id="meetings"></span><h5>meetings</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-change-the-name-of-a-meeting" title="我可以更改会议名称吗?"><span class="mt-icon-article-none"></span>我可以更改会议名称吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-provide-users-with-read-only-level-permissions-with-limited-access-to-update-information-in-procore" title="我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?"><span class="mt-icon-article-none"></span>我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-meetings-integrate-with-microsoft-outlook-calendar" title="会议是否与 Microsoft Outlook 日历集成?"><span class="mt-icon-article-none"></span>会议是否与 Microsoft Outlook 日历集成?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/for-which-items-in-procore-should-i-make-templates" title="我应该为 Procore 中的哪些项制作模板?"><span class="mt-icon-article-none"></span>我应该为 Procore 中的哪些项制作模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-change-my-web-browsers-default-email-client-for-mailto-links" title="如何为 mailto 链接更改我的 Web 浏览器的默认电子邮件客户端?"><span class="mt-icon-article-none"></span>如何为 mailto 链接更改我的 Web 浏览器的默认电子邮件客户端?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-show-previous-minutes-on-a-meeting-pdf" title="如何在会议 PDF 上显示以前的会议纪要?"><span class="mt-icon-article-none"></span>如何在会议 PDF 上显示以前的会议纪要?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-stop-a-meeting-item-from-carrying-over-to-a-follow-up-meeting" title="如何阻止会议项转移到后续会议?"><span class="mt-icon-article-none"></span>如何阻止会议项转移到后续会议?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-meeting-minutes" title="什么是会议纪要?"><span class="mt-icon-article-none"></span>什么是会议纪要?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="什么是 Procore 中的“相关项”?"><span class="mt-icon-article-none"></span>什么是 Procore 中的“相关项”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-meetings-tool" title="项目的会议工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的会议工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="什么是 Procore 回收站?"><span class="mt-icon-article-none"></span>什么是 Procore 回收站?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-distribution-group-and-a-distribution-list" title="Procore 中的通讯组和通讯名单有什么区别?"><span class="mt-icon-article-none"></span>Procore 中的通讯组和通讯名单有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-can-i-use-to-create-a-change-event" title="我可以使用哪些 Procore 工具创建变更事件?"><span class="mt-icon-article-none"></span>我可以使用哪些 Procore 工具创建变更事件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-let-me-view-a-digital-image-attachment-in-a-map-view" title="哪些 Procore 工具可让我在地图视图中查看数字图像附件?"><span class="mt-icon-article-none"></span>哪些 Procore 工具可让我在地图视图中查看数字图像附件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="哪些 Procore 工具支持细分权限?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-a-follow-up-meeting-in-the-meetings-tool" title="为什么我不能在会议工具中创建后续会议?"><span class="mt-icon-article-none"></span>为什么我不能在会议工具中创建后续会议?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-mobile-android"><span id="mobile-android"></span><h5>mobile-android</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-attach-a-photo-to-a-punch-list-item-from-my-mobile-device" title="我能否通过移动设备将照片添加到尾项清单项目?"><span class="mt-icon-article-none"></span>我能否通过移动设备将照片添加到尾项清单项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-change-the-language-of-my-company-project-or-user-in-procore" title="我可以在 Procore 中更改公司、项目或用户语言吗?"><span class="mt-icon-article-none"></span>我可以在 Procore 中更改公司、项目或用户语言吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-use-procores-mobile-application-offline" title="我可以在离线模式下使用 Procore 的移动应用程序吗?"><span class="mt-icon-article-none"></span>我可以在离线模式下使用 Procore 的移动应用程序吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-download-the-procore-android-mobile-application" title="如何下载 Procore 的 Android 移动应用程序?"><span class="mt-icon-article-none"></span>如何下载 Procore 的 Android 移动应用程序?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-tools-can-you-use-on-mobile-for-inactive-projects" title="可以在移动设备上将哪些工具用于非活动项目?"><span class="mt-icon-article-none"></span>可以在移动设备上将哪些工具用于非活动项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-type-of-mobile-device-should-i-use-for-procore" title="应该使用什么类型的移动设备来使用 Procore?"><span class="mt-icon-article-none"></span>应该使用什么类型的移动设备来使用 Procore?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-can-i-use-to-create-a-change-event" title="我可以使用哪些 Procore 工具创建变更事件?"><span class="mt-icon-article-none"></span>我可以使用哪些 Procore 工具创建变更事件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-work-breakdown-structure" title="哪些 Procore 工具支持工作分解结构?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持工作分解结构?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-tools-currently-support-the-bookmarks-feature-on-the-procore-mobile-app" title="在 Procore 移动应用程序上,目前哪些工具支持“书签”功能?"><span class="mt-icon-article-none"></span>在 Procore 移动应用程序上,目前哪些工具支持“书签”功能?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-does-procore-stop-supporting-older-versions-of-ios-and-android" title="为什么 Procore 停止支持旧版本的 iOS 和 Android?"><span class="mt-icon-article-none"></span>为什么 Procore 停止支持旧版本的 iOS 和 Android?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-mobile-ios"><span id="mobile-ios"></span><h5>mobile-ios</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-attach-a-photo-to-a-punch-list-item-from-my-mobile-device" title="我能否通过移动设备将照片添加到尾项清单项目?"><span class="mt-icon-article-none"></span>我能否通过移动设备将照片添加到尾项清单项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-change-the-language-of-my-company-project-or-user-in-procore" title="我可以在 Procore 中更改公司、项目或用户语言吗?"><span class="mt-icon-article-none"></span>我可以在 Procore 中更改公司、项目或用户语言吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-use-procores-mobile-application-offline" title="我可以在离线模式下使用 Procore 的移动应用程序吗?"><span class="mt-icon-article-none"></span>我可以在离线模式下使用 Procore 的移动应用程序吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-disable-quick-capture-for-ios" title="如何禁用 iOS 的 Quick Capture?"><span class="mt-icon-article-none"></span>如何禁用 iOS 的 Quick Capture?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-tools-can-you-use-on-mobile-for-inactive-projects" title="可以在移动设备上将哪些工具用于非活动项目?"><span class="mt-icon-article-none"></span>可以在移动设备上将哪些工具用于非活动项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-type-of-mobile-device-should-i-use-for-procore" title="应该使用什么类型的移动设备来使用 Procore?"><span class="mt-icon-article-none"></span>应该使用什么类型的移动设备来使用 Procore?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-can-i-use-to-create-a-change-event" title="我可以使用哪些 Procore 工具创建变更事件?"><span class="mt-icon-article-none"></span>我可以使用哪些 Procore 工具创建变更事件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-work-breakdown-structure" title="哪些 Procore 工具支持工作分解结构?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持工作分解结构?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-tools-currently-support-the-bookmarks-feature-on-the-procore-mobile-app" title="在 Procore 移动应用程序上,目前哪些工具支持“书签”功能?"><span class="mt-icon-article-none"></span>在 Procore 移动应用程序上,目前哪些工具支持“书签”功能?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-does-procore-stop-supporting-older-versions-of-ios-and-android" title="为什么 Procore 停止支持旧版本的 iOS 和 Android?"><span class="mt-icon-article-none"></span>为什么 Procore 停止支持旧版本的 iOS 和 Android?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-isnt-my-model-showing-when-viewing-models-in-procore" title="为什么在 Procore 中查看模型时,模型不显示?"><span class="mt-icon-article-none"></span>为什么在 Procore 中查看模型时,模型不显示?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-models"><span id="models"></span><h5>models</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-file-types-are-supported-for-the-3d-model-viewer-in-the-documents-tool" title="文档工具中的 3D 模型查看器支持哪些文件类型?"><span class="mt-icon-article-none"></span>文档工具中的 3D 模型查看器支持哪些文件类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procore-bim" title="什么是 Procore BIM?"><span class="mt-icon-article-none"></span>什么是 Procore BIM?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-procore-plugin-and-what-is-it-used-for" title="什么是 Procore插件,有何用途?"><span class="mt-icon-article-none"></span>什么是 Procore插件,有何用途?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-do-if-a-model-is-too-large-to-view-in-procores-web-application" title="如果模型太大而无法在 Procore 的 Web 应用程序中查看,我该怎么办?"><span class="mt-icon-article-none"></span>如果模型太大而无法在 Procore 的 Web 应用程序中查看,我该怎么办?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-do-if-my-model-file-is-too-large-to-process-in-the-documents-tool" title="如果我的模型文件太大而无法在文档工具中处理,我该怎么办?"><span class="mt-icon-article-none"></span>如果我的模型文件太大而无法在文档工具中处理,我该怎么办?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-type-of-device-is-recommended-for-viewing-models-in-the-models-tool" title="建议在模型工具中使用什么类型的设备查看模型?"><span class="mt-icon-article-none"></span>建议在模型工具中使用什么类型的设备查看模型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-arent-my-grids-aligned-in-the-models-tool" title="为什么我的网格在模型工具中没有对齐?"><span class="mt-icon-article-none"></span>为什么我的网格在模型工具中没有对齐?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-isnt-my-model-showing-when-viewing-models-in-procore" title="为什么在 Procore 中查看模型时,模型不显示?"><span class="mt-icon-article-none"></span>为什么在 Procore 中查看模型时,模型不显示?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-would-the-file-size-of-a-model-increase-in-procore" title="为什么 Procore 中模型的文件大小会增加?"><span class="mt-icon-article-none"></span>为什么 Procore 中模型的文件大小会增加?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-mri-projfin"><span id="mri-projfin"></span><h5>mri-projfin</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-project-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目是否已与集成 ERP 系统同步?"><span class="mt-icon-article-none"></span>如何判断 Procore 项目是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="什么是会计审批者角色?"><span class="mt-icon-article-none"></span>什么是会计审批者角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-sub-job-concept" title="哪些集成 ERP 系统支持“子作业”概念?"><span class="mt-icon-article-none"></span>哪些集成 ERP 系统支持“子作业”概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-accept-reject-options-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到接受/拒绝选项?"><span class="mt-icon-article-none"></span>为什么我在 ERP 集成工具中看不到接受/拒绝选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-procore-project-missing-from-the-erp-integrations-tool" title="为什么 ERP 集成工具中缺少我的 Procore 项目?"><span class="mt-icon-article-none"></span>为什么 ERP 集成工具中缺少我的 Procore 项目?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-ms-project"><span id="ms-project"></span><h5>ms-project</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/should-i-integrate-my-microsoft-project-schedule-in-procores-web-application-or-procore-drive" title="是否应该将 Microsoft Project 进度计划集成到 Procore Web 应用程序或 Procore Drive?"><span class="mt-icon-article-none"></span>是否应该将 Microsoft Project 进度计划集成到 Procore Web 应用程序或 Procore Drive?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-versions-of-microsoft-project-does-procore-support" title="Procore 支持哪些版本的 Microsoft Project?"><span class="mt-icon-article-none"></span>Procore 支持哪些版本的 Microsoft Project?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-myob"><span id="myob"></span><h5>myob</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-project-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目是否已与集成 ERP 系统同步?"><span class="mt-icon-article-none"></span>如何判断 Procore 项目是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-sync-my-prime-contract-with-acumatica" title="如何将我的主合同与 Acumatica 或MYOB Advanced Construction同步?"><span class="mt-icon-article-none"></span>如何将我的主合同与 Acumatica 或MYOB Advanced Construction同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="什么是会计审批者角色?"><span class="mt-icon-article-none"></span>什么是会计审批者角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-a-notification-when-an-item-is-rejected-from-erp" title="当项被 ERP 拒绝时,谁会收到通知?"><span class="mt-icon-article-none"></span>当项被 ERP 拒绝时,谁会收到通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-accept-reject-options-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到接受/拒绝选项?"><span class="mt-icon-article-none"></span>为什么我在 ERP 集成工具中看不到接受/拒绝选项?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-mytime mt-tags-single"><span id="mytime"></span><h5>mytime</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-task-codes-configured-for-time-entry" title="如何为工时条目配置任务编号?"><span class="mt-icon-article-none"></span>如何为工时条目配置任务编号?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-my-time"><span id="my-time"></span><h5>my-time</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-configure-user-permissions-for-multi-tier-approvals-with-timekeeping" title="如何为带计时的多层审批配置用户权限?"><span class="mt-icon-article-none"></span>如何为带计时的多层审批配置用户权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-a-budget-view-for-real-time-labor-productivity" title="如何为实时人工生产力设置预算视图?"><span class="mt-icon-article-none"></span>如何为实时人工生产力设置预算视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-configurable-fieldsets-and-which-procore-tools-support-them" title="什么是可配置字段集以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是可配置字段集以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-fields-and-which-procore-tools-support-them" title="什么是自定义字段以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是自定义字段以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-differences-between-procores-time-modules" title="Procore 的工时模块之间有什么区别?"><span class="mt-icon-article-none"></span>Procore 的工时模块之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-budget-code-and-a-task-code" title="预算编号和任务编号有什么区别?"><span class="mt-icon-article-none"></span>预算编号和任务编号有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-did-the-numbered-templates-on-the-timesheets-and-my-time-tool-fieldsets-come-from" title="考勤表和我的工时工具字段集上的编号模板从何而来?"><span class="mt-icon-article-none"></span>考勤表和我的工时工具字段集上的编号模板从何而来?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-my-time-tool-can-be-configured-as-required-optional-or-hidden" title="我的工时工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>我的工时工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-classifications" title="哪些 Procore 工具支持“工种”?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持“工种”?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-netsuite"><span id="netsuite"></span><h5>netsuite</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-accounting-approvers-notified-when-data-is-awaiting-acceptance-in-the-erp-integrations-tool" title="当数据在 ERP 集成工具中等待验收时,是否会通知会计审批者?"><span class="mt-icon-article-none"></span>当数据在 ERP 集成工具中等待验收时,是否会通知会计审批者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-project-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目是否已与集成 ERP 系统同步?"><span class="mt-icon-article-none"></span>如何判断 Procore 项目是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-erp-icons-mean" title="ERP 图标的含义是什么?"><span class="mt-icon-article-none"></span>ERP 图标的含义是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-if-i-have-duplicate-company-records-in-procores-company-directory" title="如果 Procore 公司目录中存在重复公司记录会怎样?"><span class="mt-icon-article-none"></span>如果 Procore 公司目录中存在重复公司记录会怎样?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="什么是会计审批者角色?"><span class="mt-icon-article-none"></span>什么是会计审批者角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-category-concept" title="哪些集成 ERP 系统支持“成本类型”概念?"><span class="mt-icon-article-none"></span>哪些集成 ERP 系统支持“成本类型”概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-accept-reject-options-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到接受/拒绝选项?"><span class="mt-icon-article-none"></span>为什么我在 ERP 集成工具中看不到接受/拒绝选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-sync-or-refresh-buttons-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到“同步”或“刷新”按钮?"><span class="mt-icon-article-none"></span>为什么我在 ERP 集成工具中看不到“同步”或“刷新”按钮?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-procore-project-missing-from-the-erp-integrations-tool" title="为什么 ERP 集成工具中缺少我的 Procore 项目?"><span class="mt-icon-article-none"></span>为什么 ERP 集成工具中缺少我的 Procore 项目?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-observations"><span id="observations"></span><h5>observations</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-disable-quick-capture-for-ios" title="如何禁用 iOS 的 Quick Capture?"><span class="mt-icon-article-none"></span>如何禁用 iOS 的 Quick Capture?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-configurable-fieldsets-and-which-procore-tools-support-them" title="什么是可配置字段集以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是可配置字段集以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-fields-and-which-procore-tools-support-them" title="什么是自定义字段以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是自定义字段以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-multi-tiered-locations" title="什么是多层地点?"><span class="mt-icon-article-none"></span>什么是多层地点?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="什么是 Procore 中的“相关项”?"><span class="mt-icon-article-none"></span>什么是 Procore 中的“相关项”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-observation-types-used-for" title="默认观察任务类型有何用途?"><span class="mt-icon-article-none"></span>默认观察任务类型有何用途?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-fieldset-configurations-are-recommended-for-configurable-fieldsets" title="对于可配置字段集推荐使用哪些配置?"><span class="mt-icon-article-none"></span>对于可配置字段集推荐使用哪些配置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-observations-tool" title="项目的观察任务工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的观察任务工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="什么是 Procore 回收站?"><span class="mt-icon-article-none"></span>什么是 Procore 回收站?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-distribution-group-and-a-distribution-list" title="Procore 中的通讯组和通讯名单有什么区别?"><span class="mt-icon-article-none"></span>Procore 中的通讯组和通讯名单有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-standard-trades-are-available-in-procore" title="Procore 中提供哪些标准行业?"><span class="mt-icon-article-none"></span>Procore 中提供哪些标准行业?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-observations-tool-can-be-configured-as-required-optional-or-hidden" title="观察任务工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>观察任务工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-can-i-use-to-create-a-change-event" title="我可以使用哪些 Procore 工具创建变更事件?"><span class="mt-icon-article-none"></span>我可以使用哪些 Procore 工具创建变更事件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-let-me-view-a-digital-image-attachment-in-a-map-view" title="哪些 Procore 工具可让我在地图视图中查看数字图像附件?"><span class="mt-icon-article-none"></span>哪些 Procore 工具可让我在地图视图中查看数字图像附件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="哪些 Procore 工具支持细分权限?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-gets-notifications-from-observations" title="谁会收到观察任务通知?"><span class="mt-icon-article-none"></span>谁会收到观察任务通知?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-okta"><span id="okta"></span><h5>okta</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-i-need-to-create-procore-user-accounts-if-our-company-implements-sso" title="如果我们公司实施单点登录,我是否需要创建 Procore 用户账户?"><span class="mt-icon-article-none"></span>如果我们公司实施单点登录,我是否需要创建 Procore 用户账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-configure-sso-in-a-sandbox-environment-for-testing" title="在我的 Procore 公司账户中实施 SSO 之前,如何在沙箱环境中配置 SSO 以进行测试?"><span class="mt-icon-article-none"></span>在我的 Procore 公司账户中实施 SSO 之前,如何在沙箱环境中配置 SSO 以进行测试?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-single-sign-on-sso-with-procore" title="如何使用 Procore 设置单点登录 (SSO)?"><span class="mt-icon-article-none"></span>如何使用 Procore 设置单点登录 (SSO)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-update-an-expiring-x509-certificate-in-my-companys-procore-sso-configuration-settings" title="如何在公司的 Procore 单点登录配置设置中更新即将到期的 x509 证书?"><span class="mt-icon-article-none"></span>如何在公司的 Procore 单点登录配置设置中更新即将到期的 x509 证书?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-single-sign-on-sso" title="什么是单点登录 (SSO)?"><span class="mt-icon-article-none"></span>什么是单点登录 (SSO)?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-okta-idp"><span id="okta-idp"></span><h5>okta-idp</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-log-into-the-procore-web-application-directly-if-my-company-has-implemented-sso" title="如果我的公司已实施单点登录,我可以直接登录 Procore Web 应用程序吗?"><span class="mt-icon-article-none"></span>如果我的公司已实施单点登录,我可以直接登录 Procore Web 应用程序吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-i-need-to-create-procore-user-accounts-if-our-company-implements-sso" title="如果我们公司实施单点登录,我是否需要创建 Procore 用户账户?"><span class="mt-icon-article-none"></span>如果我们公司实施单点登录,我是否需要创建 Procore 用户账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-configure-sso-in-a-sandbox-environment-for-testing" title="在我的 Procore 公司账户中实施 SSO 之前,如何在沙箱环境中配置 SSO 以进行测试?"><span class="mt-icon-article-none"></span>在我的 Procore 公司账户中实施 SSO 之前,如何在沙箱环境中配置 SSO 以进行测试?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-procore-sso-with-okta" title="如何为 Procore 配置 Okta 单点登录 (SAML 2.0)?"><span class="mt-icon-article-none"></span>如何为 Procore 配置 Okta 单点登录 (SAML 2.0)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-single-sign-on-sso-with-procore" title="如何使用 Procore 设置单点登录 (SSO)?"><span class="mt-icon-article-none"></span>如何使用 Procore 设置单点登录 (SSO)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-update-an-expiring-x509-certificate-in-my-companys-procore-sso-configuration-settings" title="如何在公司的 Procore 单点登录配置设置中更新即将到期的 x509 证书?"><span class="mt-icon-article-none"></span>如何在公司的 Procore 单点登录配置设置中更新即将到期的 x509 证书?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-single-sign-on-sso" title="什么是单点登录 (SSO)?"><span class="mt-icon-article-none"></span>什么是单点登录 (SSO)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-sp-and-idp-initiated-sso" title="SP 发起的单点登录和 IdP 发起的单点登录之间有何区别?"><span class="mt-icon-article-none"></span>SP 发起的单点登录和 IdP 发起的单点登录之间有何区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-sso-identity-providers-are-supported-by-procore" title="Procore 支持哪些单点登录身份提供商?"><span class="mt-icon-article-none"></span>Procore 支持哪些单点登录身份提供商?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-receiving-the-error-no-user-found-with-the-given-email-address-when-logging-in-with-sso" title="为什么我在使用 SSO 登录时收到“未发现有用户使用给定的电子邮件地址”错误?"><span class="mt-icon-article-none"></span>为什么我在使用 SSO 登录时收到“未发现有用户使用给定的电子邮件地址”错误?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-okta-sp"><span id="okta-sp"></span><h5>okta-sp</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-log-into-the-procore-web-application-directly-if-my-company-has-implemented-sso" title="如果我的公司已实施单点登录,我可以直接登录 Procore Web 应用程序吗?"><span class="mt-icon-article-none"></span>如果我的公司已实施单点登录,我可以直接登录 Procore Web 应用程序吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-i-need-to-create-procore-user-accounts-if-our-company-implements-sso" title="如果我们公司实施单点登录,我是否需要创建 Procore 用户账户?"><span class="mt-icon-article-none"></span>如果我们公司实施单点登录,我是否需要创建 Procore 用户账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-procores-sso-integrations-support-single-or-multiple-domains" title="Procore 的单点登录集成支持单个域还是多个域?"><span class="mt-icon-article-none"></span>Procore 的单点登录集成支持单个域还是多个域?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-configure-sso-in-a-sandbox-environment-for-testing" title="在我的 Procore 公司账户中实施 SSO 之前,如何在沙箱环境中配置 SSO 以进行测试?"><span class="mt-icon-article-none"></span>在我的 Procore 公司账户中实施 SSO 之前,如何在沙箱环境中配置 SSO 以进行测试?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-procore-sso-with-okta" title="如何为 Procore 配置 Okta 单点登录 (SAML 2.0)?"><span class="mt-icon-article-none"></span>如何为 Procore 配置 Okta 单点登录 (SAML 2.0)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-single-sign-on-sso-with-procore" title="如何使用 Procore 设置单点登录 (SSO)?"><span class="mt-icon-article-none"></span>如何使用 Procore 设置单点登录 (SSO)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-update-an-expiring-x509-certificate-in-my-companys-procore-sso-configuration-settings" title="如何在公司的 Procore 单点登录配置设置中更新即将到期的 x509 证书?"><span class="mt-icon-article-none"></span>如何在公司的 Procore 单点登录配置设置中更新即将到期的 x509 证书?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-single-sign-on-sso" title="什么是单点登录 (SSO)?"><span class="mt-icon-article-none"></span>什么是单点登录 (SSO)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-sp-and-idp-initiated-sso" title="SP 发起的单点登录和 IdP 发起的单点登录之间有何区别?"><span class="mt-icon-article-none"></span>SP 发起的单点登录和 IdP 发起的单点登录之间有何区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-sso-identity-providers-are-supported-by-procore" title="Procore 支持哪些单点登录身份提供商?"><span class="mt-icon-article-none"></span>Procore 支持哪些单点登录身份提供商?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-receiving-the-error-no-user-found-with-the-given-email-address-when-logging-in-with-sso" title="为什么我在使用 SSO 登录时收到“未发现有用户使用给定的电子邮件地址”错误?"><span class="mt-icon-article-none"></span>为什么我在使用 SSO 登录时收到“未发现有用户使用给定的电子邮件地址”错误?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-onelogin"><span id="onelogin"></span><h5>onelogin</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-configure-sso-in-a-sandbox-environment-for-testing" title="在我的 Procore 公司账户中实施 SSO 之前,如何在沙箱环境中配置 SSO 以进行测试?"><span class="mt-icon-article-none"></span>在我的 Procore 公司账户中实施 SSO 之前,如何在沙箱环境中配置 SSO 以进行测试?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-update-an-expiring-x509-certificate-in-my-companys-procore-sso-configuration-settings" title="如何在公司的 Procore 单点登录配置设置中更新即将到期的 x509 证书?"><span class="mt-icon-article-none"></span>如何在公司的 Procore 单点登录配置设置中更新即将到期的 x509 证书?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-receiving-the-error-no-user-found-with-the-given-email-address-when-logging-in-with-sso" title="为什么我在使用 SSO 登录时收到“未发现有用户使用给定的电子邮件地址”错误?"><span class="mt-icon-article-none"></span>为什么我在使用 SSO 登录时收到“未发现有用户使用给定的电子邮件地址”错误?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-onelogin-idp"><span id="onelogin-idp"></span><h5>onelogin-idp</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-configure-sso-in-a-sandbox-environment-for-testing" title="在我的 Procore 公司账户中实施 SSO 之前,如何在沙箱环境中配置 SSO 以进行测试?"><span class="mt-icon-article-none"></span>在我的 Procore 公司账户中实施 SSO 之前,如何在沙箱环境中配置 SSO 以进行测试?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-update-an-expiring-x509-certificate-in-my-companys-procore-sso-configuration-settings" title="如何在公司的 Procore 单点登录配置设置中更新即将到期的 x509 证书?"><span class="mt-icon-article-none"></span>如何在公司的 Procore 单点登录配置设置中更新即将到期的 x509 证书?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-sp-and-idp-initiated-sso" title="SP 发起的单点登录和 IdP 发起的单点登录之间有何区别?"><span class="mt-icon-article-none"></span>SP 发起的单点登录和 IdP 发起的单点登录之间有何区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-sso-identity-providers-are-supported-by-procore" title="Procore 支持哪些单点登录身份提供商?"><span class="mt-icon-article-none"></span>Procore 支持哪些单点登录身份提供商?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-receiving-the-error-no-user-found-with-the-given-email-address-when-logging-in-with-sso" title="为什么我在使用 SSO 登录时收到“未发现有用户使用给定的电子邮件地址”错误?"><span class="mt-icon-article-none"></span>为什么我在使用 SSO 登录时收到“未发现有用户使用给定的电子邮件地址”错误?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-onelogin-sp"><span id="onelogin-sp"></span><h5>onelogin-sp</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-procores-sso-integrations-support-single-or-multiple-domains" title="Procore 的单点登录集成支持单个域还是多个域?"><span class="mt-icon-article-none"></span>Procore 的单点登录集成支持单个域还是多个域?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-configure-sso-in-a-sandbox-environment-for-testing" title="在我的 Procore 公司账户中实施 SSO 之前,如何在沙箱环境中配置 SSO 以进行测试?"><span class="mt-icon-article-none"></span>在我的 Procore 公司账户中实施 SSO 之前,如何在沙箱环境中配置 SSO 以进行测试?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-update-an-expiring-x509-certificate-in-my-companys-procore-sso-configuration-settings" title="如何在公司的 Procore 单点登录配置设置中更新即将到期的 x509 证书?"><span class="mt-icon-article-none"></span>如何在公司的 Procore 单点登录配置设置中更新即将到期的 x509 证书?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-sp-and-idp-initiated-sso" title="SP 发起的单点登录和 IdP 发起的单点登录之间有何区别?"><span class="mt-icon-article-none"></span>SP 发起的单点登录和 IdP 发起的单点登录之间有何区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-sso-identity-providers-are-supported-by-procore" title="Procore 支持哪些单点登录身份提供商?"><span class="mt-icon-article-none"></span>Procore 支持哪些单点登录身份提供商?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-receiving-the-error-no-user-found-with-the-given-email-address-when-logging-in-with-sso" title="为什么我在使用 SSO 登录时收到“未发现有用户使用给定的电子邮件地址”错误?"><span class="mt-icon-article-none"></span>为什么我在使用 SSO 登录时收到“未发现有用户使用给定的电子邮件地址”错误?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-owner mt-tags-single"><span id="owner"></span><h5>owner</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-make-files-and-folders-private-by-default" title="是否可以默认在文档工具中将文件和文件夹设为私密?"><span class="mt-icon-article-none"></span>是否可以默认在文档工具中将文件和文件夹设为私密?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-paid-account mt-tags-single"><span id="paid-account"></span><h5>paid-account</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-payments mt-tags-single"><span id="payments"></span><h5>payments</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-invoice-contact" title="什么是发票联系人?"><span class="mt-icon-article-none"></span>什么是发票联系人?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-permissions"><span id="permissions"></span><h5>permissions</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-provide-users-with-read-only-level-permissions-with-limited-access-to-update-information-in-procore" title="我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?"><span class="mt-icon-article-none"></span>我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-permissions-in-procore-and-how-do-they-work" title="什么是 Procore 中的权限以及它们如何工作?"><span class="mt-icon-article-none"></span>什么是 Procore 中的权限以及它们如何工作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-role-based-permissions" title="什么是基于角色的权限?"><span class="mt-icon-article-none"></span>什么是基于角色的权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-permission-levels-in-procore" title="Procore 中的默认权限级别有哪些?"><span class="mt-icon-article-none"></span>Procore 中的默认权限级别有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-project-permissions-templates-in-procore" title="什么是 Procore 中的默认项目权限模板?"><span class="mt-icon-article-none"></span>什么是 Procore 中的默认项目权限模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-commitments-workflows" title="合约工作流有哪些细分权限?"><span class="mt-icon-article-none"></span>合约工作流有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-company-level-directory-tool" title="公司级别目录工具有哪些细分权限?"><span class="mt-icon-article-none"></span>公司级别目录工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-companys-bid-board-tool" title="公司投标板工具有哪些细分权限?"><span class="mt-icon-article-none"></span>公司投标板工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-project-level-admin-tool" title="项目级别管理员工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目级别管理员工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-project-level-directory-tool" title="项目级别目录工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目级别目录工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-project-level-documents-tool" title="项目级别文档工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目级别文档工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-project-level-inspections-tool" title="项目级别检查任务工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目级别检查任务工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-project-level-schedule-tool" title="项目级别进度计划工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目级别进度计划工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-project-level-timesheets-tool" title="项目级别考勤表工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目级别考勤表工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-action-plans-tool" title="项目的行动计划工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的行动计划工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-bidding-tool" title="项目的投标工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的投标工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-budget-tool" title="项目的预算工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的预算工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-change-orders-tool" title="项目的变更通知单工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的变更通知单工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-client-contracts-tool" title="项目的客户合同工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的客户合同工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-commitments-tool" title="项目的合约工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的合约工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-correspondence-tool" title="项目的通信工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的通信工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-daily-log-tool" title="项目的工作日志工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的工作日志工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-direct-costs-tool" title="项目的直接成本工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的直接成本工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-drawings-tool" title="项目的图纸工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的图纸工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-funding-tool" title="项目的资金工具有哪细分权限?"><span class="mt-icon-article-none"></span>项目的资金工具有哪细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-meetings-tool" title="项目的会议工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的会议工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-observations-tool" title="项目的观察任务工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的观察任务工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-photos-tool" title="项目的照片工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的照片工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-prime-contracts-tool" title="项目的主合同工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的主合同工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-punch-list-tool" title="项目的尾项清单工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的尾项清单工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-rfis-tool" title="项目的 RFI 工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的 RFI 工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-submittals-tool" title="项目的送审工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的送审工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-transmittals-tool" title="项目的传输记录工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的传输记录工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-assignable-permissions-template" title="什么是可分配权限模板?"><span class="mt-icon-article-none"></span>什么是可分配权限模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-permissions-template" title="什么是权限模板?"><span class="mt-icon-article-none"></span>什么是权限模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="哪些 Procore 工具支持细分权限?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-can-see-users-listed-in-a-project-directory" title="谁可以查看项目目录中列出的用户?"><span class="mt-icon-article-none"></span>谁可以查看项目目录中列出的用户?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-pfcp-cash-flow-forecasting mt-tags-single"><span id="pfcp-cash-flow-forecasting"></span><h5>pfcp-cash-flow-forecasting</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-cash-flow-forecasts-and-capital-plans-interact-in-portfolio-financials-and-capital-planning" title="现金流预测和资金规划如何在综合财务管理和资金规划中相互作用?"><span class="mt-icon-article-none"></span>现金流预测和资金规划如何在综合财务管理和资金规划中相互作用?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-pfcp-dashboard"><span id="pfcp-dashboard"></span><h5>pfcp-dashboard</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-customize-the-project-type-options-in-portfolio-financials-and-capital-planning" title="我能否在综合财务管理和资金规划中自定义项目类型选项?"><span class="mt-icon-article-none"></span>我能否在综合财务管理和资金规划中自定义项目类型选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enter-budgeted-projects-for-the-year-in-portfolio-financials-and-capital-planning" title="如何在综合财务管理和资金规划中输入当年的预算项目?"><span class="mt-icon-article-none"></span>如何在综合财务管理和资金规划中输入当年的预算项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-locate-an-archived-project-in-portfolio-financials-and-capital-planning" title="如何在综合财务管理和资金规划中找到存档的项目?"><span class="mt-icon-article-none"></span>如何在综合财务管理和资金规划中找到存档的项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-switch-between-portfolio-financials-and-project-management-toolkits-in-procore" title="如何在 Procore 中的综合财务管理和项目管理工具包之间切换?"><span class="mt-icon-article-none"></span>如何在 Procore 中的综合财务管理和项目管理工具包之间切换?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-my-team-member-see-a-project-in-portfolio-financials-and-capital-planning" title="为什么我的团队成员无法查看综合财务管理和资金规划中的项目?"><span class="mt-icon-article-none"></span>为什么我的团队成员无法查看综合财务管理和资金规划中的项目?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-pfcp-planning"><span id="pfcp-planning"></span><h5>pfcp-planning</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-cash-flow-forecasts-and-capital-plans-interact-in-portfolio-financials-and-capital-planning" title="现金流预测和资金规划如何在综合财务管理和资金规划中相互作用?"><span class="mt-icon-article-none"></span>现金流预测和资金规划如何在综合财务管理和资金规划中相互作用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-data-points-for-capital-plans-in-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划中资金规划的数据点是什么?"><span class="mt-icon-article-none"></span>综合财务管理和资金规划中资金规划的数据点是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-arrows-mean-on-the-project-comparison-tab-of-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划的“项目比较”标签页中的箭头是什么意思?"><span class="mt-icon-article-none"></span>综合财务管理和资金规划的“项目比较”标签页中的箭头是什么意思?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-example-use-case-for-project-comaprison-in-portfolio-financials-and-capital-planning" title="什么是综合财务管理和资金规划中项目比较的示例用例?"><span class="mt-icon-article-none"></span>什么是综合财务管理和资金规划中项目比较的示例用例?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-expand-the-awarded-value-row-in-portfolio-financials-and-capital-planning" title="为什么我不能在综合财务管理和资金规划中展开“中标值”行?"><span class="mt-icon-article-none"></span>为什么我不能在综合财务管理和资金规划中展开“中标值”行?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-pfcp-reporting"><span id="pfcp-reporting"></span><h5>pfcp-reporting</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enter-budgeted-projects-for-the-year-in-portfolio-financials-and-capital-planning" title="如何在综合财务管理和资金规划中输入当年的预算项目?"><span class="mt-icon-article-none"></span>如何在综合财务管理和资金规划中输入当年的预算项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-locate-an-archived-project-in-portfolio-financials-and-capital-planning" title="如何在综合财务管理和资金规划中找到存档的项目?"><span class="mt-icon-article-none"></span>如何在综合财务管理和资金规划中找到存档的项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-some-best-practices-for-reporting-in-portfolio-financials-and-capital-planning" title="综合财务管理务和资金规划报告的一些最佳实践是什么?"><span class="mt-icon-article-none"></span>综合财务管理务和资金规划报告的一些最佳实践是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-some-examples-of-reports-i-can-generate-in-portfolio-financials-and-capital-planning" title="可以在综合财务管理和资金规划中生成哪些报告示例?"><span class="mt-icon-article-none"></span>可以在综合财务管理和资金规划中生成哪些报告示例?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-data-points-available-for-custom-reports-in-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划中的自定义报告可使用哪些数据点?"><span class="mt-icon-article-none"></span>综合财务管理和资金规划中的自定义报告可使用哪些数据点?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-arrows-mean-on-the-project-comparison-tab-of-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划的“项目比较”标签页中的箭头是什么意思?"><span class="mt-icon-article-none"></span>综合财务管理和资金规划的“项目比较”标签页中的箭头是什么意思?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-example-use-case-for-project-comaprison-in-portfolio-financials-and-capital-planning" title="什么是综合财务管理和资金规划中项目比较的示例用例?"><span class="mt-icon-article-none"></span>什么是综合财务管理和资金规划中项目比较的示例用例?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-project-cost-reporting-in-portfolio-financials" title="什么是综合财务管理中的项目成本报告?"><span class="mt-icon-article-none"></span>什么是综合财务管理中的项目成本报告?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-expand-the-awarded-value-row-in-portfolio-financials-and-capital-planning" title="为什么我不能在综合财务管理和资金规划中展开“中标值”行?"><span class="mt-icon-article-none"></span>为什么我不能在综合财务管理和资金规划中展开“中标值”行?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-export-an-item-from-portfolio-financials-and-capital-planning" title="为什么我不能从综合财务管理和资金规划中导出项目?"><span class="mt-icon-article-none"></span>为什么我不能从综合财务管理和资金规划中导出项目?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-photos"><span id="photos"></span><h5>photos</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-mark-all-photos-private-in-the-projects-photos-tool" title="我可以在项目的照片工具中将所有照片标记为“私密”吗?"><span class="mt-icon-article-none"></span>我可以在项目的照片工具中将所有照片标记为“私密”吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-change-my-web-browsers-default-email-client-for-mailto-links" title="如何为 mailto 链接更改我的 Web 浏览器的默认电子邮件客户端?"><span class="mt-icon-article-none"></span>如何为 mailto 链接更改我的 Web 浏览器的默认电子邮件客户端?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-multi-tiered-locations" title="什么是多层地点?"><span class="mt-icon-article-none"></span>什么是多层地点?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-does-the-search-box-search-for" title="照片工具中的“搜索”框会搜索什么?"><span class="mt-icon-article-none"></span>照片工具中的“搜索”框会搜索什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-photos-tool" title="项目的照片工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的照片工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="什么是 Procore 回收站?"><span class="mt-icon-article-none"></span>什么是 Procore 回收站?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-standard-trades-are-available-in-procore" title="Procore 中提供哪些标准行业?"><span class="mt-icon-article-none"></span>Procore 中提供哪些标准行业?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-can-i-find-the-email-address-to-send-photos-documents-and-emails-to-procore" title="在哪里可以找到用于向 Procore 发送工作日志、照片、文档和电子邮件的电子邮件地址?"><span class="mt-icon-article-none"></span>在哪里可以找到用于向 Procore 发送工作日志、照片、文档和电子邮件的电子邮件地址?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="哪些 Procore 工具支持细分权限?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持细分权限?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-planroom"><span id="planroom"></span><h5>planroom</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-bidders-submit-their-bid-via-email-or-must-they-sign-in" title="投标人可以通过电子邮件提交投标还是必须登录?"><span class="mt-icon-article-none"></span>投标人可以通过电子邮件提交投标还是必须登录?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-remove-a-line-item-from-a-bid" title="能否从投标中移除明细项?"><span class="mt-icon-article-none"></span>能否从投标中移除明细项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-my-company-receive-bid-invitations-through-the-procore-construction-network" title="我的公司如何通过 Procore 建设工程网络接收投标邀请?"><span class="mt-icon-article-none"></span>我的公司如何通过 Procore 建设工程网络接收投标邀请?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-unable-to-download-and-open-a-zip-file-from-procore" title="为什么我无法从 Procore 下载和打开 .ZIP 文件?"><span class="mt-icon-article-none"></span>为什么我无法从 Procore 下载和打开 .ZIP 文件?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-portfolio"><span id="portfolio"></span><h5>portfolio</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-add-personal-avatars-or-profile-photos-for-other-users" title="我可以为其他用户添加个人头像或个人资料照片吗?"><span class="mt-icon-article-none"></span>我可以为其他用户添加个人头像或个人资料照片吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-change-the-language-of-my-company-project-or-user-in-procore" title="我可以在 Procore 中更改公司、项目或用户语言吗?"><span class="mt-icon-article-none"></span>我可以在 Procore 中更改公司、项目或用户语言吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-set-up-multiple-favorites-lists-for-my-project-tools-to-apply-to-different-projects" title="是否可以为我的项目工具设置多个收藏夹列表,以应用于不同的项目?"><span class="mt-icon-article-none"></span>是否可以为我的项目工具设置多个收藏夹列表,以应用于不同的项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-an-avatar-or-profile-photo-to-procore" title="如何向 Procore 添加头像或个人资料照片?"><span class="mt-icon-article-none"></span>如何向 Procore 添加头像或个人资料照片?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-tools-to-my-favorites-list-in-procore" title="如何在 Procore 中将工具添加到收藏夹列表?"><span class="mt-icon-article-none"></span>如何在 Procore 中将工具添加到收藏夹列表?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-determine-the-latitude-and-longitude-values-on-an-address" title="如何确定地址的纬度和经度值?"><span class="mt-icon-article-none"></span>如何确定地址的纬度和经度值?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-know-if-my-docusign-account-is-synced-to-procores" title="如何了解我的 DocuSign 账户是否与 Procore 同步?"><span class="mt-icon-article-none"></span>如何了解我的 DocuSign 账户是否与 Procore 同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-use-the-navigation-bar-to-go-back-to-the-company-portfolio" title="如何使用导航栏返回公司项目集合?"><span class="mt-icon-article-none"></span>如何使用导航栏返回公司项目集合?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/is-there-a-way-to-see-all-the-open-items-in-procore-assigned-to-me" title="是否有办法查看 Procore 中分配给我的所有未完成项?"><span class="mt-icon-article-none"></span>是否有办法查看 Procore 中分配给我的所有未完成项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-project-roles" title="什么是自定义项目角色?"><span class="mt-icon-article-none"></span>什么是自定义项目角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-threshold-values-for-the-portfolio-tools-health-dashboard" title="什么是项目集合工具的健康仪表板的阈值?"><span class="mt-icon-article-none"></span>什么是项目集合工具的健康仪表板的阈值?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-code-field-on-the-project-creation-page" title="项目创建页面上的“Code”字段是什么?"><span class="mt-icon-article-none"></span>项目创建页面上的“Code”字段是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-languages-are-available-in-procore" title="Procore 中有哪些语言可用?"><span class="mt-icon-article-none"></span>Procore 中有哪些语言可用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what's-the-difference-between-a-job-a-parent-job-and-a-sub-job" title="作业、父作业和子作业之间有何区别?"><span class="mt-icon-article-none"></span>作业、父作业和子作业之间有何区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-filters-are-supported-in-the-portfolio-tools-views" title="项目集合工具的视图中支持哪些筛选器?"><span class="mt-icon-article-none"></span>项目集合工具的视图中支持哪些筛选器?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-add-procore-tools-to-my-favorites-list" title="为什么我不能将 Procore 工具添加到收藏夹列表中?"><span class="mt-icon-article-none"></span>为什么我不能将 Procore 工具添加到收藏夹列表中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-or-activate-procore-projects" title="为什么我无法创建或激活 Procore 项目?"><span class="mt-icon-article-none"></span>为什么我无法创建或激活 Procore 项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-all-my-favorite-tools-on-a-project" title="为什么我在项目中看不到所有收藏的工具?"><span class="mt-icon-article-none"></span>为什么我在项目中看不到所有收藏的工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-favorites-tab-in-my-profile-settings" title="为什么在“我的个人资料设置”中看不到“收藏夹”标签页?"><span class="mt-icon-article-none"></span>为什么在“我的个人资料设置”中看不到“收藏夹”标签页?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-financial-health-section-of-the-health-dashboard-not-configured" title="为什么没有配置健康仪表板的财务健康部分?"><span class="mt-icon-article-none"></span>为什么没有配置健康仪表板的财务健康部分?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-open-items-list-not-showing-tasks-that-have-been-assigned-to-me" title="为什么“我的未完成项”列表不显示已分配给我的任务?"><span class="mt-icon-article-none"></span>为什么“我的未完成项”列表不显示已分配给我的任务?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-the-send-to-erp-button-grayed-out-in-the-project-creation-assistant" title="为什么“发送到 ERP”按钮变暗并且在项目创建助手中不可用?"><span class="mt-icon-article-none"></span>为什么“发送到 ERP”按钮变暗并且在项目创建助手中不可用?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-portfolio-financials"><span id="portfolio-financials"></span><h5>portfolio-financials</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-granular-permissions-available-in-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划中是否提供细分权限?"><span class="mt-icon-article-none"></span>综合财务管理和资金规划中是否提供细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-customize-the-project-type-options-in-portfolio-financials-and-capital-planning" title="我能否在综合财务管理和资金规划中自定义项目类型选项?"><span class="mt-icon-article-none"></span>我能否在综合财务管理和资金规划中自定义项目类型选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-edit-my-change-order-or-invoice-in-portfolio-financials" title="我可以在综合财务管理中编辑我的变更通知单或发票吗?"><span class="mt-icon-article-none"></span>我可以在综合财务管理中编辑我的变更通知单或发票吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-include-deducts-in-my-bid-submission-in-the-bid-room" title="我能否在投标室的投标递交中包含扣除额?"><span class="mt-icon-article-none"></span>我能否在投标室的投标递交中包含扣除额?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-print-or-export-a-copy-of-my-bid-in-the-bid-room" title="我能否在投标室打印或导出我的投标副本?"><span class="mt-icon-article-none"></span>我能否在投标室打印或导出我的投标副本?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-receive-a-daily-activity-summary-for-portfolio-financials-and-capital-planning" title="我能否接收综合财务管理和资金规划的每日活动摘要?"><span class="mt-icon-article-none"></span>我能否接收综合财务管理和资金规划的每日活动摘要?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-milestones-in-portfolio-financials-sync-with-my-external-project-schedule" title="综合财务管理中的里程碑是否与我的外部项目进度计划同步?"><span class="mt-icon-article-none"></span>综合财务管理中的里程碑是否与我的外部项目进度计划同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-templates-created-in-portfolio-financials" title="如何在综合财务管理中创建模板?"><span class="mt-icon-article-none"></span>如何在综合财务管理中创建模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-bidders-get-locked-out-of-a-sealed-bid-room-in-portfolio-financials" title="如何将投标人锁定在综合财务管理的密封投标室之外?"><span class="mt-icon-article-none"></span>如何将投标人锁定在综合财务管理的密封投标室之外?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-add-custom-bid-form-templates-for-the-bid-room-in-portfolio-financials" title="如何为综合财务管理中的投标室添加自定义投标表单模板?"><span class="mt-icon-article-none"></span>如何为综合财务管理中的投标室添加自定义投标表单模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-add-custom-cost-tracker-templates-in-portfolio-financials" title="如何在综合财务管理中添加自定义成本跟踪器模板?"><span class="mt-icon-article-none"></span>如何在综合财务管理中添加自定义成本跟踪器模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-budget-individual-values-within-a-cost-item-in-portfolio-financials" title="如何为综合财务管理中成本项的单个值编制预算?"><span class="mt-icon-article-none"></span>如何为综合财务管理中成本项的单个值编制预算?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-grant-a-limited-user-access-to-a-specific-bid-room-in-portfolio-financials" title="如何授予“有限”用户访问综合财务管理中特定投标室的权限?"><span class="mt-icon-article-none"></span>如何授予“有限”用户访问综合财务管理中特定投标室的权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-handle-cm-fees-in-portfolio-financials" title="我如何处理综合财务管理中的 CM 费用?"><span class="mt-icon-article-none"></span>我如何处理综合财务管理中的 CM 费用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-manually-add-a-bid-in-portfolio-financials" title="如何在综合财务管理中手动添加投标?"><span class="mt-icon-article-none"></span>如何在综合财务管理中手动添加投标?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-monitor-activity-across-all-of-my-buildings-in-portfolio-financials-and-capital-planning" title="如何在综合财务管理和资金规划中监控我所有建筑物的活动?"><span class="mt-icon-article-none"></span>如何在综合财务管理和资金规划中监控我所有建筑物的活动?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-request-a-folder-template-for-documents-in-my-portfolio-financials-projects" title="如何为综合财务管理项目中的文档请求文件夹模板?"><span class="mt-icon-article-none"></span>如何为综合财务管理项目中的文档请求文件夹模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-run-a-best-and-final-round-of-bidding-in-portfolio-financials" title="如何在综合财务管理中进行最佳和最后一轮投标?"><span class="mt-icon-article-none"></span>如何在综合财务管理中进行最佳和最后一轮投标?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-set-up-a-tenant-construction-chargeback-in-the-cost-tracker" title="如何在成本跟踪器中设置租户施工退款?"><span class="mt-icon-article-none"></span>如何在成本跟踪器中设置租户施工退款?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-share-access-to-a-bid-room-in-portfolio-financials" title="如何在综合财务管理中共享对投标室的访问权限?"><span class="mt-icon-article-none"></span>如何在综合财务管理中共享对投标室的访问权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-share-access-to-a-contract-room-in-portfolio-financials" title="如何在综合财务管理中共享对合同室的访问权限?"><span class="mt-icon-article-none"></span>如何在综合财务管理中共享对合同室的访问权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-unaward-a-bid-or-contract-in-portfolio-financials" title="如何在综合财务管理中解除投标或合同?"><span class="mt-icon-article-none"></span>如何在综合财务管理中解除投标或合同?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-approval-workflows-get-set-up-in-portfolio-financials" title="如何在综合财务管理中设置审批工作流?"><span class="mt-icon-article-none"></span>如何在综合财务管理中设置审批工作流?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-bid-approvals-work-in-portfolio-financials" title="综合财务管理中的投标审批如何运作?"><span class="mt-icon-article-none"></span>综合财务管理中的投标审批如何运作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-budget-approvals-work-in-portfolio-financials" title="综合财务管理中的预算审批如何运作?"><span class="mt-icon-article-none"></span>综合财务管理中的预算审批如何运作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-cash-flow-forecasts-and-capital-plans-interact-in-portfolio-financials-and-capital-planning" title="现金流预测和资金规划如何在综合财务管理和资金规划中相互作用?"><span class="mt-icon-article-none"></span>现金流预测和资金规划如何在综合财务管理和资金规划中相互作用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-change-order-approvals-work-in-portfolio-financials" title="综合财务管理中的变更通知单审批如何运作?"><span class="mt-icon-article-none"></span>综合财务管理中的变更通知单审批如何运作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-contract-approvals-work-in-portfolio-financials" title="综合财务管理中的合同审批如何运作?"><span class="mt-icon-article-none"></span>综合财务管理中的合同审批如何运作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-a-building-to-my-account-in-portfolio-financials" title="如何在综合财务管理中将建筑添加到我的账户?"><span class="mt-icon-article-none"></span>如何在综合财务管理中将建筑添加到我的账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-additional-contacts-to-a-vendor-profile-in-portfolio-financials" title="如何向综合财务管理中的供应商配置文件添加其他联系人?"><span class="mt-icon-article-none"></span>如何向综合财务管理中的供应商配置文件添加其他联系人?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-backfill-an-invoice-from-yardi-to-portfolio-financials" title="如何将来自 Yardi 的发票回填到综合财务管理?"><span class="mt-icon-article-none"></span>如何将来自 Yardi 的发票回填到综合财务管理?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-edit-an-initial-award-amount-for-a-contract-in-portfolio-financials" title="如何在综合财务管理中编辑合同初始奖励金额?"><span class="mt-icon-article-none"></span>如何在综合财务管理中编辑合同初始奖励金额?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enable-cost-allocations-and-components-for-a-portfolio-financials-project" title="如何为综合财务管理项目启用成本分配和组件?"><span class="mt-icon-article-none"></span>如何为综合财务管理项目启用成本分配和组件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enable-retainage-for-a-contract-in-portfolio-financials" title="如何在综合财务管理中为合同启用保留金?"><span class="mt-icon-article-none"></span>如何在综合财务管理中为合同启用保留金?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enter-a-credit-invoice-in-portfolio-financials" title="如何在综合财务管理中输入信用发票?"><span class="mt-icon-article-none"></span>如何在综合财务管理中输入信用发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enter-budgeted-projects-for-the-year-in-portfolio-financials-and-capital-planning" title="如何在综合财务管理和资金规划中输入当年的预算项目?"><span class="mt-icon-article-none"></span>如何在综合财务管理和资金规划中输入当年的预算项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-know-if-an-rfi-that-i-posted-in-the-bid-room-has-been-answered" title="我如何知道我在投标室发布的 RFI 是否已得到答复?"><span class="mt-icon-article-none"></span>我如何知道我在投标室发布的 RFI 是否已得到答复?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-locate-an-archived-project-in-portfolio-financials-and-capital-planning" title="如何在综合财务管理和资金规划中找到存档的项目?"><span class="mt-icon-article-none"></span>如何在综合财务管理和资金规划中找到存档的项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-log-in-to-portfolio-financials-and-capital-planning" title="如何登录综合财务管理和资金规划?"><span class="mt-icon-article-none"></span>如何登录综合财务管理和资金规划?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-navigate-to-a-bid-room-in-portfolio-financials" title="如何导航到综合财务管理中的投标室?"><span class="mt-icon-article-none"></span>如何导航到综合财务管理中的投标室?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-invoice-approvals-work-in-portfolio-financials" title="综合财务管理中的发票审批如何运作?"><span class="mt-icon-article-none"></span>综合财务管理中的发票审批如何运作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-run-a-sealed-bid-process-in-portfolio-financials" title="如何在综合财务管理中运行密封投标流程?"><span class="mt-icon-article-none"></span>如何在综合财务管理中运行密封投标流程?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-submit-change-orders-and-invoices-in-portfolio-financials" title="如何在综合财务管理中提交变更通知单和发票?"><span class="mt-icon-article-none"></span>如何在综合财务管理中提交变更通知单和发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-switch-between-portfolio-financials-and-project-management-toolkits-in-procore" title="如何在 Procore 中的综合财务管理和项目管理工具包之间切换?"><span class="mt-icon-article-none"></span>如何在 Procore 中的综合财务管理和项目管理工具包之间切换?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-approvals-in-portfolio-financials" title="什么是综合财务管理审批?"><span class="mt-icon-article-none"></span>什么是综合财务管理审批?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-cost-allocations-and-components-in-portfolio-financials" title="什么是综合财务管理中的成本分配和组件?"><span class="mt-icon-article-none"></span>什么是综合财务管理中的成本分配和组件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-milestone-dependencies-in-portfolio-financials-and-how-do-i-set-them" title="综合财务管理中的里程碑依赖项是什么?如何进行设置?"><span class="mt-icon-article-none"></span>综合财务管理中的里程碑依赖项是什么?如何进行设置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-some-best-practices-for-reporting-in-portfolio-financials-and-capital-planning" title="综合财务管理务和资金规划报告的一些最佳实践是什么?"><span class="mt-icon-article-none"></span>综合财务管理务和资金规划报告的一些最佳实践是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-some-examples-of-reports-i-can-generate-in-portfolio-financials-and-capital-planning" title="可以在综合财务管理和资金规划中生成哪些报告示例?"><span class="mt-icon-article-none"></span>可以在综合财务管理和资金规划中生成哪些报告示例?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-data-points-available-for-custom-reports-in-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划中的自定义报告可使用哪些数据点?"><span class="mt-icon-article-none"></span>综合财务管理和资金规划中的自定义报告可使用哪些数据点?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-data-points-for-capital-plans-in-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划中资金规划的数据点是什么?"><span class="mt-icon-article-none"></span>综合财务管理和资金规划中资金规划的数据点是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-permission-levels-for-team-members-in-portfolio-financials" title="综合财务管理中团队成员有哪些不同的权限级别?"><span class="mt-icon-article-none"></span>综合财务管理中团队成员有哪些不同的权限级别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-uncategorized-invoices-in-portfolio-financials" title="什么是综合财务管理中的未分类发票?"><span class="mt-icon-article-none"></span>什么是综合财务管理中的未分类发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-bidders-see-when-they-are-in-the-bid-room" title="投标人在投标室看到什么?"><span class="mt-icon-article-none"></span>投标人在投标室看到什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-does-hide-bidding-info-mean-for-someone-on-the-bid-room-team" title="“隐藏投标信息”对投标室团队中的某人意味着什么?"><span class="mt-icon-article-none"></span>“隐藏投标信息”对投标室团队中的某人意味着什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-arrows-mean-on-the-project-comparison-tab-of-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划的“项目比较”标签页中的箭头是什么意思?"><span class="mt-icon-article-none"></span>综合财务管理和资金规划的“项目比较”标签页中的箭头是什么意思?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-email-notifications-are-sent-for-approval-workflows-in-portfolio-financials" title="综合财务管理中的审批工作流会发送哪些电子邮件通知?"><span class="mt-icon-article-none"></span>综合财务管理中的审批工作流会发送哪些电子邮件通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-emails-are-sent-during-the-bidding-process-in-portfolio-financials" title="在综合财务管理的投标过程中会发送哪些电子邮件?"><span class="mt-icon-article-none"></span>在综合财务管理的投标过程中会发送哪些电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-example-use-case-for-project-comaprison-in-portfolio-financials-and-capital-planning" title="什么是综合财务管理和资金规划中项目比较的示例用例?"><span class="mt-icon-article-none"></span>什么是综合财务管理和资金规划中项目比较的示例用例?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-portfolio-financials" title="什么是综合财务管理?"><span class="mt-icon-article-none"></span>什么是综合财务管理?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procore-community" title="什么是 Procore 社区?"><span class="mt-icon-article-none"></span>什么是 Procore 社区?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-project-cost-reporting-in-portfolio-financials" title="什么是综合财务管理中的项目成本报告?"><span class="mt-icon-article-none"></span>什么是综合财务管理中的项目成本报告?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-adjustments-section-on-a-bid-form-in-the-bid-room" title="投标室投标表单上的“调整”部分包括哪些内容?"><span class="mt-icon-article-none"></span>投标室投标表单上的“调整”部分包括哪些内容?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-bid-room-in-portfolio-financials" title="综合财务管理中的投标室是什么?"><span class="mt-icon-article-none"></span>综合财务管理中的投标室是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-contract-room-in-portfolio-financials" title="什么是综合财务管理中的合同室?"><span class="mt-icon-article-none"></span>什么是综合财务管理中的合同室?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-betweeen-baseline-and-forecast-or-actual-dates-for-milestones-in-portfolio-financials" title="综合财务管理中里程碑的“基准”和“预测或实际”日期之间有何区别?"><span class="mt-icon-article-none"></span>综合财务管理中里程碑的“基准”和“预测或实际”日期之间有何区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-my-tasks-page-in-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划中的“我的任务”页面是什么?"><span class="mt-icon-article-none"></span>综合财务管理和资金规划中的“我的任务”页面是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-project-page-in-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划中的项目页面是什么?"><span class="mt-icon-article-none"></span>综合财务管理和资金规划中的项目页面是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-project-team-in-portfolio-financials-and-what-are-the-varying-permission-levels" title="综合财务管理中的项目团队是什么?有哪些不同的权限级别?"><span class="mt-icon-article-none"></span>综合财务管理中的项目团队是什么?有哪些不同的权限级别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-send-to-accounts-payable-feature-in-portfolio-financials" title="综合财务管理中的“发送到应付会计”功能是什么?"><span class="mt-icon-article-none"></span>综合财务管理中的“发送到应付会计”功能是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-do-if-i-forgot-my-password-for-portfolio-financials" title="如果我忘记了综合财务管理的密码,该怎么办?"><span class="mt-icon-article-none"></span>如果我忘记了综合财务管理的密码,该怎么办?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-know-about-approval-workflows-in-portfolio-financials" title="关于综合财务管理中的审批工作流,我应该了解什么?"><span class="mt-icon-article-none"></span>关于综合财务管理中的审批工作流,我应该了解什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-know-about-bidding-in-portfolio-financials" title="关于综合财务管理中的投标,我应该知道什么?"><span class="mt-icon-article-none"></span>关于综合财务管理中的投标,我应该知道什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-know-about-change-orders-in-portfolio-financials" title="关于综合财务管理中的变更通知单,我应该知道什么?"><span class="mt-icon-article-none"></span>关于综合财务管理中的变更通知单,我应该知道什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-know-about-invoicing-in-portfolio-financials" title="关于综合财务管理中的开发票,我应该知道什么?"><span class="mt-icon-article-none"></span>关于综合财务管理中的开发票,我应该知道什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-know-about-the-contract-room-in-portfolio-financials" title="关于综合财务管理中的合同室,我应该知道什么?"><span class="mt-icon-article-none"></span>关于综合财务管理中的合同室,我应该知道什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-will-i-receive-emails-about-the-project-i-am-bidding-on-in-portfolio-financials" title="什么时候会收到有关我在综合财务管理中投标的项目的电子邮件?"><span class="mt-icon-article-none"></span>什么时候会收到有关我在综合财务管理中投标的项目的电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-not-receiving-emails-from-portfolio-financials" title="为什么我没有收到来自综合财务管理和资金规划的电子邮件?"><span class="mt-icon-article-none"></span>为什么我没有收到来自综合财务管理和资金规划的电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-expand-the-awarded-value-row-in-portfolio-financials-and-capital-planning" title="为什么我不能在综合财务管理和资金规划中展开“中标值”行?"><span class="mt-icon-article-none"></span>为什么我不能在综合财务管理和资金规划中展开“中标值”行?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-export-an-item-from-portfolio-financials-and-capital-planning" title="为什么我不能从综合财务管理和资金规划中导出项目?"><span class="mt-icon-article-none"></span>为什么我不能从综合财务管理和资金规划中导出项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-log-in-to-portfolio-financials-and-capital-planning" title="为什么我无法登录“综合财务管理”和“资金规划”?"><span class="mt-icon-article-none"></span>为什么我无法登录“综合财务管理”和“资金规划”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-bid-room-in-portfolio-financials" title="为什么我在综合财务管理中看不到投标室?"><span class="mt-icon-article-none"></span>为什么我在综合财务管理中看不到投标室?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-contract-room-in-portfolio-financials" title="为什么我在综合财务管理中看不到合同室?"><span class="mt-icon-article-none"></span>为什么我在综合财务管理中看不到合同室?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-my-team-member-see-a-project-in-portfolio-financials-and-capital-planning" title="为什么我的团队成员无法查看综合财务管理和资金规划中的项目?"><span class="mt-icon-article-none"></span>为什么我的团队成员无法查看综合财务管理和资金规划中的项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-my-vendor-access-the-bid-room-in-portfolio-financials" title="为什么我的供应商无法访问综合财务管理中的投标室?"><span class="mt-icon-article-none"></span>为什么我的供应商无法访问综合财务管理中的投标室?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/will-dates-from-a-bid-room-be-added-to-the-projects-milestones-in-portfolio-financials" title="投标室中的日期是否会添加到综合财务管理中的项目里程碑?"><span class="mt-icon-article-none"></span>投标室中的日期是否会添加到综合财务管理中的项目里程碑?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-portfolio-financials-approval-workflows"><span id="portfolio-financials-approval-workflows"></span><h5>portfolio-financials-approval-workflows</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-approval-workflows-get-set-up-in-portfolio-financials" title="如何在综合财务管理中设置审批工作流?"><span class="mt-icon-article-none"></span>如何在综合财务管理中设置审批工作流?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-bid-approvals-work-in-portfolio-financials" title="综合财务管理中的投标审批如何运作?"><span class="mt-icon-article-none"></span>综合财务管理中的投标审批如何运作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-budget-approvals-work-in-portfolio-financials" title="综合财务管理中的预算审批如何运作?"><span class="mt-icon-article-none"></span>综合财务管理中的预算审批如何运作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-change-order-approvals-work-in-portfolio-financials" title="综合财务管理中的变更通知单审批如何运作?"><span class="mt-icon-article-none"></span>综合财务管理中的变更通知单审批如何运作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-contract-approvals-work-in-portfolio-financials" title="综合财务管理中的合同审批如何运作?"><span class="mt-icon-article-none"></span>综合财务管理中的合同审批如何运作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-invoice-approvals-work-in-portfolio-financials" title="综合财务管理中的发票审批如何运作?"><span class="mt-icon-article-none"></span>综合财务管理中的发票审批如何运作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-approvals-in-portfolio-financials" title="什么是综合财务管理审批?"><span class="mt-icon-article-none"></span>什么是综合财务管理审批?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-email-notifications-are-sent-for-approval-workflows-in-portfolio-financials" title="综合财务管理中的审批工作流会发送哪些电子邮件通知?"><span class="mt-icon-article-none"></span>综合财务管理中的审批工作流会发送哪些电子邮件通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-my-tasks-page-in-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划中的“我的任务”页面是什么?"><span class="mt-icon-article-none"></span>综合财务管理和资金规划中的“我的任务”页面是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-know-about-approval-workflows-in-portfolio-financials" title="关于综合财务管理中的审批工作流,我应该了解什么?"><span class="mt-icon-article-none"></span>关于综合财务管理中的审批工作流,我应该了解什么?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-portfolio-financials-bid-room"><span id="portfolio-financials-bid-room"></span><h5>portfolio-financials-bid-room</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-include-deducts-in-my-bid-submission-in-the-bid-room" title="我能否在投标室的投标递交中包含扣除额?"><span class="mt-icon-article-none"></span>我能否在投标室的投标递交中包含扣除额?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-print-or-export-a-copy-of-my-bid-in-the-bid-room" title="我能否在投标室打印或导出我的投标副本?"><span class="mt-icon-article-none"></span>我能否在投标室打印或导出我的投标副本?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-bidders-get-locked-out-of-a-sealed-bid-room-in-portfolio-financials" title="如何将投标人锁定在综合财务管理的密封投标室之外?"><span class="mt-icon-article-none"></span>如何将投标人锁定在综合财务管理的密封投标室之外?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-add-custom-bid-form-templates-for-the-bid-room-in-portfolio-financials" title="如何为综合财务管理中的投标室添加自定义投标表单模板?"><span class="mt-icon-article-none"></span>如何为综合财务管理中的投标室添加自定义投标表单模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-grant-a-limited-user-access-to-a-specific-bid-room-in-portfolio-financials" title="如何授予“有限”用户访问综合财务管理中特定投标室的权限?"><span class="mt-icon-article-none"></span>如何授予“有限”用户访问综合财务管理中特定投标室的权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-manually-add-a-bid-in-portfolio-financials" title="如何在综合财务管理中手动添加投标?"><span class="mt-icon-article-none"></span>如何在综合财务管理中手动添加投标?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-run-a-best-and-final-round-of-bidding-in-portfolio-financials" title="如何在综合财务管理中进行最佳和最后一轮投标?"><span class="mt-icon-article-none"></span>如何在综合财务管理中进行最佳和最后一轮投标?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-share-access-to-a-bid-room-in-portfolio-financials" title="如何在综合财务管理中共享对投标室的访问权限?"><span class="mt-icon-article-none"></span>如何在综合财务管理中共享对投标室的访问权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-unaward-a-bid-or-contract-in-portfolio-financials" title="如何在综合财务管理中解除投标或合同?"><span class="mt-icon-article-none"></span>如何在综合财务管理中解除投标或合同?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-bid-approvals-work-in-portfolio-financials" title="综合财务管理中的投标审批如何运作?"><span class="mt-icon-article-none"></span>综合财务管理中的投标审批如何运作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-additional-contacts-to-a-vendor-profile-in-portfolio-financials" title="如何向综合财务管理中的供应商配置文件添加其他联系人?"><span class="mt-icon-article-none"></span>如何向综合财务管理中的供应商配置文件添加其他联系人?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enable-retainage-for-a-contract-in-portfolio-financials" title="如何在综合财务管理中为合同启用保留金?"><span class="mt-icon-article-none"></span>如何在综合财务管理中为合同启用保留金?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-know-if-an-rfi-that-i-posted-in-the-bid-room-has-been-answered" title="我如何知道我在投标室发布的 RFI 是否已得到答复?"><span class="mt-icon-article-none"></span>我如何知道我在投标室发布的 RFI 是否已得到答复?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-navigate-to-a-bid-room-in-portfolio-financials" title="如何导航到综合财务管理中的投标室?"><span class="mt-icon-article-none"></span>如何导航到综合财务管理中的投标室?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-run-a-sealed-bid-process-in-portfolio-financials" title="如何在综合财务管理中运行密封投标流程?"><span class="mt-icon-article-none"></span>如何在综合财务管理中运行密封投标流程?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-submit-change-orders-and-invoices-in-portfolio-financials" title="如何在综合财务管理中提交变更通知单和发票?"><span class="mt-icon-article-none"></span>如何在综合财务管理中提交变更通知单和发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-bidders-see-when-they-are-in-the-bid-room" title="投标人在投标室看到什么?"><span class="mt-icon-article-none"></span>投标人在投标室看到什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-does-hide-bidding-info-mean-for-someone-on-the-bid-room-team" title="“隐藏投标信息”对投标室团队中的某人意味着什么?"><span class="mt-icon-article-none"></span>“隐藏投标信息”对投标室团队中的某人意味着什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-emails-are-sent-during-the-bidding-process-in-portfolio-financials" title="在综合财务管理的投标过程中会发送哪些电子邮件?"><span class="mt-icon-article-none"></span>在综合财务管理的投标过程中会发送哪些电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-adjustments-section-on-a-bid-form-in-the-bid-room" title="投标室投标表单上的“调整”部分包括哪些内容?"><span class="mt-icon-article-none"></span>投标室投标表单上的“调整”部分包括哪些内容?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-bid-room-in-portfolio-financials" title="综合财务管理中的投标室是什么?"><span class="mt-icon-article-none"></span>综合财务管理中的投标室是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-know-about-bidding-in-portfolio-financials" title="关于综合财务管理中的投标,我应该知道什么?"><span class="mt-icon-article-none"></span>关于综合财务管理中的投标,我应该知道什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-will-i-receive-emails-about-the-project-i-am-bidding-on-in-portfolio-financials" title="什么时候会收到有关我在综合财务管理中投标的项目的电子邮件?"><span class="mt-icon-article-none"></span>什么时候会收到有关我在综合财务管理中投标的项目的电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-bid-room-in-portfolio-financials" title="为什么我在综合财务管理中看不到投标室?"><span class="mt-icon-article-none"></span>为什么我在综合财务管理中看不到投标室?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-my-vendor-access-the-bid-room-in-portfolio-financials" title="为什么我的供应商无法访问综合财务管理中的投标室?"><span class="mt-icon-article-none"></span>为什么我的供应商无法访问综合财务管理中的投标室?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-portfolio-financials-contract-room"><span id="portfolio-financials-contract-room"></span><h5>portfolio-financials-contract-room</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-edit-my-change-order-or-invoice-in-portfolio-financials" title="我可以在综合财务管理中编辑我的变更通知单或发票吗?"><span class="mt-icon-article-none"></span>我可以在综合财务管理中编辑我的变更通知单或发票吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-handle-cm-fees-in-portfolio-financials" title="我如何处理综合财务管理中的 CM 费用?"><span class="mt-icon-article-none"></span>我如何处理综合财务管理中的 CM 费用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-share-access-to-a-contract-room-in-portfolio-financials" title="如何在综合财务管理中共享对合同室的访问权限?"><span class="mt-icon-article-none"></span>如何在综合财务管理中共享对合同室的访问权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-unaward-a-bid-or-contract-in-portfolio-financials" title="如何在综合财务管理中解除投标或合同?"><span class="mt-icon-article-none"></span>如何在综合财务管理中解除投标或合同?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-contract-approvals-work-in-portfolio-financials" title="综合财务管理中的合同审批如何运作?"><span class="mt-icon-article-none"></span>综合财务管理中的合同审批如何运作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-edit-an-initial-award-amount-for-a-contract-in-portfolio-financials" title="如何在综合财务管理中编辑合同初始奖励金额?"><span class="mt-icon-article-none"></span>如何在综合财务管理中编辑合同初始奖励金额?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enable-retainage-for-a-contract-in-portfolio-financials" title="如何在综合财务管理中为合同启用保留金?"><span class="mt-icon-article-none"></span>如何在综合财务管理中为合同启用保留金?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enter-a-credit-invoice-in-portfolio-financials" title="如何在综合财务管理中输入信用发票?"><span class="mt-icon-article-none"></span>如何在综合财务管理中输入信用发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-will-i-know-when-my-invoice-or-change-order-is-approved-or-rejected-in-portfolio-financials" title="我如何知道我的发票或变更通知单何时在综合财务管理中被批准或拒绝?"><span class="mt-icon-article-none"></span>我如何知道我的发票或变更通知单何时在综合财务管理中被批准或拒绝?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-contract-room-in-portfolio-financials" title="什么是综合财务管理中的合同室?"><span class="mt-icon-article-none"></span>什么是综合财务管理中的合同室?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-send-to-accounts-payable-feature-in-portfolio-financials" title="综合财务管理中的“发送到应付会计”功能是什么?"><span class="mt-icon-article-none"></span>综合财务管理中的“发送到应付会计”功能是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-know-about-change-orders-in-portfolio-financials" title="关于综合财务管理中的变更通知单,我应该知道什么?"><span class="mt-icon-article-none"></span>关于综合财务管理中的变更通知单,我应该知道什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-know-about-invoicing-in-portfolio-financials" title="关于综合财务管理中的开发票,我应该知道什么?"><span class="mt-icon-article-none"></span>关于综合财务管理中的开发票,我应该知道什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-know-about-the-contract-room-in-portfolio-financials" title="关于综合财务管理中的合同室,我应该知道什么?"><span class="mt-icon-article-none"></span>关于综合财务管理中的合同室,我应该知道什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-contract-room-in-portfolio-financials" title="为什么我在综合财务管理中看不到合同室?"><span class="mt-icon-article-none"></span>为什么我在综合财务管理中看不到合同室?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-portfolio-financials-cost-allocations"><span id="portfolio-financials-cost-allocations"></span><h5>portfolio-financials-cost-allocations</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enable-cost-allocations-and-components-for-a-portfolio-financials-project" title="如何为综合财务管理项目启用成本分配和组件?"><span class="mt-icon-article-none"></span>如何为综合财务管理项目启用成本分配和组件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-cost-allocations-and-components-in-portfolio-financials" title="什么是综合财务管理中的成本分配和组件?"><span class="mt-icon-article-none"></span>什么是综合财务管理中的成本分配和组件?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-portfolio-financials-cost-tracker"><span id="portfolio-financials-cost-tracker"></span><h5>portfolio-financials-cost-tracker</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-templates-created-in-portfolio-financials" title="如何在综合财务管理中创建模板?"><span class="mt-icon-article-none"></span>如何在综合财务管理中创建模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-add-custom-cost-tracker-templates-in-portfolio-financials" title="如何在综合财务管理中添加自定义成本跟踪器模板?"><span class="mt-icon-article-none"></span>如何在综合财务管理中添加自定义成本跟踪器模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-budget-individual-values-within-a-cost-item-in-portfolio-financials" title="如何为综合财务管理中成本项的单个值编制预算?"><span class="mt-icon-article-none"></span>如何为综合财务管理中成本项的单个值编制预算?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-handle-cm-fees-in-portfolio-financials" title="我如何处理综合财务管理中的 CM 费用?"><span class="mt-icon-article-none"></span>我如何处理综合财务管理中的 CM 费用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-set-up-a-tenant-construction-chargeback-in-the-cost-tracker" title="如何在成本跟踪器中设置租户施工退款?"><span class="mt-icon-article-none"></span>如何在成本跟踪器中设置租户施工退款?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-cash-flow-forecasts-and-capital-plans-interact-in-portfolio-financials-and-capital-planning" title="现金流预测和资金规划如何在综合财务管理和资金规划中相互作用?"><span class="mt-icon-article-none"></span>现金流预测和资金规划如何在综合财务管理和资金规划中相互作用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-uncategorized-invoices-in-portfolio-financials" title="什么是综合财务管理中的未分类发票?"><span class="mt-icon-article-none"></span>什么是综合财务管理中的未分类发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-project-cost-reporting-in-portfolio-financials" title="什么是综合财务管理中的项目成本报告?"><span class="mt-icon-article-none"></span>什么是综合财务管理中的项目成本报告?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-portfolio-financials-documents mt-tags-single"><span id="portfolio-financials-documents"></span><h5>portfolio-financials-documents</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-request-a-folder-template-for-documents-in-my-portfolio-financials-projects" title="如何为综合财务管理项目中的文档请求文件夹模板?"><span class="mt-icon-article-none"></span>如何为综合财务管理项目中的文档请求文件夹模板?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-portfolio-financials-integrations mt-tags-single"><span id="portfolio-financials-integrations"></span><h5>portfolio-financials-integrations</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-uncategorized-invoices-in-portfolio-financials" title="什么是综合财务管理中的未分类发票?"><span class="mt-icon-article-none"></span>什么是综合财务管理中的未分类发票?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-portfolio-financials-milestones"><span id="portfolio-financials-milestones"></span><h5>portfolio-financials-milestones</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-milestones-in-portfolio-financials-sync-with-my-external-project-schedule" title="综合财务管理中的里程碑是否与我的外部项目进度计划同步?"><span class="mt-icon-article-none"></span>综合财务管理中的里程碑是否与我的外部项目进度计划同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-templates-created-in-portfolio-financials" title="如何在综合财务管理中创建模板?"><span class="mt-icon-article-none"></span>如何在综合财务管理中创建模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-milestone-dependencies-in-portfolio-financials-and-how-do-i-set-them" title="综合财务管理中的里程碑依赖项是什么?如何进行设置?"><span class="mt-icon-article-none"></span>综合财务管理中的里程碑依赖项是什么?如何进行设置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-betweeen-baseline-and-forecast-or-actual-dates-for-milestones-in-portfolio-financials" title="综合财务管理中里程碑的“基准”和“预测或实际”日期之间有何区别?"><span class="mt-icon-article-none"></span>综合财务管理中里程碑的“基准”和“预测或实际”日期之间有何区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/will-dates-from-a-bid-room-be-added-to-the-projects-milestones-in-portfolio-financials" title="投标室中的日期是否会添加到综合财务管理中的项目里程碑?"><span class="mt-icon-article-none"></span>投标室中的日期是否会添加到综合财务管理中的项目里程碑?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-portfolio-financials-project-page"><span id="portfolio-financials-project-page"></span><h5>portfolio-financials-project-page</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-uncategorized-invoices-in-portfolio-financials" title="什么是综合财务管理中的未分类发票?"><span class="mt-icon-article-none"></span>什么是综合财务管理中的未分类发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-project-page-in-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划中的项目页面是什么?"><span class="mt-icon-article-none"></span>综合财务管理和资金规划中的项目页面是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-project-team-in-portfolio-financials-and-what-are-the-varying-permission-levels" title="综合财务管理中的项目团队是什么?有哪些不同的权限级别?"><span class="mt-icon-article-none"></span>综合财务管理中的项目团队是什么?有哪些不同的权限级别?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-portfolio-financials-settings mt-tags-single"><span id="portfolio-financials-settings"></span><h5>portfolio-financials-settings</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-receive-a-daily-activity-summary-for-portfolio-financials-and-capital-planning" title="我能否接收综合财务管理和资金规划的每日活动摘要?"><span class="mt-icon-article-none"></span>我能否接收综合财务管理和资金规划的每日活动摘要?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-portfolio-financials-team"><span id="portfolio-financials-team"></span><h5>portfolio-financials-team</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-grant-a-limited-user-access-to-a-specific-bid-room-in-portfolio-financials" title="如何授予“有限”用户访问综合财务管理中特定投标室的权限?"><span class="mt-icon-article-none"></span>如何授予“有限”用户访问综合财务管理中特定投标室的权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-permission-levels-for-team-members-in-portfolio-financials" title="综合财务管理中团队成员有哪些不同的权限级别?"><span class="mt-icon-article-none"></span>综合财务管理中团队成员有哪些不同的权限级别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-does-hide-bidding-info-mean-for-someone-on-the-bid-room-team" title="“隐藏投标信息”对投标室团队中的某人意味着什么?"><span class="mt-icon-article-none"></span>“隐藏投标信息”对投标室团队中的某人意味着什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-project-team-in-portfolio-financials-and-what-are-the-varying-permission-levels" title="综合财务管理中的项目团队是什么?有哪些不同的权限级别?"><span class="mt-icon-article-none"></span>综合财务管理中的项目团队是什么?有哪些不同的权限级别?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-portfolio-financials-team-and-vendor-management"><span id="portfolio-financials-team-and-vendor-management"></span><h5>portfolio-financials-team-and-vendor-management</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-receive-a-daily-activity-summary-for-portfolio-financials-and-capital-planning" title="我能否接收综合财务管理和资金规划的每日活动摘要?"><span class="mt-icon-article-none"></span>我能否接收综合财务管理和资金规划的每日活动摘要?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-my-team-member-see-a-project-in-portfolio-financials-and-capital-planning" title="为什么我的团队成员无法查看综合财务管理和资金规划中的项目?"><span class="mt-icon-article-none"></span>为什么我的团队成员无法查看综合财务管理和资金规划中的项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-my-vendor-access-the-bid-room-in-portfolio-financials" title="为什么我的供应商无法访问综合财务管理中的投标室?"><span class="mt-icon-article-none"></span>为什么我的供应商无法访问综合财务管理中的投标室?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-portfolio-financials-team-and-vendors"><span id="portfolio-financials-team-and-vendors"></span><h5>portfolio-financials-team-and-vendors</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-granular-permissions-available-in-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划中是否提供细分权限?"><span class="mt-icon-article-none"></span>综合财务管理和资金规划中是否提供细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-additional-contacts-to-a-vendor-profile-in-portfolio-financials" title="如何向综合财务管理中的供应商配置文件添加其他联系人?"><span class="mt-icon-article-none"></span>如何向综合财务管理中的供应商配置文件添加其他联系人?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-portfolio-financials-vendor-resources"><span id="portfolio-financials-vendor-resources"></span><h5>portfolio-financials-vendor-resources</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-edit-my-change-order-or-invoice-in-portfolio-financials" title="我可以在综合财务管理中编辑我的变更通知单或发票吗?"><span class="mt-icon-article-none"></span>我可以在综合财务管理中编辑我的变更通知单或发票吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-include-deducts-in-my-bid-submission-in-the-bid-room" title="我能否在投标室的投标递交中包含扣除额?"><span class="mt-icon-article-none"></span>我能否在投标室的投标递交中包含扣除额?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-print-or-export-a-copy-of-my-bid-in-the-bid-room" title="我能否在投标室打印或导出我的投标副本?"><span class="mt-icon-article-none"></span>我能否在投标室打印或导出我的投标副本?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-share-access-to-a-bid-room-in-portfolio-financials" title="如何在综合财务管理中共享对投标室的访问权限?"><span class="mt-icon-article-none"></span>如何在综合财务管理中共享对投标室的访问权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-share-access-to-a-contract-room-in-portfolio-financials" title="如何在综合财务管理中共享对合同室的访问权限?"><span class="mt-icon-article-none"></span>如何在综合财务管理中共享对合同室的访问权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-know-if-an-rfi-that-i-posted-in-the-bid-room-has-been-answered" title="我如何知道我在投标室发布的 RFI 是否已得到答复?"><span class="mt-icon-article-none"></span>我如何知道我在投标室发布的 RFI 是否已得到答复?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-log-in-to-portfolio-financials-and-capital-planning" title="如何登录综合财务管理和资金规划?"><span class="mt-icon-article-none"></span>如何登录综合财务管理和资金规划?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-submit-change-orders-and-invoices-in-portfolio-financials" title="如何在综合财务管理中提交变更通知单和发票?"><span class="mt-icon-article-none"></span>如何在综合财务管理中提交变更通知单和发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-will-i-know-when-my-invoice-or-change-order-is-approved-or-rejected-in-portfolio-financials" title="我如何知道我的发票或变更通知单何时在综合财务管理中被批准或拒绝?"><span class="mt-icon-article-none"></span>我如何知道我的发票或变更通知单何时在综合财务管理中被批准或拒绝?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-will-i-receive-emails-about-the-project-i-am-bidding-on-in-portfolio-financials" title="什么时候会收到有关我在综合财务管理中投标的项目的电子邮件?"><span class="mt-icon-article-none"></span>什么时候会收到有关我在综合财务管理中投标的项目的电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-contract-room-in-portfolio-financials" title="为什么我在综合财务管理中看不到合同室?"><span class="mt-icon-article-none"></span>为什么我在综合财务管理中看不到合同室?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-portfolio-financials-yardi mt-tags-single"><span id="portfolio-financials-yardi"></span><h5>portfolio-financials-yardi</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-backfill-an-invoice-from-yardi-to-portfolio-financials" title="如何将来自 Yardi 的发票回填到综合财务管理?"><span class="mt-icon-article-none"></span>如何将来自 Yardi 的发票回填到综合财务管理?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-portfolio-planning"><span id="portfolio-planning"></span><h5>portfolio-planning</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-my-company-receive-bid-invitations-through-the-procore-construction-network" title="我的公司如何通过 Procore 建设工程网络接收投标邀请?"><span class="mt-icon-article-none"></span>我的公司如何通过 Procore 建设工程网络接收投标邀请?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-budget-codes-in-an-estimate-create-line-items-in-a-budget" title="估算中的预算编号如何创建预算中的明细项?"><span class="mt-icon-article-none"></span>估算中的预算编号如何创建预算中的明细项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-a-bid-board-project-to-the-portfolio-tool-in-procore" title="如何将投标面板项目添加到 Procore 中的项目集合工具?"><span class="mt-icon-article-none"></span>如何将投标面板项目添加到 Procore 中的项目集合工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-fields-are-in-an-estimate-and-how-are-they-calculated" title="估算中有哪些字段以及它们是如何计算的?"><span class="mt-icon-article-none"></span>估算中有哪些字段以及它们是如何计算的?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-prequalification-portal mt-tags-single"><span id="prequalification-portal"></span><h5>prequalification-portal</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-give-users-access-to-the-prequalifications-tool" title="如何让用户访问资格预审工具?"><span class="mt-icon-article-none"></span>如何让用户访问资格预审工具?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-prequalifications mt-tags-single"><span id="prequalifications"></span><h5>prequalifications</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-give-users-access-to-the-prequalifications-tool" title="如何让用户访问资格预审工具?"><span class="mt-icon-article-none"></span>如何让用户访问资格预审工具?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-primavera mt-tags-single"><span id="primavera"></span><h5>primavera</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-primavera-p6-and-how-does-it-integrate-with-procore" title="什么是 Primavera P6 及其如何与 Procore 集成?"><span class="mt-icon-article-none"></span>什么是 Primavera P6 及其如何与 Procore 集成?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-prime-contract"><span id="prime-contract"></span><h5>prime-contract</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-when-restrict-non-draft-edits-to-contracts-and-change-orders-and-enable-always-editable-schedule-of-values-are-both-enabled" title="当"限制对合同和变更通知单的非草稿编辑"和"启用始终可编辑的分项价格表"同时启用时会发生什么?"><span class="mt-icon-article-none"></span>当"限制对合同和变更通知单的非草稿编辑"和"启用始终可编辑的分项价格表"同时启用时会发生什么?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-prime-contracts"><span id="prime-contracts"></span><h5>prime-contracts</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-there-any-system-limitations-when-creating-multiple-prime-contracts" title="当项目有多个主合同时,是否有任何系统限制?"><span class="mt-icon-article-none"></span>当项目有多个主合同时,是否有任何系统限制?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/at-what-tier-can-an-upstream-collaborator-approve-a-change-order" title="上游协作者可以在哪一层批准变更通知单?"><span class="mt-icon-article-none"></span>上游协作者可以在哪一层批准变更通知单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-create-a-change-order-for-a-contract-or-funding-before-a-downstream-collaborator-responds-to-an-rfq-for-a-change-event" title="我可以在下游协作者响应变更事件的 RFQ 之前为合同或资金创建变更通知单吗?"><span class="mt-icon-article-none"></span>我可以在下游协作者响应变更事件的 RFQ 之前为合同或资金创建变更通知单吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-create-a-list-of-overdue-pccos" title="我可以创建一份逾期主合同变更通知单 (PCCO) 的清单吗?"><span class="mt-icon-article-none"></span>我可以创建一份逾期主合同变更通知单 (PCCO) 的清单吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-tax-codes-on-a-procore-project" title="如何在 Procore 项目中使用税务代码?"><span class="mt-icon-article-none"></span>如何在 Procore 项目中使用税务代码?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-automatically-complete-amounts-on-an-owner-invoice" title="Procore 如何自动完成业主 发票上的金额? (测试版)"><span class="mt-icon-article-none"></span>Procore 如何自动完成业主 发票上的金额? (测试版)</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-automatically-complete-amounts-on-an-upstream-invoice" title="Procore 如何自动完成上游 发票上的金额? (旧版)"><span class="mt-icon-article-none"></span>Procore 如何自动完成上游 发票上的金额? (旧版)</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-calculate-an-invoices-current-payment-due-amount" title="Procore 如何计算发票的“当前到期应付款”金额?"><span class="mt-icon-article-none"></span>Procore 如何计算发票的“当前到期应付款”金额?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-adjust-my-budget-views-when-the-client-contracts-funding-or-prime-contracts-tool-is-disabled-in-my-companys-procore-account" title="当我公司 Procore 账户禁用客户合同、资金或主合同工具时,我能如何调整预算视图?"><span class="mt-icon-article-none"></span>当我公司 Procore 账户禁用客户合同、资金或主合同工具时,我能如何调整预算视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-change-my-web-browsers-default-email-client-for-mailto-links" title="如何为 mailto 链接更改我的 Web 浏览器的默认电子邮件客户端?"><span class="mt-icon-article-none"></span>如何为 mailto 链接更改我的 Web 浏览器的默认电子邮件客户端?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-the-accounting-method-for-a-contract-or-funding" title="如何设置合同或资金的会计方法?"><span class="mt-icon-article-none"></span>如何设置合同或资金的会计方法?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-fields-and-which-procore-tools-support-them" title="什么是自定义字段以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是自定义字段以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-sections-and-which-procore-tools-support-them" title="什么是自定义部分以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是自定义部分以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-multi-tiered-locations" title="什么是多层地点?"><span class="mt-icon-article-none"></span>什么是多层地点?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-change-types-and-change-reasons" title="Procore 的默认变更类型和变更原因是什么?"><span class="mt-icon-article-none"></span>Procore 的默认变更类型和变更原因是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore 默认成本编号有哪些?"><span class="mt-icon-article-none"></span>Procore 默认成本编号有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-types" title="Procore 有哪些默认成本类型?"><span class="mt-icon-article-none"></span>Procore 有哪些默认成本类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-columns-in-the-prime-contracts-tool" title="主合同工具中的默认列是什么列?"><span class="mt-icon-article-none"></span>主合同工具中的默认列是什么列?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-statuses-for-change-orders-in-procore" title="Procore 中变更通知单的默认状态是什么?"><span class="mt-icon-article-none"></span>Procore 中变更通知单的默认状态是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-statuses-for-procore-invoices" title="Procore 发票的默认状态有哪些?"><span class="mt-icon-article-none"></span>Procore 发票的默认状态有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-change-order-tier-settings-in-project-financials" title="项目财务中有哪些不同的变更通知单层设置?"><span class="mt-icon-article-none"></span>项目财务中有哪些不同的变更通知单层设置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-types-of-invoices-in-procore" title="Procore 中有哪些不同类型的发票?"><span class="mt-icon-article-none"></span>Procore 中有哪些不同类型的发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-docusign-fields-and-can-i-customize-them" title="什么是 DocuSign® 字段,我可以自定义它们吗?"><span class="mt-icon-article-none"></span>什么是 DocuSign® 字段,我可以自定义它们吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-requirements-for-importing-sov-line-items-from-csv" title="从 CSV 导入 SOV 行项目有哪些要求?"><span class="mt-icon-article-none"></span>从 CSV 导入 SOV 行项目有哪些要求?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-prime-contracts-tool" title="项目的主合同工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的主合同工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-when-restrict-non-draft-edits-to-contracts-and-change-orders-and-enable-always-editable-schedule-of-values-are-both-enabled" title="当"限制对合同和变更通知单的非草稿编辑"和"启用始终可编辑的分项价格表"同时启用时会发生什么?"><span class="mt-icon-article-none"></span>当"限制对合同和变更通知单的非草稿编辑"和"启用始终可编辑的分项价格表"同时启用时会发生什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-budget-code-in-procores-wbs" title="Procore 的 WBS 中的预算编号是什么?"><span class="mt-icon-article-none"></span>Procore 的 WBS 中的预算编号是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-upstream-collaborator" title="什么是上游协作者?"><span class="mt-icon-article-none"></span>什么是上游协作者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-distribution-group-and-a-distribution-list" title="Procore 中的通讯组和通讯名单有什么区别?"><span class="mt-icon-article-none"></span>Procore 中的通讯组和通讯名单有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-horizontal-and-vertical-markup" title="水平分项利润加成和垂直汇总利润加成有什么区别?"><span class="mt-icon-article-none"></span>水平分项利润加成和垂直汇总利润加成有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-enable-always-editable-schedule-of-values-setting" title="什么是“启用始终可编辑的分项价格表”设置?"><span class="mt-icon-article-none"></span>什么是“启用始终可编辑的分项价格表”设置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-tool-names-and-terms-are-different-in-procore-for-general-contractors-owners-and-specialty-contractors" title="Procore 中的哪些工具名称和术语对于总承包商、业主和专业承包商是不同的?"><span class="mt-icon-article-none"></span>Procore 中的哪些工具名称和术语对于总承包商、业主和专业承包商是不同的?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-prime-contracts-tool-can-be-configured-as-required-optional-or-hidden" title="主合同工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>主合同工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-prime-contract-and-pcco-fields-are-synced-with-procore-and-viewpoint-spectrum" title="哪些主合同和主合同变更通知单字段与 Procore 和 Viewpoint Spectrum 同步?"><span class="mt-icon-article-none"></span>哪些主合同和主合同变更通知单字段与 Procore 和 Viewpoint Spectrum 同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-support-the-docusign-integration" title="哪些 Procore 项目工具支持 DocuSign® 集成?"><span class="mt-icon-article-none"></span>哪些 Procore 项目工具支持 DocuSign® 集成?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="哪些 Procore 工具支持细分权限?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-work-breakdown-structure" title="哪些 Procore 工具支持工作分解结构?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持工作分解结构?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-units-of-measure-are-included-in-procores-master-list" title="Procore 的主列表中包含哪些计量单位?"><span class="mt-icon-article-none"></span>Procore 的主列表中包含哪些计量单位?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-can-i-access-the-prime-contracts-tool-if-i-cant-view-the-prime-contract" title="如果无法查看主合同,为什么可以访问主合同工具?"><span class="mt-icon-article-none"></span>如果无法查看主合同,为什么可以访问主合同工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-a-change-order" title="为什么我无法创建变更通知单?"><span class="mt-icon-article-none"></span>为什么我无法创建变更通知单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-edit-or-delete-an-approved-change-order" title="为什么我不能编辑或删除“获批”变更通知单?"><span class="mt-icon-article-none"></span>为什么我不能编辑或删除“获批”变更通知单?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-procore-administrator mt-tags-single"><span id="procore-administrator"></span><h5>procore-administrator</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-company-admin" title="什么是公司管理员?"><span class="mt-icon-article-none"></span>什么是公司管理员?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-procore-analytics"><span id="procore-analytics"></span><h5>procore-analytics</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-analytics-store-dates" title="Procore Analytics如何存储日期?"><span class="mt-icon-article-none"></span>Procore Analytics如何存储日期?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-get-started-with-procore-analytics" title="如何开始使用Procore Analytics?"><span class="mt-icon-article-none"></span>如何开始使用Procore Analytics?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-the-embedded-app-and-power-bi-procore-analytics" title="在嵌入式应用程序和 Power BI 服务中查看Procore Analytics报告有什么区别?"><span class="mt-icon-article-none"></span>在嵌入式应用程序和 Power BI 服务中查看Procore Analytics报告有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-procore-analytics-risk-report" title="什么是Procore Analytics风险报告?"><span class="mt-icon-article-none"></span>什么是Procore Analytics风险报告?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-were-tool-configuration-user-usage-and-data-quality-moved" title="为什么移动工具配置、用户使用情况和数据质量报告页面?"><span class="mt-icon-article-none"></span>为什么移动工具配置、用户使用情况和数据质量报告页面?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-procore-bim-plugin"><span id="procore-bim-plugin"></span><h5>procore-bim-plugin</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-file-types-are-supported-for-the-3d-model-viewer-in-the-documents-tool" title="文档工具中的 3D 模型查看器支持哪些文件类型?"><span class="mt-icon-article-none"></span>文档工具中的 3D 模型查看器支持哪些文件类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procore-bim" title="什么是 Procore BIM?"><span class="mt-icon-article-none"></span>什么是 Procore BIM?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-procore-plugin-and-what-is-it-used-for" title="什么是 Procore插件,有何用途?"><span class="mt-icon-article-none"></span>什么是 Procore插件,有何用途?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-do-if-a-model-is-too-large-to-view-in-procores-web-application" title="如果模型太大而无法在 Procore 的 Web 应用程序中查看,我该怎么办?"><span class="mt-icon-article-none"></span>如果模型太大而无法在 Procore 的 Web 应用程序中查看,我该怎么办?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-do-if-my-model-file-is-too-large-to-process-in-the-documents-tool" title="如果我的模型文件太大而无法在文档工具中处理,我该怎么办?"><span class="mt-icon-article-none"></span>如果我的模型文件太大而无法在文档工具中处理,我该怎么办?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-not-seeing-my-issues-after-i-associate-the-file-to-my-project" title="为什么我在将文件关联到我的项目后看不到我的问题?"><span class="mt-icon-article-none"></span>为什么我在将文件关联到我的项目后看不到我的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-viewpoints-being-created-after-i-use-the-markup-tools" title="为什么在使用标记工具后会创建视点?"><span class="mt-icon-article-none"></span>为什么在使用标记工具后会创建视点?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-use-the-cloud-redline-tool-in-navisworks" title="为什么我不能在 Navisworks® 中使用云红线工具?"><span class="mt-icon-article-none"></span>为什么我不能在 Navisworks® 中使用云红线工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-isnt-my-model-showing-when-viewing-models-in-procore" title="为什么在 Procore 中查看模型时,模型不显示?"><span class="mt-icon-article-none"></span>为什么在 Procore 中查看模型时,模型不显示?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-would-the-file-size-of-a-model-increase-in-procore" title="为什么 Procore 中模型的文件大小会增加?"><span class="mt-icon-article-none"></span>为什么 Procore 中模型的文件大小会增加?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-procore-construction-network"><span id="procore-construction-network"></span><h5>procore-construction-network</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-businesses-approved-to-be-listed-on-the-procore-construction-network" title="企业如何获批在 Procore 建设工程网络中上市?"><span class="mt-icon-article-none"></span>企业如何获批在 Procore 建设工程网络中上市?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-duplicate-companies-handled-between-the-directory-tool-and-procore-construction-network" title="如何处理目录工具和 Procore 建设工程网络之间的重复公司?"><span class="mt-icon-article-none"></span>如何处理目录工具和 Procore 建设工程网络之间的重复公司?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-i-have-a-free-or-paid-procore-account" title="如何判断我有免费还是付费 Procore 公司账户?"><span class="mt-icon-article-none"></span>如何判断我有免费还是付费 Procore 公司账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-my-company-receive-bid-invitations-through-the-procore-construction-network" title="我的公司如何通过 Procore 建设工程网络接收投标邀请?"><span class="mt-icon-article-none"></span>我的公司如何通过 Procore 建设工程网络接收投标邀请?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-activity-metrics-can-i-see-for-companies-listed-on-the-procore-construction-network" title="在 Procore 建设工程网络上列出的公司,我可以查看哪些活动指标?"><span class="mt-icon-article-none"></span>在 Procore 建设工程网络上列出的公司,我可以查看哪些活动指标?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-changes-when-companies-upgrade-to-paid-accounts" title="公司升级到付费账户会发生什么变化?"><span class="mt-icon-article-none"></span>公司升级到付费账户会发生什么变化?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-when-companies-and-users-are-added-from-the-procore-construction-network-to-the-company-directory" title="从 Procore 建设工程网络中将公司和用户添加到公司目录时会发生什么?"><span class="mt-icon-article-none"></span>从 Procore 建设工程网络中将公司和用户添加到公司目录时会发生什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-claimed-and-unclaimed-business-on-the-procore-construction-network" title="Procore 建设工程网络上已认领和未认领的企业有什么区别?"><span class="mt-icon-article-none"></span>Procore 建设工程网络上已认领和未认领的企业有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-procore-construction-network" title="什么是 Procore 建设工程网络?"><span class="mt-icon-article-none"></span>什么是 Procore 建设工程网络?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-makes-a-company-appear-higher-in-search-results-for-the-procore-construction-network" title="是什么使公司在 Procore 建设工程网络的搜索结果中更高?"><span class="mt-icon-article-none"></span>是什么使公司在 Procore 建设工程网络的搜索结果中更高?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-I-know-about-claiming-a-business-on-the-procore-construction-network" title="关于在 Procore 建设工程网络上申请业务,我应该了解什么?"><span class="mt-icon-article-none"></span>关于在 Procore 建设工程网络上申请业务,我应该了解什么?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-procore-drive"><span id="procore-drive"></span><h5>procore-drive</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-upload-large-files-to-the-procore-web-app" title="如何将大文件上传到Procore Web应用程序?"><span class="mt-icon-article-none"></span>如何将大文件上传到Procore Web应用程序?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/should-i-integrate-my-microsoft-project-schedule-in-procores-web-application-or-procore-drive" title="是否应该将 Microsoft Project 进度计划集成到 Procore Web 应用程序或 Procore Drive?"><span class="mt-icon-article-none"></span>是否应该将 Microsoft Project 进度计划集成到 Procore Web 应用程序或 Procore Drive?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-getting-an-error-when-downloading-procore-drive" title="为什么下载 Procore Drive 时出错?"><span class="mt-icon-article-none"></span>为什么下载 Procore Drive 时出错?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-the-delete-button-dimmed-and-not-available--in-the-schedule-tool-of-procore-drive" title="为什么删除按钮在 Procore Drive 的进度计划工具中变暗且不可用?"><span class="mt-icon-article-none"></span>为什么删除按钮在 Procore Drive 的进度计划工具中变暗且不可用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-the-procore-drive-desktop-shortcut-not-working" title="为什么 Procore Drive 桌面快捷方式不起作用?"><span class="mt-icon-article-none"></span>为什么 Procore Drive 桌面快捷方式不起作用?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-procore-extracts"><span id="procore-extracts"></span><h5>procore-extracts</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-use-the-procore-extracts-application-on-a-mac" title="我可以在 Mac 上使用 Procore Extracts 应用程序吗?"><span class="mt-icon-article-none"></span>我可以在 Mac 上使用 Procore Extracts 应用程序吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-long-does-it-take-to-extract-data-from-procore" title="从 Procore 中提取数据需要多长时间?"><span class="mt-icon-article-none"></span>从 Procore 中提取数据需要多长时间?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-file-rename-information-file-included-with-my-extracted-project-data" title="提取的项目数据中包含的“文件重命名信息 (File Rename Information)”文件是什么?"><span class="mt-icon-article-none"></span>提取的项目数据中包含的“文件重命名信息 (File Rename Information)”文件是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-tools-can-i-extract-project-data-from-using-the-procore-extracts-application" title="使用 Procore Extracts 应用程序可以从哪些工具中提取项目数据?"><span class="mt-icon-article-none"></span>使用 Procore Extracts 应用程序可以从哪些工具中提取项目数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-unable-to-download-and-open-a-zip-file-from-procore" title="为什么我无法从 Procore 下载和打开 .ZIP 文件?"><span class="mt-icon-article-none"></span>为什么我无法从 Procore 下载和打开 .ZIP 文件?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-procore-imports"><span id="procore-imports"></span><h5>procore-imports</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-apply-permissions-templates-to-multiple-users-at-one-time" title="可以一次将权限模板应用于多个用户吗?"><span class="mt-icon-article-none"></span>可以一次将权限模板应用于多个用户吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-segments-and-segment-items" title="什么是细分和细分项?"><span class="mt-icon-article-none"></span>什么是细分和细分项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-column-header-updates-in-the-import-templates" title="导入模板中的列标题更新是什么?"><span class="mt-icon-article-none"></span>导入模板中的列标题更新是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-receiving-an-error-message-in-the-procore-imports-app" title="为什么我在 Procore Imports 应用程序中收到错误消息?"><span class="mt-icon-article-none"></span>为什么我在 Procore Imports 应用程序中收到错误消息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-wbs-custom-segments" title="为什么我不能创建 WBS 自定义细分?"><span class="mt-icon-article-none"></span>为什么我不能创建 WBS 自定义细分?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-procore-maps"><span id="procore-maps"></span><h5>procore-maps</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-items-in-procore-appear-on-the-map" title="Procore 中的项如何在地图上显示?"><span class="mt-icon-article-reference"></span>Procore 中的项如何在地图上显示?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-tools-are-supported-by-maps-in-procore" title="Procore 中的地图支持哪些工具?"><span class="mt-icon-article-reference"></span>Procore 中的地图支持哪些工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-visibility-settings-are-available-for-procore-maps" title="Procore 地图有哪些可见性设置?"><span class="mt-icon-article-none"></span>Procore 地图有哪些可见性设置?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-procore-pay"><span id="procore-pay"></span><h5>procore-pay</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-i-have-a-free-or-paid-procore-account" title="如何判断我有免费还是付费 Procore 公司账户?"><span class="mt-icon-article-none"></span>如何判断我有免费还是付费 Procore 公司账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-invoice-contact" title="什么是发票联系人?"><span class="mt-icon-article-none"></span>什么是发票联系人?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-procore-search mt-tags-single"><span id="procore-search"></span><h5>procore-search</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-information-is-searchable-using-procore-search" title="可以使用 Procore Search 搜索到哪些信息?"><span class="mt-icon-article-none"></span>可以使用 Procore Search 搜索到哪些信息?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-progress-billings"><span id="progress-billings"></span><h5>progress-billings</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/does-an-invoice-contact-need-an-invite-to-bill-to-submit-an-invoice" title="发票联系人是否需要“结算邀请”才能提交发票?"><span class="mt-icon-article-none"></span>发票联系人是否需要“结算邀请”才能提交发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-automatically-complete-amounts-on-an-upstream-invoice" title="Procore 如何自动完成上游 发票上的金额? (旧版)"><span class="mt-icon-article-none"></span>Procore 如何自动完成上游 发票上的金额? (旧版)</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-calculate-an-invoices-current-payment-due-amount" title="Procore 如何计算发票的“当前到期应付款”金额?"><span class="mt-icon-article-none"></span>Procore 如何计算发票的“当前到期应付款”金额?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-bill-for-stored-materials-in-an-invoice" title="如何在发票中为库存材料开具账单? (测试版)"><span class="mt-icon-article-none"></span>如何在发票中为库存材料开具账单? (测试版)</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-create-a-billing-period-for-an-invoice" title="如何为发票创建结算期?"><span class="mt-icon-article-none"></span>如何为发票创建结算期?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-submit-a-subcontractor-schedule-of-values-for-a-procore-commitment" title="如何提交 Procore 合约的分包商分项价格表?"><span class="mt-icon-article-none"></span>如何提交 Procore 合约的分包商分项价格表?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-fields-and-which-procore-tools-support-them" title="什么是自定义字段以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是自定义字段以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore 默认成本编号有哪些?"><span class="mt-icon-article-none"></span>Procore 默认成本编号有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-types-of-invoices-in-procore" title="Procore 中有哪些不同类型的发票?"><span class="mt-icon-article-none"></span>Procore 中有哪些不同类型的发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-budget-code-in-procores-wbs" title="Procore 的 WBS 中的预算编号是什么?"><span class="mt-icon-article-none"></span>Procore 的 WBS 中的预算编号是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-upstream-collaborator" title="什么是上游协作者?"><span class="mt-icon-article-none"></span>什么是上游协作者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-sliding-scale-retention" title="什么是浮动保留金?"><span class="mt-icon-article-none"></span>什么是浮动保留金?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-tool-names-and-terms-are-different-in-procore-for-general-contractors-owners-and-specialty-contractors" title="Procore 中的哪些工具名称和术语对于总承包商、业主和专业承包商是不同的?"><span class="mt-icon-article-none"></span>Procore 中的哪些工具名称和术语对于总承包商、业主和专业承包商是不同的?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-does-procore-send-email-notifications-to-invoice-contacts" title="Procore 何时向发票联系人发送电子邮件通知?"><span class="mt-icon-article-none"></span>Procore 何时向发票联系人发送电子邮件通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-support-the-docusign-integration" title="哪些 Procore 项目工具支持 DocuSign® 集成?"><span class="mt-icon-article-none"></span>哪些 Procore 项目工具支持 DocuSign® 集成?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-work-breakdown-structure" title="哪些 Procore 工具支持工作分解结构?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持工作分解结构?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-units-of-measure-are-included-in-procores-master-list" title="Procore 的主列表中包含哪些计量单位?"><span class="mt-icon-article-none"></span>Procore 的主列表中包含哪些计量单位?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-change-order-line-items-duplicated-on-my-subcontractor-invoice" title="为什么我的变更通知单明细项在我的分包商发票上重复?"><span class="mt-icon-article-none"></span>为什么我的变更通知单明细项在我的分包商发票上重复?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-isnt-the-job-to-date-costs-column-in-the-budget-matching-our-subcontractor-invoice-amounts" title="为什么预算中的“开工至今成本”列与分包商发票金额不一致?"><span class="mt-icon-article-none"></span>为什么预算中的“开工至今成本”列与分包商发票金额不一致?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-project mt-tags-single"><span id="project"></span><h5>project</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-display-a-list-of-project-dates-on-the-home-page" title="如何在主页上显示项目日期列表?"><span class="mt-icon-article-none"></span>如何在主页上显示项目日期列表?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-project-admin"><span id="project-admin"></span><h5>project-admin</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-segments-and-segment-items" title="什么是细分和细分项?"><span class="mt-icon-article-none"></span>什么是细分和细分项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-receiving-an-error-message-in-the-procore-imports-app" title="为什么我在 Procore Imports 应用程序中收到错误消息?"><span class="mt-icon-article-none"></span>为什么我在 Procore Imports 应用程序中收到错误消息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-wbs-custom-segments" title="为什么我不能创建 WBS 自定义细分?"><span class="mt-icon-article-none"></span>为什么我不能创建 WBS 自定义细分?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-project-administrator"><span id="project-administrator"></span><h5>project-administrator</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-find-the-project-id" title="如何查找项目 ID?"><span class="mt-icon-article-none"></span>如何查找项目 ID?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-project-administrator" title="什么是项目管理员?"><span class="mt-icon-article-none"></span>什么是项目管理员?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-project-directory"><span id="project-directory"></span><h5>project-directory</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-apply-permissions-templates-to-multiple-users-at-one-time" title="可以一次将权限模板应用于多个用户吗?"><span class="mt-icon-article-none"></span>可以一次将权限模板应用于多个用户吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-column-header-updates-in-the-import-templates" title="导入模板中的列标题更新是什么?"><span class="mt-icon-article-none"></span>导入模板中的列标题更新是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-receiving-an-error-message-in-the-procore-imports-app" title="为什么我在 Procore Imports 应用程序中收到错误消息?"><span class="mt-icon-article-none"></span>为什么我在 Procore Imports 应用程序中收到错误消息?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-project-home-screen-android mt-tags-single"><span id="project-home-screen-android"></span><h5>project-home-screen-android</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-tools-currently-support-the-bookmarks-feature-on-the-procore-mobile-app" title="在 Procore 移动应用程序上,目前哪些工具支持“书签”功能?"><span class="mt-icon-article-none"></span>在 Procore 移动应用程序上,目前哪些工具支持“书签”功能?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-project-home-screen-ios mt-tags-single"><span id="project-home-screen-ios"></span><h5>project-home-screen-ios</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-tools-currently-support-the-bookmarks-feature-on-the-procore-mobile-app" title="在 Procore 移动应用程序上,目前哪些工具支持“书签”功能?"><span class="mt-icon-article-none"></span>在 Procore 移动应用程序上,目前哪些工具支持“书签”功能?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-project-manager"><span id="project-manager"></span><h5>project-manager</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-bidders-submit-their-bid-via-email-or-must-they-sign-in" title="投标人可以通过电子邮件提交投标还是必须登录?"><span class="mt-icon-article-none"></span>投标人可以通过电子邮件提交投标还是必须登录?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-send-a-bid-update-email-to-every-vendor-subcontractor" title="我能否向每个供应商/分包商发送投标更新电子邮件?"><span class="mt-icon-article-none"></span>我能否向每个供应商/分包商发送投标更新电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-improve-the-accuracy-of-ocr-on-my-drawings" title="如何提高图纸上 OCR 的准确性?"><span class="mt-icon-article-none"></span>如何提高图纸上 OCR 的准确性?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-improve-the-accuracy-of-specification-section-identification" title="如何提高规范分项识别的准确性?"><span class="mt-icon-article-none"></span>如何提高规范分项识别的准确性?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-keep-track-of-emailed-drawings" title="如何跟踪通过电子邮件发送的图纸?"><span class="mt-icon-article-none"></span>如何跟踪通过电子邮件发送的图纸?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-keep-track-of-emailed-specifications" title="如何跟踪通过电子邮件发送的规范?"><span class="mt-icon-article-none"></span>如何跟踪通过电子邮件发送的规范?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-find-the-project-id" title="如何查找项目 ID?"><span class="mt-icon-article-none"></span>如何查找项目 ID?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-construction-bidding-process" title="什么是建设工程投标流程?"><span class="mt-icon-article-none"></span>什么是建设工程投标流程?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-permissions-do-bidders-need-in-order-to-be-invited-to-bid-and-submit-a-bid" title="投标人需要哪些权限才能受邀投标和提交投标?"><span class="mt-icon-article-none"></span>投标人需要哪些权限才能受邀投标和提交投标?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-can-procore-automatically-populate-when-uploading-drawings" title="上传图纸时,Procore 可以自动填充哪些字段?"><span class="mt-icon-article-none"></span>上传图纸时,Procore 可以自动填充哪些字段?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-can-procore-automatically-populate-when-uploading-specifications" title="上传规范时,Procore 可以自动填充哪些字段?"><span class="mt-icon-article-none"></span>上传规范时,Procore 可以自动填充哪些字段?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-bid-package-missing-from-the-planroom" title="为什么 Planroom 中没有我的投标文件包?"><span class="mt-icon-article-none"></span>为什么 Planroom 中没有我的投标文件包?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-project-map mt-tags-single"><span id="project-map"></span><h5>project-map</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-visibility-settings-are-available-for-procore-maps" title="Procore 地图有哪些可见性设置?"><span class="mt-icon-article-none"></span>Procore 地图有哪些可见性设置?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-project-maps"><span id="project-maps"></span><h5>project-maps</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-items-in-procore-appear-on-the-map" title="Procore 中的项如何在地图上显示?"><span class="mt-icon-article-reference"></span>Procore 中的项如何在地图上显示?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-tools-are-supported-by-maps-in-procore" title="Procore 中的地图支持哪些工具?"><span class="mt-icon-article-reference"></span>Procore 中的地图支持哪些工具?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-project-schedule mt-tags-single"><span id="project-schedule"></span><h5>project-schedule</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-receiving-an-error-message-in-the-procore-imports-app" title="为什么我在 Procore Imports 应用程序中收到错误消息?"><span class="mt-icon-article-none"></span>为什么我在 Procore Imports 应用程序中收到错误消息?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-punch-list"><span id="punch-list"></span><h5>punch-list</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-attach-a-photo-to-a-punch-list-item-from-my-mobile-device" title="我能否通过移动设备将照片添加到尾项清单项目?"><span class="mt-icon-article-none"></span>我能否通过移动设备将照片添加到尾项清单项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-provide-users-with-read-only-level-permissions-with-limited-access-to-update-information-in-procore" title="我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?"><span class="mt-icon-article-none"></span>我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/for-which-items-in-procore-should-i-make-templates" title="我应该为 Procore 中的哪些项制作模板?"><span class="mt-icon-article-none"></span>我应该为 Procore 中的哪些项制作模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-data-entry-differ-between-punch-items-created-with-manual-input-and-punch-items-created-with-quick-capture" title="使用手动输入创建的尾项项目和使用 Quick Capture 创建的尾项项目之间的数据输入有何不同?"><span class="mt-icon-article-none"></span>使用手动输入创建的尾项项目和使用 Quick Capture 创建的尾项项目之间的数据输入有何不同?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-the-punch-list-workflow-affect-my-existing-punch-list-items" title="尾项清单工作流如何影响我现有的尾项清单项?"><span class="mt-icon-article-none"></span>尾项清单工作流如何影响我现有的尾项清单项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-choose-a-default-punch-item-manager-for-my-project" title="如何为我的项目选择默认尾项项目经理?"><span class="mt-icon-article-none"></span>如何为我的项目选择默认尾项项目经理?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-control-which-emails-are-sent-by-procore-from-the-punch-list-tool" title="我如何控制 Procore 从尾项清单工具发送哪些电子邮件?"><span class="mt-icon-article-none"></span>我如何控制 Procore 从尾项清单工具发送哪些电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-determine-whether-a-punch-list-item-has-been-sent" title="如何确定是否已发送尾项清单项目?"><span class="mt-icon-article-none"></span>如何确定是否已发送尾项清单项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-disable-quick-capture-for-ios" title="如何禁用 iOS 的 Quick Capture?"><span class="mt-icon-article-none"></span>如何禁用 iOS 的 Quick Capture?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-filter-items-by-multi-tiered-locations" title="如何按多层地点筛选项?"><span class="mt-icon-article-none"></span>如何按多层地点筛选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-make-my-punch-list-items-private-by-default" title="如何将我的尾项清单项目默认设为私密?"><span class="mt-icon-article-none"></span>如何将我的尾项清单项目默认设为私密?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-configurable-fieldsets-and-which-procore-tools-support-them" title="什么是可配置字段集以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是可配置字段集以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-fields-and-which-procore-tools-support-them" title="什么是自定义字段以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是自定义字段以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-multi-tiered-locations" title="什么是多层地点?"><span class="mt-icon-article-none"></span>什么是多层地点?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-punch-item-color-codes-on-a-drawing-mean" title="图纸上的尾项项目颜色代码有什么含义?"><span class="mt-icon-article-none"></span>图纸上的尾项项目颜色代码有什么含义?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-punch-list-tool" title="项目的尾项清单工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的尾项清单工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-punch-list" title="什么是尾项清单?"><span class="mt-icon-article-none"></span>什么是尾项清单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="什么是 Procore 回收站?"><span class="mt-icon-article-none"></span>什么是 Procore 回收站?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-date-notified-field-in-my-punch-list" title="我的尾项清单中的“通知日期”字段是什么?"><span class="mt-icon-article-none"></span>我的尾项清单中的“通知日期”字段是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-distribution-group-and-a-distribution-list" title="Procore 中的通讯组和通讯名单有什么区别?"><span class="mt-icon-article-none"></span>Procore 中的通讯组和通讯名单有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-punch-list-work-flow" title="什么是尾项清单工作流?"><span class="mt-icon-article-none"></span>什么是尾项清单工作流?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-standard-trades-are-available-in-procore" title="Procore 中提供哪些标准行业?"><span class="mt-icon-article-none"></span>Procore 中提供哪些标准行业?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-punch-list-tool-can-be-configured-as-required-optional-or-hidden" title="尾项清单工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>尾项清单工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-let-me-view-a-digital-image-attachment-in-a-map-view" title="哪些 Procore 工具可让我在地图视图中查看数字图像附件?"><span class="mt-icon-article-none"></span>哪些 Procore 工具可让我在地图视图中查看数字图像附件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="哪些 Procore 工具支持细分权限?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持细分权限?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-qbo"><span id="qbo"></span><h5>qbo</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-accounting-approvers-notified-when-data-is-awaiting-acceptance-in-the-erp-integrations-tool" title="当数据在 ERP 集成工具中等待验收时,是否会通知会计审批者?"><span class="mt-icon-article-none"></span>当数据在 ERP 集成工具中等待验收时,是否会通知会计审批者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-project-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目是否已与集成 ERP 系统同步?"><span class="mt-icon-article-none"></span>如何判断 Procore 项目是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-cost-types-and-how-does-our-erp-integration-support-them" title="有哪些“成本类型”以及我们的 ERP 集成如何支持这些成本类型?"><span class="mt-icon-article-none"></span>有哪些“成本类型”以及我们的 ERP 集成如何支持这些成本类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-erp-icons-mean" title="ERP 图标的含义是什么?"><span class="mt-icon-article-none"></span>ERP 图标的含义是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-if-i-have-duplicate-company-records-in-procores-company-directory" title="如果 Procore 公司目录中存在重复公司记录会怎样?"><span class="mt-icon-article-none"></span>如果 Procore 公司目录中存在重复公司记录会怎样?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="什么是会计审批者角色?"><span class="mt-icon-article-none"></span>什么是会计审批者角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-category-concept" title="哪些集成 ERP 系统支持“成本类型”概念?"><span class="mt-icon-article-none"></span>哪些集成 ERP 系统支持“成本类型”概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-a-notification-when-an-item-is-rejected-from-erp" title="当项被 ERP 拒绝时,谁会收到通知?"><span class="mt-icon-article-none"></span>当项被 ERP 拒绝时,谁会收到通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-accept-reject-options-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到接受/拒绝选项?"><span class="mt-icon-article-none"></span>为什么我在 ERP 集成工具中看不到接受/拒绝选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-procore-project-missing-from-the-erp-integrations-tool" title="为什么 ERP 集成工具中缺少我的 Procore 项目?"><span class="mt-icon-article-none"></span>为什么 ERP 集成工具中缺少我的 Procore 项目?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-quickbooks"><span id="quickbooks"></span><h5>quickbooks</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-accounting-approvers-notified-when-data-is-awaiting-acceptance-in-the-erp-integrations-tool" title="当数据在 ERP 集成工具中等待验收时,是否会通知会计审批者?"><span class="mt-icon-article-none"></span>当数据在 ERP 集成工具中等待验收时,是否会通知会计审批者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-pending-commitments-automatically-synced-with-integrated-erp-systems" title="待处理合约是否会与集成 ERP 系统自动同步?"><span class="mt-icon-article-none"></span>待处理合约是否会与集成 ERP 系统自动同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-customize-the-numbering-system-for-financial-management-objects-in-procore" title="我能否在 Procore 中自定义财务对象的编号系统?"><span class="mt-icon-article-none"></span>我能否在 Procore 中自定义财务对象的编号系统?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-edit-or-delete-a-commitment-after-its-been-synced-with-an-erp-integration" title="合约与集成 ERP 系统同步后,我能否编辑或删除?"><span class="mt-icon-article-none"></span>合约与集成 ERP 系统同步后,我能否编辑或删除?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-export-procore-budget-modifications-to-an-integrated-erp-system" title="我可以将 Procore 预算修改导出到集成 ERP 系统吗?"><span class="mt-icon-article-none"></span>我可以将 Procore 预算修改导出到集成 ERP 系统吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-project-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目是否已与集成 ERP 系统同步?"><span class="mt-icon-article-none"></span>如何判断 Procore 项目是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-projects-budget-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目的预算是否已与集成 ERP 系统同步?"><span class="mt-icon-article-none"></span>如何判断 Procore 项目的预算是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-the-subcontractor-invoices-and-payments-feature-for-procore-quickbooks" title="如何为 Procore + QuickBooks 设置分包商发票和付款功能?"><span class="mt-icon-article-none"></span>如何为 Procore + QuickBooks 设置分包商发票和付款功能?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-to-resolve-export-cannot-be-completed-because-the-number-of-line-items-does-not-match-up-quickbooks" title="如何解决导出到ERP时的"无法完成此导出,因为QuickBooks中的明细项数量与 Procore 中的数量不匹配"错误?"><span class="mt-icon-article-none"></span>如何解决导出到ERP时的"无法完成此导出,因为QuickBooks中的明细项数量与 Procore 中的数量不匹配"错误?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-to-resolve-there-was-an-error-adding-modifying-deleting-because-it-is-already-in-use-quickbooks" title="在导出到 ERP 时,如何解决“添加、修改或删除 XXXXXX-XXXXXXXXXXX 时出错,因为已在使用中。”错误"><span class="mt-icon-article-none"></span>在导出到 ERP 时,如何解决“添加、修改或删除 XXXXXX-XXXXXXXXXXX 时出错,因为已在使用中。”错误</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-cost-types-and-how-does-our-erp-integration-support-them" title="有哪些“成本类型”以及我们的 ERP 集成如何支持这些成本类型?"><span class="mt-icon-article-none"></span>有哪些“成本类型”以及我们的 ERP 集成如何支持这些成本类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-i-do-when-a-commimtment-fails-to-export-from-the-erp-integrations-tool" title="当合约未能从 ERP 集成工具中导出时,我该怎么办?"><span class="mt-icon-article-none"></span>当合约未能从 ERP 集成工具中导出时,我该怎么办?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-erp-icons-mean" title="ERP 图标的含义是什么?"><span class="mt-icon-article-none"></span>ERP 图标的含义是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-if-i-have-duplicate-company-records-in-procores-company-directory" title="如果 Procore 公司目录中存在重复公司记录会怎样?"><span class="mt-icon-article-none"></span>如果 Procore 公司目录中存在重复公司记录会怎样?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="什么是会计审批者角色?"><span class="mt-icon-article-none"></span>什么是会计审批者角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-commitments-number" title="合约“编号 (#)”的最大字符长度是多少?"><span class="mt-icon-article-none"></span>合约“编号 (#)”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-commitment-title" title="合约“标题”的最大字符长度是多少?"><span class="mt-icon-article-none"></span>合约“标题”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-company-name-in-the-directory-tool" title="目录工具中“公司名称”的最大字符长度是多少?"><span class="mt-icon-article-none"></span>目录工具中“公司名称”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-budget-views-should-i-add-to-my-projects" title="我应该将哪些预算视图添加到我的 Procore 项目中?"><span class="mt-icon-article-none"></span>我应该将哪些预算视图添加到我的 Procore 项目中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-category-concept" title="哪些集成 ERP 系统支持“成本类型”概念?"><span class="mt-icon-article-none"></span>哪些集成 ERP 系统支持“成本类型”概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-sub-job-concept" title="哪些集成 ERP 系统支持“子作业”概念?"><span class="mt-icon-article-none"></span>哪些集成 ERP 系统支持“子作业”概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-setting-do-i-enable-in-quickbooks-to-export-invoices-with-the-erp-integrations-tool" title="在 QuickBooks® 中启用哪个设置才能使用 ERP 集成工具导出发票?"><span class="mt-icon-article-none"></span>在 QuickBooks® 中启用哪个设置才能使用 ERP 集成工具导出发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-a-notification-when-an-item-is-rejected-from-erp" title="当项被 ERP 拒绝时,谁会收到通知?"><span class="mt-icon-article-none"></span>当项被 ERP 拒绝时,谁会收到通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-or-activate-procore-projects" title="为什么我无法创建或激活 Procore 项目?"><span class="mt-icon-article-none"></span>为什么我无法创建或激活 Procore 项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-accept-reject-options-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到接受/拒绝选项?"><span class="mt-icon-article-none"></span>为什么我在 ERP 集成工具中看不到接受/拒绝选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-sync-or-refresh-buttons-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到“同步”或“刷新”按钮?"><span class="mt-icon-article-none"></span>为什么我在 ERP 集成工具中看不到“同步”或“刷新”按钮?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-procore-project-missing-from-the-erp-integrations-tool" title="为什么 ERP 集成工具中缺少我的 Procore 项目?"><span class="mt-icon-article-none"></span>为什么 ERP 集成工具中缺少我的 Procore 项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-the-send-to-erp-button-grayed-out-in-the-project-creation-assistant" title="为什么“发送到 ERP”按钮变暗并且在项目创建助手中不可用?"><span class="mt-icon-article-none"></span>为什么“发送到 ERP”按钮变暗并且在项目创建助手中不可用?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-reports"><span id="reports"></span><h5>reports</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-create-a-list-of-overdue-pccos" title="我可以创建一份逾期主合同变更通知单 (PCCO) 的清单吗?"><span class="mt-icon-article-none"></span>我可以创建一份逾期主合同变更通知单 (PCCO) 的清单吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/is-there-a-way-to-see-all-the-open-items-in-procore-assigned-to-me" title="是否有办法查看 Procore 中分配给我的所有未完成项?"><span class="mt-icon-article-none"></span>是否有办法查看 Procore 中分配给我的所有未完成项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-additional-user-permissions-are-required-to-access-reportable-data-with-360-reporting" title="使用 360 度报告访问可报告数据需要哪些额外的用户权限?"><span class="mt-icon-article-none"></span>使用 360 度报告访问可报告数据需要哪些额外的用户权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-financial-line-items-in-360-reporting" title="360 度报告中有哪些财务明细项?"><span class="mt-icon-article-none"></span>360 度报告中有哪些财务明细项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-when-i-share-a-report-with-another-user" title="当我与其他 Procore 用户共享报告时会怎样?"><span class="mt-icon-article-none"></span>当我与其他 Procore 用户共享报告时会怎样?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-report-templates-are-available-in-the-360-reporting-tools" title="360 度报告工具中提供哪些报告模板?"><span class="mt-icon-article-none"></span>360 度报告工具中提供哪些报告模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-data-columns-are-in-a-field-production-report" title="现场生产报告中包含哪些数据列?"><span class="mt-icon-article-none"></span>现场生产报告中包含哪些数据列?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-update-data-in-the-field-production-report" title="哪些 Procore 项目工具会更新现场生产报告中的数据?"><span class="mt-icon-article-none"></span>哪些 Procore 项目工具会更新现场生产报告中的数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-financial-health-section-of-the-health-dashboard-not-configured" title="为什么没有配置健康仪表板的财务健康部分?"><span class="mt-icon-article-none"></span>为什么没有配置健康仪表板的财务健康部分?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-the-add-visual-button-unavailable-on-a-single-tool-report" title="为什么"添加视觉元素"按钮在单个工具报告上不可用?"><span class="mt-icon-article-none"></span>为什么"添加视觉元素"按钮在单个工具报告上不可用?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-rfi"><span id="rfi"></span><h5>rfi</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-create-an-rfi-with-a-duplicate-number" title="我能否创建具有重复编号的 RFI?"><span class="mt-icon-article-none"></span>我能否创建具有重复编号的 RFI?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-provide-users-with-read-only-level-permissions-with-limited-access-to-update-information-in-procore" title="我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?"><span class="mt-icon-article-none"></span>我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/does-a-user-need-to-log-in-to-procore-to-respond-to-an-rfi" title="用户是否需要登录 Procore 才能答复 RFI?"><span class="mt-icon-article-none"></span>用户是否需要登录 Procore 才能答复 RFI?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-assign-numbers-to-rfis" title="Procore 如何为 RFI 分配编号?"><span class="mt-icon-article-none"></span>Procore 如何为 RFI 分配编号?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-access-an-rfi-as-an-assignee" title="作为任务分配对象,如何访问 RFI?"><span class="mt-icon-article-none"></span>作为任务分配对象,如何访问 RFI?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-change-my-web-browsers-default-email-client-for-mailto-links" title="如何为 mailto 链接更改我的 Web 浏览器的默认电子邮件客户端?"><span class="mt-icon-article-none"></span>如何为 mailto 链接更改我的 Web 浏览器的默认电子邮件客户端?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-control-which-emails-are-sent-by-procore-during-the-rfi-process" title="如何控制 Procore 在 RFI 过程中发送的电子邮件?"><span class="mt-icon-article-none"></span>如何控制 Procore 在 RFI 过程中发送的电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-filter-items-by-multi-tiered-locations" title="如何按多层地点筛选项?"><span class="mt-icon-article-none"></span>如何按多层地点筛选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-filter-out-recycled-items-from-a-custom-rfis-report" title="如何从自定义 RFI 报告中筛选掉“已回收”项?"><span class="mt-icon-article-none"></span>如何从自定义 RFI 报告中筛选掉“已回收”项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-mark-an-assignee-as-a-required-responder-on-an-rfi" title="如何将任务分配对象标记为 RFI 的所需答复者?"><span class="mt-icon-article-none"></span>如何将任务分配对象标记为 RFI 的所需答复者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-submit-a-response-to-a-draft-rfi-when-i-am-the-rfi-manager" title="如果我是 RFI 经理,如何提交对 RFI“草稿”的答复?"><span class="mt-icon-article-none"></span>如果我是 RFI 经理,如何提交对 RFI“草稿”的答复?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-configurable-fieldsets-and-which-procore-tools-support-them" title="什么是可配置字段集以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是可配置字段集以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-fields-and-which-procore-tools-support-them" title="什么是自定义字段以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是自定义字段以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-sections-and-which-procore-tools-support-them" title="什么是自定义部分以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是自定义部分以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-multi-tiered-locations" title="什么是多层地点?"><span class="mt-icon-article-none"></span>什么是多层地点?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore 默认成本编号有哪些?"><span class="mt-icon-article-none"></span>Procore 默认成本编号有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="什么是 Procore 中的“相关项”?"><span class="mt-icon-article-none"></span>什么是 Procore 中的“相关项”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-fieldset-configurations-are-recommended-for-configurable-fieldsets" title="对于可配置字段集推荐使用哪些配置?"><span class="mt-icon-article-none"></span>对于可配置字段集推荐使用哪些配置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-rfis-tool" title="项目的 RFI 工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的 RFI 工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-draft-rfi" title="什么是 RFI“草稿”?"><span class="mt-icon-article-none"></span>什么是 RFI“草稿”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-advanced-search-symbol-in-procore" title="Procore 中高级搜索符号是什么?"><span class="mt-icon-article-none"></span>Procore 中高级搜索符号是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-rfi" title="什么是 RFI?"><span class="mt-icon-article-none"></span>什么是 RFI?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="什么是 Procore 回收站?"><span class="mt-icon-article-none"></span>什么是 Procore 回收站?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-distribution-group-and-a-distribution-list" title="Procore 中的通讯组和通讯名单有什么区别?"><span class="mt-icon-article-none"></span>Procore 中的通讯组和通讯名单有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-document-management-attachments-and-attachments-from-other-tools" title="文档管理附件和来自其他工具的附件有什么区别?"><span class="mt-icon-article-none"></span>文档管理附件和来自其他工具的附件有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-rfi-manager-role" title="什么是 RFI 经理角色?"><span class="mt-icon-article-none"></span>什么是 RFI 经理角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-options-do-i-have-for-numbering-rfis-in-procore" title="在 Procore 中为 RFI 编号有哪些选项?"><span class="mt-icon-article-none"></span>在 Procore 中为 RFI 编号有哪些选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/whats-the-difference-between-adding-an-assignee-to-an-rfi-and-forwarding-an-rfi-for-review" title="将任务分配对象添加到 RFI 和转发 RFI 供审核之间有什么区别?"><span class="mt-icon-article-none"></span>将任务分配对象添加到 RFI 和转发 RFI 供审核之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-does-the-rfis-tool-send-email-notifications" title="RFI 工具何时发送电子邮件通知?"><span class="mt-icon-article-none"></span>RFI 工具何时发送电子邮件通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-do-the-selections-in-the-spec-sections-drop-down-list-come-from" title=""规范分项"下拉列表中的选项从何而来?"><span class="mt-icon-article-none"></span>"规范分项"下拉列表中的选项从何而来?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-rfis-tool-can-be-configured-as-required-optional-or-hidden" title="RFI 工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>RFI 工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-can-i-use-to-create-a-change-event" title="我可以使用哪些 Procore 工具创建变更事件?"><span class="mt-icon-article-none"></span>我可以使用哪些 Procore 工具创建变更事件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-let-me-view-a-digital-image-attachment-in-a-map-view" title="哪些 Procore 工具可让我在地图视图中查看数字图像附件?"><span class="mt-icon-article-none"></span>哪些 Procore 工具可让我在地图视图中查看数字图像附件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="哪些 Procore 工具支持细分权限?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-tools-can-attach-document-management-files" title="哪些工具可以添加文档管理文件?"><span class="mt-icon-article-none"></span>哪些工具可以添加文档管理文件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-can-be-designated-as-an-assignee-on-an-rfi" title="谁可以被指定为 RFI 的“任务分配对象”?"><span class="mt-icon-article-none"></span>谁可以被指定为 RFI 的“任务分配对象”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-can-view-a-draft-rfi" title="谁可以查看 RFI“草稿”?"><span class="mt-icon-article-none"></span>谁可以查看 RFI“草稿”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-delete-items-in-procore" title="为什么不能在 Procore 中删除项?"><span class="mt-icon-article-none"></span>为什么不能在 Procore 中删除项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-do-some-of-our-projects-rfi-numbers-have-two-prefixes" title="为什么我们项目的某些 RFI 编号有两个前缀?"><span class="mt-icon-article-none"></span>为什么我们项目的某些 RFI 编号有两个前缀?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-ryvit"><span id="ryvit"></span><h5>ryvit</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-accounting-approvers-notified-when-data-is-awaiting-acceptance-in-the-erp-integrations-tool" title="当数据在 ERP 集成工具中等待验收时,是否会通知会计审批者?"><span class="mt-icon-article-none"></span>当数据在 ERP 集成工具中等待验收时,是否会通知会计审批者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-change-the-selected-vendor-type-after-a-company-has-been-synced" title="我能否在公司同步后更改选定的供应商类型?"><span class="mt-icon-article-none"></span>我能否在公司同步后更改选定的供应商类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-customize-the-numbering-system-for-financial-management-objects-in-procore" title="我能否在 Procore 中自定义财务对象的编号系统?"><span class="mt-icon-article-none"></span>我能否在 Procore 中自定义财务对象的编号系统?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-edit-or-delete-a-commitment-after-its-been-synced-with-an-erp-integration" title="合约与集成 ERP 系统同步后,我能否编辑或删除?"><span class="mt-icon-article-none"></span>合约与集成 ERP 系统同步后,我能否编辑或删除?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-project-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目是否已与集成 ERP 系统同步?"><span class="mt-icon-article-none"></span>如何判断 Procore 项目是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-projects-budget-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目的预算是否已与集成 ERP 系统同步?"><span class="mt-icon-article-none"></span>如何判断 Procore 项目的预算是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-export-cost-forecast-data-from-a-procore-budget-to-erp" title="如何将成本预测数据从 Procore 预算导出到 ERP"><span class="mt-icon-article-none"></span>如何将成本预测数据从 Procore 预算导出到 ERP</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-often-can-i-sync-data-using-the-integration-by-ryvit" title="我可以使用 Ryvit 集成以何种频率同步数据?"><span class="mt-icon-article-none"></span>我可以使用 Ryvit 集成以何种频率同步数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-cost-types-and-how-does-our-erp-integration-support-them" title="有哪些“成本类型”以及我们的 ERP 集成如何支持这些成本类型?"><span class="mt-icon-article-none"></span>有哪些“成本类型”以及我们的 ERP 集成如何支持这些成本类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-data-is-synced-with-the-integration-by-ryvit-connector" title="哪些数据与 Ryvit 集成连接器同步?"><span class="mt-icon-article-none"></span>哪些数据与 Ryvit 集成连接器同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-i-do-when-a-commimtment-fails-to-export-from-the-erp-integrations-tool" title="当合约未能从 ERP 集成工具中导出时,我该怎么办?"><span class="mt-icon-article-none"></span>当合约未能从 ERP 集成工具中导出时,我该怎么办?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="什么是会计审批者角色?"><span class="mt-icon-article-none"></span>什么是会计审批者角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-commitments-number" title="合约“编号 (#)”的最大字符长度是多少?"><span class="mt-icon-article-none"></span>合约“编号 (#)”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-commitment-title" title="合约“标题”的最大字符长度是多少?"><span class="mt-icon-article-none"></span>合约“标题”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-company-name-in-the-directory-tool" title="目录工具中“公司名称”的最大字符长度是多少?"><span class="mt-icon-article-none"></span>目录工具中“公司名称”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-budget-views-should-i-add-to-my-projects" title="我应该将哪些预算视图添加到我的 Procore 项目中?"><span class="mt-icon-article-none"></span>我应该将哪些预算视图添加到我的 Procore 项目中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-category-concept" title="哪些集成 ERP 系统支持“成本类型”概念?"><span class="mt-icon-article-none"></span>哪些集成 ERP 系统支持“成本类型”概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-sub-job-concept" title="哪些集成 ERP 系统支持“子作业”概念?"><span class="mt-icon-article-none"></span>哪些集成 ERP 系统支持“子作业”概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-or-activate-procore-projects" title="为什么我无法创建或激活 Procore 项目?"><span class="mt-icon-article-none"></span>为什么我无法创建或激活 Procore 项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-wbs-custom-segments" title="为什么我不能创建 WBS 自定义细分?"><span class="mt-icon-article-none"></span>为什么我不能创建 WBS 自定义细分?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-accept-reject-options-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到接受/拒绝选项?"><span class="mt-icon-article-none"></span>为什么我在 ERP 集成工具中看不到接受/拒绝选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-sync-or-refresh-buttons-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到“同步”或“刷新”按钮?"><span class="mt-icon-article-none"></span>为什么我在 ERP 集成工具中看不到“同步”或“刷新”按钮?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-the-send-to-erp-button-grayed-out-in-the-project-creation-assistant" title="为什么“发送到 ERP”按钮变暗并且在项目创建助手中不可用?"><span class="mt-icon-article-none"></span>为什么“发送到 ERP”按钮变暗并且在项目创建助手中不可用?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-sage-100"><span id="sage-100"></span><h5>sage-100</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-accounting-approvers-notified-when-data-is-awaiting-acceptance-in-the-erp-integrations-tool" title="当数据在 ERP 集成工具中等待验收时,是否会通知会计审批者?"><span class="mt-icon-article-none"></span>当数据在 ERP 集成工具中等待验收时,是否会通知会计审批者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-pending-commitments-automatically-synced-with-integrated-erp-systems" title="待处理合约是否会与集成 ERP 系统自动同步?"><span class="mt-icon-article-none"></span>待处理合约是否会与集成 ERP 系统自动同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-change-the-selected-vendor-type-after-a-company-has-been-synced" title="我能否在公司同步后更改选定的供应商类型?"><span class="mt-icon-article-none"></span>我能否在公司同步后更改选定的供应商类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-customize-the-numbering-system-for-financial-management-objects-in-procore" title="我能否在 Procore 中自定义财务对象的编号系统?"><span class="mt-icon-article-none"></span>我能否在 Procore 中自定义财务对象的编号系统?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-edit-or-delete-a-commitment-after-its-been-synced-with-an-erp-integration" title="合约与集成 ERP 系统同步后,我能否编辑或删除?"><span class="mt-icon-article-none"></span>合约与集成 ERP 系统同步后,我能否编辑或删除?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-export-procore-budget-modifications-to-an-integrated-erp-system" title="我可以将 Procore 预算修改导出到集成 ERP 系统吗?"><span class="mt-icon-article-none"></span>我可以将 Procore 预算修改导出到集成 ERP 系统吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/does-the-hh2-synchronization-process-for-sage-100-contractor-require-a-terminal-server" title="Sage 100 Contractor 的 hh2 同步过程是否需要终端服务器?"><span class="mt-icon-article-none"></span>Sage 100 Contractor 的 hh2 同步过程是否需要终端服务器?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-project-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目是否已与集成 ERP 系统同步?"><span class="mt-icon-article-none"></span>如何判断 Procore 项目是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-projects-budget-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目的预算是否已与集成 ERP 系统同步?"><span class="mt-icon-article-none"></span>如何判断 Procore 项目的预算是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-the-hh2-synchronization-client-connect-procore-to-sage-100-contractor" title="hh2 同步客户端如何将 Procore 连接到 Sage 100 Contractor?"><span class="mt-icon-article-none"></span>hh2 同步客户端如何将 Procore 连接到 Sage 100 Contractor?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-the-hh2-synchronization-client-transmit-data" title="hh2 同步客户端如何传输数据?"><span class="mt-icon-article-none"></span>hh2 同步客户端如何传输数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-often-can-i-sync-data-between-sage-100-contractor-and-procore" title="我可在 Sage 100 Contractor 和 Procore 之间以何种频率同步数据?"><span class="mt-icon-article-none"></span>我可在 Sage 100 Contractor 和 Procore 之间以何种频率同步数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-cost-types-and-how-does-our-erp-integration-support-them" title="有哪些“成本类型”以及我们的 ERP 集成如何支持这些成本类型?"><span class="mt-icon-article-none"></span>有哪些“成本类型”以及我们的 ERP 集成如何支持这些成本类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-data-is-synced-between-procore-and-sage-100-contractor" title="Procore 和 Sage 100 Contractor 之间同步哪些数据?"><span class="mt-icon-article-none"></span>Procore 和 Sage 100 Contractor 之间同步哪些数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-i-do-when-a-commimtment-fails-to-export-from-the-erp-integrations-tool" title="当合约未能从 ERP 集成工具中导出时,我该怎么办?"><span class="mt-icon-article-none"></span>当合约未能从 ERP 集成工具中导出时,我该怎么办?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-erp-icons-mean" title="ERP 图标的含义是什么?"><span class="mt-icon-article-none"></span>ERP 图标的含义是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-if-i-have-duplicate-company-records-in-procores-company-directory" title="如果 Procore 公司目录中存在重复公司记录会怎样?"><span class="mt-icon-article-none"></span>如果 Procore 公司目录中存在重复公司记录会怎样?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="什么是会计审批者角色?"><span class="mt-icon-article-none"></span>什么是会计审批者角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-commitments-number" title="合约“编号 (#)”的最大字符长度是多少?"><span class="mt-icon-article-none"></span>合约“编号 (#)”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-commitment-title" title="合约“标题”的最大字符长度是多少?"><span class="mt-icon-article-none"></span>合约“标题”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-company-name-in-the-directory-tool" title="目录工具中“公司名称”的最大字符长度是多少?"><span class="mt-icon-article-none"></span>目录工具中“公司名称”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what's-the-difference-between-a-job-a-parent-job-and-a-sub-job" title="作业、父作业和子作业之间有何区别?"><span class="mt-icon-article-none"></span>作业、父作业和子作业之间有何区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-budget-views-should-i-add-to-my-projects" title="我应该将哪些预算视图添加到我的 Procore 项目中?"><span class="mt-icon-article-none"></span>我应该将哪些预算视图添加到我的 Procore 项目中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-category-concept" title="哪些集成 ERP 系统支持“成本类型”概念?"><span class="mt-icon-article-none"></span>哪些集成 ERP 系统支持“成本类型”概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-sub-job-concept" title="哪些集成 ERP 系统支持“子作业”概念?"><span class="mt-icon-article-none"></span>哪些集成 ERP 系统支持“子作业”概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-a-notification-when-an-item-is-rejected-from-erp" title="当项被 ERP 拒绝时,谁会收到通知?"><span class="mt-icon-article-none"></span>当项被 ERP 拒绝时,谁会收到通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-or-activate-procore-projects" title="为什么我无法创建或激活 Procore 项目?"><span class="mt-icon-article-none"></span>为什么我无法创建或激活 Procore 项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-accept-reject-options-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到接受/拒绝选项?"><span class="mt-icon-article-none"></span>为什么我在 ERP 集成工具中看不到接受/拒绝选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-sync-or-refresh-buttons-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到“同步”或“刷新”按钮?"><span class="mt-icon-article-none"></span>为什么我在 ERP 集成工具中看不到“同步”或“刷新”按钮?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-procore-project-missing-from-the-erp-integrations-tool" title="为什么 ERP 集成工具中缺少我的 Procore 项目?"><span class="mt-icon-article-none"></span>为什么 ERP 集成工具中缺少我的 Procore 项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-the-send-to-erp-button-grayed-out-in-the-project-creation-assistant" title="为什么“发送到 ERP”按钮变暗并且在项目创建助手中不可用?"><span class="mt-icon-article-none"></span>为什么“发送到 ERP”按钮变暗并且在项目创建助手中不可用?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-sage-300-cre"><span id="sage-300-cre"></span><h5>sage-300-cre</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-accounting-approvers-notified-when-data-is-awaiting-acceptance-in-the-erp-integrations-tool" title="当数据在 ERP 集成工具中等待验收时,是否会通知会计审批者?"><span class="mt-icon-article-none"></span>当数据在 ERP 集成工具中等待验收时,是否会通知会计审批者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-pending-commitments-automatically-synced-with-integrated-erp-systems" title="待处理合约是否会与集成 ERP 系统自动同步?"><span class="mt-icon-article-none"></span>待处理合约是否会与集成 ERP 系统自动同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-change-the-selected-vendor-type-after-a-company-has-been-synced" title="我能否在公司同步后更改选定的供应商类型?"><span class="mt-icon-article-none"></span>我能否在公司同步后更改选定的供应商类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-customize-the-numbering-system-for-financial-management-objects-in-procore" title="我能否在 Procore 中自定义财务对象的编号系统?"><span class="mt-icon-article-none"></span>我能否在 Procore 中自定义财务对象的编号系统?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-delete-a-sage-300-cre-cost-code-cost-type-or-vendor" title="我可以从 Procore 中删除 Sage 300 CRE 成本编号、成本类型或供应商吗?"><span class="mt-icon-article-none"></span>我可以从 Procore 中删除 Sage 300 CRE 成本编号、成本类型或供应商吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-edit-or-delete-a-commitment-after-its-been-synced-with-an-erp-integration" title="合约与集成 ERP 系统同步后,我能否编辑或删除?"><span class="mt-icon-article-none"></span>合约与集成 ERP 系统同步后,我能否编辑或删除?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-export-procore-budget-modifications-to-an-integrated-erp-system" title="我可以将 Procore 预算修改导出到集成 ERP 系统吗?"><span class="mt-icon-article-none"></span>我可以将 Procore 预算修改导出到集成 ERP 系统吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/does-the-hh2-synchronization-process-for-sage-300-cre-require-a-terminal-server" title="Sage 300 CRE 的 hh2 同步流程是否需要终端服务器?"><span class="mt-icon-article-none"></span>Sage 300 CRE 的 hh2 同步流程是否需要终端服务器?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-i-need-to-create-a-dedicated-user-account-in-sage-for-the-hh2-syncrhonization-client" title="我是否需要在 Sage 300 CRE 中为 hh2 同步客户端创建专用用户账户?"><span class="mt-icon-article-none"></span>我是否需要在 Sage 300 CRE 中为 hh2 同步客户端创建专用用户账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-project-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目是否已与集成 ERP 系统同步?"><span class="mt-icon-article-none"></span>如何判断 Procore 项目是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-projects-budget-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目的预算是否已与集成 ERP 系统同步?"><span class="mt-icon-article-none"></span>如何判断 Procore 项目的预算是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-hh2-connect-to-the-sage-300-cre-server" title="hh2 如何连接到 Sage 300 CRE 服务器?"><span class="mt-icon-article-none"></span>hh2 如何连接到 Sage 300 CRE 服务器?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-the-hh2-synchronization-client-transmit-data" title="hh2 同步客户端如何传输数据?"><span class="mt-icon-article-none"></span>hh2 同步客户端如何传输数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-a-new-sage-300-cre-cost-code-or-cost-type" title="如何添加新的 Sage 300 CRE 成本编号或成本类型?"><span class="mt-icon-article-none"></span>如何添加新的 Sage 300 CRE 成本编号或成本类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-export-a-project-budget-from-procore-to-sage-300-cre" title="如何将项目预算从 Procore 导出到 Sage 300 CRE?"><span class="mt-icon-article-none"></span>如何将项目预算从 Procore 导出到 Sage 300 CRE?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-export-cost-forecast-data-from-a-procore-budget-to-erp" title="如何将成本预测数据从 Procore 预算导出到 ERP"><span class="mt-icon-article-none"></span>如何将成本预测数据从 Procore 预算导出到 ERP</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-often-can-i-sync-data-between-sage-300-cre-and-procore" title="我可在 Sage 300 CRE 和 Procore 之间以何种频率同步数据?"><span class="mt-icon-article-none"></span>我可在 Sage 300 CRE 和 Procore 之间以何种频率同步数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-to-resolve-commitment-with-code-already-exists-sage-300" title="导出到 ERP 时如何解决“合约编号已存在”错误"><span class="mt-icon-article-none"></span>导出到 ERP 时如何解决“合约编号已存在”错误</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-to-resolve-import-operation-took-longer-than-the-set-timeout-sage" title="导出到 ERP 时如何解决“导入操作花费的时间超过设置的超时时间”错误?"><span class="mt-icon-article-none"></span>导出到 ERP 时如何解决“导入操作花费的时间超过设置的超时时间”错误?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-cost-types-and-how-does-our-erp-integration-support-them" title="有哪些“成本类型”以及我们的 ERP 集成如何支持这些成本类型?"><span class="mt-icon-article-none"></span>有哪些“成本类型”以及我们的 ERP 集成如何支持这些成本类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-data-is-synced-between-sage-300-cre-and-procore" title="Sage 300 CRE® 和 Procore 之间同步了哪些数据?"><span class="mt-icon-article-none"></span>Sage 300 CRE® 和 Procore 之间同步了哪些数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-i-do-when-a-commimtment-fails-to-export-from-the-erp-integrations-tool" title="当合约未能从 ERP 集成工具中导出时,我该怎么办?"><span class="mt-icon-article-none"></span>当合约未能从 ERP 集成工具中导出时,我该怎么办?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-erp-icons-mean" title="ERP 图标的含义是什么?"><span class="mt-icon-article-none"></span>ERP 图标的含义是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-if-i-have-duplicate-company-records-in-procores-company-directory" title="如果 Procore 公司目录中存在重复公司记录会怎样?"><span class="mt-icon-article-none"></span>如果 Procore 公司目录中存在重复公司记录会怎样?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="什么是会计审批者角色?"><span class="mt-icon-article-none"></span>什么是会计审批者角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-commitments-number" title="合约“编号 (#)”的最大字符长度是多少?"><span class="mt-icon-article-none"></span>合约“编号 (#)”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-commitment-title" title="合约“标题”的最大字符长度是多少?"><span class="mt-icon-article-none"></span>合约“标题”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-company-name-in-the-directory-tool" title="目录工具中“公司名称”的最大字符长度是多少?"><span class="mt-icon-article-none"></span>目录工具中“公司名称”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what's-the-difference-between-a-job-a-parent-job-and-a-sub-job" title="作业、父作业和子作业之间有何区别?"><span class="mt-icon-article-none"></span>作业、父作业和子作业之间有何区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-budget-views-should-i-add-to-my-projects" title="我应该将哪些预算视图添加到我的 Procore 项目中?"><span class="mt-icon-article-none"></span>我应该将哪些预算视图添加到我的 Procore 项目中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-cost-code-formats-are-supported-by-erp" title="我的 ERP 集成支持哪些成本编号格式?"><span class="mt-icon-article-none"></span>我的 ERP 集成支持哪些成本编号格式?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-insurance-fields-in-a-procore-company-sync-with-sage-300-cre" title="Procore 公司的哪些保险字段与 Sage 300 CRE 供应商同步?"><span class="mt-icon-article-none"></span>Procore 公司的哪些保险字段与 Sage 300 CRE 供应商同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-category-concept" title="哪些集成 ERP 系统支持“成本类型”概念?"><span class="mt-icon-article-none"></span>哪些集成 ERP 系统支持“成本类型”概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-sub-job-concept" title="哪些集成 ERP 系统支持“子作业”概念?"><span class="mt-icon-article-none"></span>哪些集成 ERP 系统支持“子作业”概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-a-notification-when-an-item-is-rejected-from-erp" title="当项被 ERP 拒绝时,谁会收到通知?"><span class="mt-icon-article-none"></span>当项被 ERP 拒绝时,谁会收到通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-recent-changes-to-my-sage-database-missing-in-procore" title="为什么 Procore 中缺少对 Sage 数据库的最近更改?"><span class="mt-icon-article-none"></span>为什么 Procore 中缺少对 Sage 数据库的最近更改?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-or-activate-procore-projects" title="为什么我无法创建或激活 Procore 项目?"><span class="mt-icon-article-none"></span>为什么我无法创建或激活 Procore 项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-accept-reject-options-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到接受/拒绝选项?"><span class="mt-icon-article-none"></span>为什么我在 ERP 集成工具中看不到接受/拒绝选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-sync-or-refresh-buttons-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到“同步”或“刷新”按钮?"><span class="mt-icon-article-none"></span>为什么我在 ERP 集成工具中看不到“同步”或“刷新”按钮?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-do-i-see-an-error-when-trying-to-export-data-to-sage-300-cre" title="为什么我在尝试将数据导出到 Sage 300 CRE 时看到错误?"><span class="mt-icon-article-none"></span>为什么我在尝试将数据导出到 Sage 300 CRE 时看到错误?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-procore-project-missing-from-the-erp-integrations-tool" title="为什么 ERP 集成工具中缺少我的 Procore 项目?"><span class="mt-icon-article-none"></span>为什么 ERP 集成工具中缺少我的 Procore 项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-sage-data-not-syncing" title="为什么我的 Sage 300 CRE 数据不同步?"><span class="mt-icon-article-none"></span>为什么我的 Sage 300 CRE 数据不同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-the-send-to-erp-button-grayed-out-in-the-project-creation-assistant" title="为什么“发送到 ERP”按钮变暗并且在项目创建助手中不可用?"><span class="mt-icon-article-none"></span>为什么“发送到 ERP”按钮变暗并且在项目创建助手中不可用?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-sage-intacct"><span id="sage-intacct"></span><h5>sage-intacct</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-project-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目是否已与集成 ERP 系统同步?"><span class="mt-icon-article-none"></span>如何判断 Procore 项目是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-if-i-have-duplicate-company-records-in-procores-company-directory" title="如果 Procore 公司目录中存在重复公司记录会怎样?"><span class="mt-icon-article-none"></span>如果 Procore 公司目录中存在重复公司记录会怎样?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="什么是会计审批者角色?"><span class="mt-icon-article-none"></span>什么是会计审批者角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-cost-code-formats-are-supported-by-erp" title="我的 ERP 集成支持哪些成本编号格式?"><span class="mt-icon-article-none"></span>我的 ERP 集成支持哪些成本编号格式?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-a-notification-when-an-item-is-rejected-from-erp" title="当项被 ERP 拒绝时,谁会收到通知?"><span class="mt-icon-article-none"></span>当项被 ERP 拒绝时,谁会收到通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-accept-reject-options-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到接受/拒绝选项?"><span class="mt-icon-article-none"></span>为什么我在 ERP 集成工具中看不到接受/拒绝选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-procore-project-missing-from-the-erp-integrations-tool" title="为什么 ERP 集成工具中缺少我的 Procore 项目?"><span class="mt-icon-article-none"></span>为什么 ERP 集成工具中缺少我的 Procore 项目?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-schedule"><span id="schedule"></span><h5>schedule</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-export-a-lookahead-schedule" title="可以导出展望进度计划吗?"><span class="mt-icon-article-none"></span>可以导出展望进度计划吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-update-the-percent-complete-field-on-the-web-application" title="我能否更新 Procore Web 应用程序上的“完成百分比”字段?"><span class="mt-icon-article-none"></span>我能否更新 Procore Web 应用程序上的“完成百分比”字段?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/does-the-master-schedule-update-when-i-make-a-change-to-a-lookahead-schedule" title="对展望进度计划进行更改时,主进度计划是否会更新?"><span class="mt-icon-article-none"></span>对展望进度计划进行更改时,主进度计划是否会更新?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-edit-a-project-schedule-in-procore" title="如何在 Procore 中编辑项目进度计划?"><span class="mt-icon-article-none"></span>如何在 Procore 中编辑项目进度计划?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/How-do-I-get-the-percent-complete-updated-in-the-native-schedule-file" title="如何在本地进度计划文件中更新完成百分比?"><span class="mt-icon-article-none"></span>如何在本地进度计划文件中更新完成百分比?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/should-i-integrate-my-microsoft-project-schedule-in-procores-web-application-or-procore-drive" title="是否应该将 Microsoft Project 进度计划集成到 Procore Web 应用程序或 Procore Drive?"><span class="mt-icon-article-none"></span>是否应该将 Microsoft Project 进度计划集成到 Procore Web 应用程序或 Procore Drive?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-project-level-schedule-tool" title="项目级别进度计划工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目级别进度计划工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-construction-projects-schedule" title="什么是建设工程项目的进度计划?"><span class="mt-icon-article-none"></span>什么是建设工程项目的进度计划?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-options-are-available-for-the-gantt-chart-view-in-the-project-level-schedule-tool" title="项目级别进度计划工具中的甘特图视图有哪些可用选项?"><span class="mt-icon-article-none"></span>项目级别进度计划工具中的甘特图视图有哪些可用选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-emails-are-affected-by-the-updated-inbound-email-communication-settings-in-procore" title="Procore 中更新的入站电子邮件通信设置会影响哪些电子邮件?"><span class="mt-icon-article-none"></span>Procore 中更新的入站电子邮件通信设置会影响哪些电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="哪些 Procore 工具支持细分权限?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-versions-of-microsoft-project-does-procore-support" title="Procore 支持哪些版本的 Microsoft Project?"><span class="mt-icon-article-none"></span>Procore 支持哪些版本的 Microsoft Project?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-the-delete-button-dimmed-and-not-available--in-the-schedule-tool-of-procore-drive" title="为什么删除按钮在 Procore Drive 的进度计划工具中变暗且不可用?"><span class="mt-icon-article-none"></span>为什么删除按钮在 Procore Drive 的进度计划工具中变暗且不可用?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-security"><span id="security"></span><h5>security</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-is-security-handled-with-third-party-applications" title="如何处理第三方应用程序的安全问题?"><span class="mt-icon-article-none"></span>如何处理第三方应用程序的安全问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-encryption-standard-does-procore-use-to-protect-user-data" title="Procore 使用什么加密标准来保护用户数据?"><span class="mt-icon-article-none"></span>Procore 使用什么加密标准来保护用户数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-data-backup-strategy" title="Procore 的数据备份策略是什么?"><span class="mt-icon-article-none"></span>Procore 的数据备份策略是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-and-how-does-procore-store-customer-information" title="Procore 在哪里以及如何存储客户信息?"><span class="mt-icon-article-none"></span>Procore 在哪里以及如何存储客户信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-can-see-users-listed-in-a-project-directory" title="谁可以查看项目目录中列出的用户?"><span class="mt-icon-article-none"></span>谁可以查看项目目录中列出的用户?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-skilljar"><span id="skilljar"></span><h5>skilljar</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-integrate-my-lms-with-procore-certification" title="我可以将我的 LMS 与 Procore 认证集成吗?"><span class="mt-icon-article-none"></span>我可以将我的 LMS 与 Procore 认证集成吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-watch-procore-certification-and-continuing-education-courses-from-my-mobile-device" title="我可以从我的移动设备观看 Procore 认证和成人教育课程吗?"><span class="mt-icon-article-none"></span>我可以从我的移动设备观看 Procore 认证和成人教育课程吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-change-my-name-or-email-address-in-procore-certification" title="如何更改我在 Procore 认证中的姓名或电子邮件地址?"><span class="mt-icon-article-none"></span>如何更改我在 Procore 认证中的姓名或电子邮件地址?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-check-what-procore-tools-are-included-with-my-procore-account" title="如何查看我的 Procore 账户中包含哪些 Procore 工具?"><span class="mt-icon-article-none"></span>如何查看我的 Procore 账户中包含哪些 Procore 工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-sign-up-for-procore-certification-if-i-do-not-have-procore-login-credentials" title="如果我没有 Procore 登录凭证,该如何注册 Procore 认证?"><span class="mt-icon-article-none"></span>如果我没有 Procore 登录凭证,该如何注册 Procore 认证?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-view-incomplete-certification-or-ce-lessons" title="我如何查看未完成的认证或成人教育课程?"><span class="mt-icon-article-none"></span>我如何查看未完成的认证或成人教育课程?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/is-there-a-minimum-passing-score-for-procore-certification-quizzes" title="Procore 认证测验是否有最低及格分数?"><span class="mt-icon-article-none"></span>Procore 认证测验是否有最低及格分数?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-is-the-procore-certification-course-that-i'm-looking-for" title="正在寻找的 Procore 认证课程在哪里?"><span class="mt-icon-article-none"></span>正在寻找的 Procore 认证课程在哪里?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-getting-the-error-missing-authentication-cookie-when-viewing-certification-lessons" title="为什么在查看认证课程时会收到“缺少身份验证 Cookie”错误?"><span class="mt-icon-article-none"></span>为什么在查看认证课程时会收到“缺少身份验证 Cookie”错误?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-having-problems-playing-training-videos" title="为什么我在播放培训视频时遇到问题?"><span class="mt-icon-article-none"></span>为什么我在播放培训视频时遇到问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-unable-to-log-in-to-the-procore-certification-site" title="为什么我无法登录 Procore 认证网站?"><span class="mt-icon-article-none"></span>为什么我无法登录 Procore 认证网站?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-courses-not-showing-up-in-my-procore-certification-profile" title="为什么我的课程未显示在 Procore 认证资料中?"><span class="mt-icon-article-none"></span>为什么我的课程未显示在 Procore 认证资料中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-training-courses-missing" title="为什么我的培训课程不见了?"><span class="mt-icon-article-none"></span>为什么我的培训课程不见了?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-log-in-to-my-certification-analytics-dashboard" title="为什么无法登录认证分析仪表板?"><span class="mt-icon-article-none"></span>为什么无法登录认证分析仪表板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-procore-certified-certificate-missing" title="为什么我的 Procore 认证证书缺失?"><span class="mt-icon-article-none"></span>为什么我的 Procore 认证证书缺失?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-the-percentage-complete-less-than-100-for-a-procore-certification-course" title="为什么 Procore 认证课程的完成百分比低于 100%?"><span class="mt-icon-article-none"></span>为什么 Procore 认证课程的完成百分比低于 100%?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-was-the-procore-fundamentals-training-course-deprecated" title="为什么“Procore 基础知识”培训课程被弃用?"><span class="mt-icon-article-none"></span>为什么“Procore 基础知识”培训课程被弃用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-were-the-deep-dive-training-courses-deprecated" title="为什么“深入研究培训”课程被弃用?"><span class="mt-icon-article-none"></span>为什么“深入研究培训”课程被弃用?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-specifications"><span id="specifications"></span><h5>specifications</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-improve-the-accuracy-of-specification-section-identification" title="如何提高规范分项识别的准确性?"><span class="mt-icon-article-none"></span>如何提高规范分项识别的准确性?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-keep-track-of-emailed-specifications" title="如何跟踪通过电子邮件发送的规范?"><span class="mt-icon-article-none"></span>如何跟踪通过电子邮件发送的规范?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/should-i-enable-the-specifications-tool-on-my-project" title="我应该在项目中启用规范工具吗?"><span class="mt-icon-article-none"></span>我应该在项目中启用规范工具吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-configurable-fieldsets-and-which-procore-tools-support-them" title="什么是可配置字段集以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是可配置字段集以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-if-my-spec-sections-or-divisions-start-in-the-middle-of-a-page" title="如果规范分项或分部从页面中间开始怎么办?"><span class="mt-icon-article-none"></span>如果规范分项或分部从页面中间开始怎么办?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-specification-set" title="什么是规范集?"><span class="mt-icon-article-none"></span>什么是规范集?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-distribution-group-and-a-distribution-list" title="Procore 中的通讯组和通讯名单有什么区别?"><span class="mt-icon-article-none"></span>Procore 中的通讯组和通讯名单有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-do-the-selections-in-the-spec-sections-drop-down-list-come-from" title=""规范分项"下拉列表中的选项从何而来?"><span class="mt-icon-article-none"></span>"规范分项"下拉列表中的选项从何而来?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-can-procore-automatically-populate-when-uploading-specifications" title="上传规范时,Procore 可以自动填充哪些字段?"><span class="mt-icon-article-none"></span>上传规范时,Procore 可以自动填充哪些字段?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-specifications-tool-can-be-configured-as-required-optional-or-hidden" title="规范工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>规范工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-specification-uploads-failing" title="为什么我的规范上传失败?"><span class="mt-icon-article-none"></span>为什么我的规范上传失败?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-spectrum"><span id="spectrum"></span><h5>spectrum</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-accounting-approvers-notified-when-data-is-awaiting-acceptance-in-the-erp-integrations-tool" title="当数据在 ERP 集成工具中等待验收时,是否会通知会计审批者?"><span class="mt-icon-article-none"></span>当数据在 ERP 集成工具中等待验收时,是否会通知会计审批者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-pending-commitments-automatically-synced-with-integrated-erp-systems" title="待处理合约是否会与集成 ERP 系统自动同步?"><span class="mt-icon-article-none"></span>待处理合约是否会与集成 ERP 系统自动同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-change-the-selected-vendor-type-after-a-company-has-been-synced" title="我能否在公司同步后更改选定的供应商类型?"><span class="mt-icon-article-none"></span>我能否在公司同步后更改选定的供应商类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-customize-the-numbering-system-for-financial-management-objects-in-procore" title="我能否在 Procore 中自定义财务对象的编号系统?"><span class="mt-icon-article-none"></span>我能否在 Procore 中自定义财务对象的编号系统?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-edit-or-delete-a-commitment-after-its-been-synced-with-an-erp-integration" title="合约与集成 ERP 系统同步后,我能否编辑或删除?"><span class="mt-icon-article-none"></span>合约与集成 ERP 系统同步后,我能否编辑或删除?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-export-procore-budget-modifications-to-an-integrated-erp-system" title="我可以将 Procore 预算修改导出到集成 ERP 系统吗?"><span class="mt-icon-article-none"></span>我可以将 Procore 预算修改导出到集成 ERP 系统吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-project-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目是否已与集成 ERP 系统同步?"><span class="mt-icon-article-none"></span>如何判断 Procore 项目是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-projects-budget-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目的预算是否已与集成 ERP 系统同步?"><span class="mt-icon-article-none"></span>如何判断 Procore 项目的预算是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-often-can-i-sync-data-between-procore-and-viewpoint-spectrum" title="我多久可以在 Procore 和 Viewpoint® Spectrum® 之间同步数据一次?"><span class="mt-icon-article-none"></span>我多久可以在 Procore 和 Viewpoint® Spectrum® 之间同步数据一次?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-to-i-select-which-viewpoint-spectrum-jobs-appear-in-the-select-a-job-template-list-of-the-erp-integrations-tool" title="我该选择哪些 Viewpoint® Spectrum® 作业出现在 ERP 集成工具的“选择作业模板”列表中?"><span class="mt-icon-article-none"></span>我该选择哪些 Viewpoint® Spectrum® 作业出现在 ERP 集成工具的“选择作业模板”列表中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-cost-types-and-how-does-our-erp-integration-support-them" title="有哪些“成本类型”以及我们的 ERP 集成如何支持这些成本类型?"><span class="mt-icon-article-none"></span>有哪些“成本类型”以及我们的 ERP 集成如何支持这些成本类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-i-do-when-a-commimtment-fails-to-export-from-the-erp-integrations-tool" title="当合约未能从 ERP 集成工具中导出时,我该怎么办?"><span class="mt-icon-article-none"></span>当合约未能从 ERP 集成工具中导出时,我该怎么办?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-erp-icons-mean" title="ERP 图标的含义是什么?"><span class="mt-icon-article-none"></span>ERP 图标的含义是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-if-i-have-duplicate-company-records-in-procores-company-directory" title="如果 Procore 公司目录中存在重复公司记录会怎样?"><span class="mt-icon-article-none"></span>如果 Procore 公司目录中存在重复公司记录会怎样?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="什么是会计审批者角色?"><span class="mt-icon-article-none"></span>什么是会计审批者角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-commitments-number" title="合约“编号 (#)”的最大字符长度是多少?"><span class="mt-icon-article-none"></span>合约“编号 (#)”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-commitment-title" title="合约“标题”的最大字符长度是多少?"><span class="mt-icon-article-none"></span>合约“标题”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-company-name-in-the-directory-tool" title="目录工具中“公司名称”的最大字符长度是多少?"><span class="mt-icon-article-none"></span>目录工具中“公司名称”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-budget-views-should-i-add-to-my-projects" title="我应该将哪些预算视图添加到我的 Procore 项目中?"><span class="mt-icon-article-none"></span>我应该将哪些预算视图添加到我的 Procore 项目中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-category-concept" title="哪些集成 ERP 系统支持“成本类型”概念?"><span class="mt-icon-article-none"></span>哪些集成 ERP 系统支持“成本类型”概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-sub-job-concept" title="哪些集成 ERP 系统支持“子作业”概念?"><span class="mt-icon-article-none"></span>哪些集成 ERP 系统支持“子作业”概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-prime-contract-and-pcco-fields-are-synced-with-procore-and-viewpoint-spectrum" title="哪些主合同和主合同变更通知单字段与 Procore 和 Viewpoint Spectrum 同步?"><span class="mt-icon-article-none"></span>哪些主合同和主合同变更通知单字段与 Procore 和 Viewpoint Spectrum 同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-a-notification-when-an-item-is-rejected-from-erp" title="当项被 ERP 拒绝时,谁会收到通知?"><span class="mt-icon-article-none"></span>当项被 ERP 拒绝时,谁会收到通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-or-activate-procore-projects" title="为什么我无法创建或激活 Procore 项目?"><span class="mt-icon-article-none"></span>为什么我无法创建或激活 Procore 项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-accept-reject-options-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到接受/拒绝选项?"><span class="mt-icon-article-none"></span>为什么我在 ERP 集成工具中看不到接受/拒绝选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-sync-or-refresh-buttons-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到“同步”或“刷新”按钮?"><span class="mt-icon-article-none"></span>为什么我在 ERP 集成工具中看不到“同步”或“刷新”按钮?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-procore-project-missing-from-the-erp-integrations-tool" title="为什么 ERP 集成工具中缺少我的 Procore 项目?"><span class="mt-icon-article-none"></span>为什么 ERP 集成工具中缺少我的 Procore 项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-the-send-to-erp-button-grayed-out-in-the-project-creation-assistant" title="为什么“发送到 ERP”按钮变暗并且在项目创建助手中不可用?"><span class="mt-icon-article-none"></span>为什么“发送到 ERP”按钮变暗并且在项目创建助手中不可用?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-sso"><span id="sso"></span><h5>sso</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-log-into-the-procore-web-application-directly-if-my-company-has-implemented-sso" title="如果我的公司已实施单点登录,我可以直接登录 Procore Web 应用程序吗?"><span class="mt-icon-article-none"></span>如果我的公司已实施单点登录,我可以直接登录 Procore Web 应用程序吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-i-need-to-create-procore-user-accounts-if-our-company-implements-sso" title="如果我们公司实施单点登录,我是否需要创建 Procore 用户账户?"><span class="mt-icon-article-none"></span>如果我们公司实施单点登录,我是否需要创建 Procore 用户账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-procores-sso-integrations-support-single-or-multiple-domains" title="Procore 的单点登录集成支持单个域还是多个域?"><span class="mt-icon-article-none"></span>Procore 的单点登录集成支持单个域还是多个域?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-configure-sso-in-a-sandbox-environment-for-testing" title="在我的 Procore 公司账户中实施 SSO 之前,如何在沙箱环境中配置 SSO 以进行测试?"><span class="mt-icon-article-none"></span>在我的 Procore 公司账户中实施 SSO 之前,如何在沙箱环境中配置 SSO 以进行测试?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-log-into-procore-using-azure-ad-sso" title="如何使用Microsoft Azure AD (Entra ID)单点登录来登录 Procore?"><span class="mt-icon-article-none"></span>如何使用Microsoft Azure AD (Entra ID)单点登录来登录 Procore?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-procore-sso-with-okta" title="如何为 Procore 配置 Okta 单点登录 (SAML 2.0)?"><span class="mt-icon-article-none"></span>如何为 Procore 配置 Okta 单点登录 (SAML 2.0)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-single-sign-on-sso-with-procore" title="如何使用 Procore 设置单点登录 (SSO)?"><span class="mt-icon-article-none"></span>如何使用 Procore 设置单点登录 (SSO)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-update-an-expiring-x509-certificate-in-my-companys-procore-sso-configuration-settings" title="如何在公司的 Procore 单点登录配置设置中更新即将到期的 x509 证书?"><span class="mt-icon-article-none"></span>如何在公司的 Procore 单点登录配置设置中更新即将到期的 x509 证书?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-single-sign-on-sso" title="什么是单点登录 (SSO)?"><span class="mt-icon-article-none"></span>什么是单点登录 (SSO)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-sp-and-idp-initiated-sso" title="SP 发起的单点登录和 IdP 发起的单点登录之间有何区别?"><span class="mt-icon-article-none"></span>SP 发起的单点登录和 IdP 发起的单点登录之间有何区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-platforms-support-azure-ad-sso" title="哪些 Procore 平台支持Azure AD (Entra ID)单点登录?"><span class="mt-icon-article-none"></span>哪些 Procore 平台支持Azure AD (Entra ID)单点登录?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-sso-identity-providers-are-supported-by-procore" title="Procore 支持哪些单点登录身份提供商?"><span class="mt-icon-article-none"></span>Procore 支持哪些单点登录身份提供商?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-receiving-the-error-no-user-found-with-the-given-email-address-when-logging-in-with-sso" title="为什么我在使用 SSO 登录时收到“未发现有用户使用给定的电子邮件地址”错误?"><span class="mt-icon-article-none"></span>为什么我在使用 SSO 登录时收到“未发现有用户使用给定的电子邮件地址”错误?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-standalone-procore-estimating"><span id="standalone-procore-estimating"></span><h5>standalone-procore-estimating</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-multiple-users-work-on-estimates-and-takeoffs-at-the-same-time-in-the-estimating-tool" title="多个用户是否可以在估算工具中同时进行估算和扣减?"><span class="mt-icon-article-none"></span>多个用户是否可以在估算工具中同时进行估算和扣减?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-cost-catalog-item-types-relate-to-cost-types-in-procore" title="成本目录项类型与 Procore 中的成本类型有何关系?"><span class="mt-icon-article-none"></span>成本目录项类型与 Procore 中的成本类型有何关系?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-complete-tasks-in-procore-that-i-used-to-complete-in-the-standalone-procore-estimating-application" title="如何在 Procore 中完成以前在独立 Procore Estimating 应用程序中完成的任务?"><span class="mt-icon-article-none"></span>如何在 Procore 中完成以前在独立 Procore Estimating 应用程序中完成的任务?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-user-roles-in-procore-estimating" title="Procore Estimating 中有哪些不同的“用户角色”?"><span class="mt-icon-article-none"></span>Procore Estimating 中有哪些不同的“用户角色”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-catalog-category-and-item-in-the-cost-catalog-for-estimating" title="用于估算的成本目录中的目录、类别和项之间有什么区别?"><span class="mt-icon-article-none"></span>用于估算的成本目录中的目录、类别和项之间有什么区别?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-subcontractor"><span id="subcontractor"></span><h5>subcontractor</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-commitments-private-by-default" title="默认情况下合约是私密的吗?"><span class="mt-icon-article-none"></span>默认情况下合约是私密的吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-remove-a-line-item-from-a-bid" title="能否从投标中移除明细项?"><span class="mt-icon-article-none"></span>能否从投标中移除明细项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-submittal" title="什么是送审?"><span class="mt-icon-article-none"></span>什么是送审?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-submittal-package" title="什么是送审汇总包?"><span class="mt-icon-article-none"></span>什么是送审汇总包?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-construction-bidding-process" title="什么是建设工程投标流程?"><span class="mt-icon-article-none"></span>什么是建设工程投标流程?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-submittals"><span id="submittals"></span><h5>submittals</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-provide-users-with-read-only-level-permissions-with-limited-access-to-update-information-in-procore" title="我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?"><span class="mt-icon-article-none"></span>我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-pdfs-uploaded-to-the-submittals-tool-affected-by-file-restrictions" title="上传到送审工具的 PDF 如何受文件限制影响?"><span class="mt-icon-article-none"></span>上传到送审工具的 PDF 如何受文件限制影响?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-submittals-numbered-in-procore" title="Procore 中的送审如何编号?"><span class="mt-icon-article-none"></span>Procore 中的送审如何编号?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-the-date-columns-in-submittal-custom-reports-calculated" title="送审自定义报告中的日期列是如何计算的?"><span class="mt-icon-article-none"></span>送审自定义报告中的日期列是如何计算的?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-email-a-submittal-so-people-can-reply-through-email" title="我如何通过电子邮件发送送审,以便人们可以通过电子邮件回复?"><span class="mt-icon-article-none"></span>我如何通过电子邮件发送送审,以便人们可以通过电子邮件回复?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-fix-errors-with-pdf-files-in-the-submittals-tool" title="如何在送审工具中修复 PDF 文件错误?"><span class="mt-icon-article-none"></span>如何在送审工具中修复 PDF 文件错误?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-people-to-the-submittal-workflow" title="如何将人员添加到送审工作流?"><span class="mt-icon-article-none"></span>如何将人员添加到送审工作流?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-change-my-web-browsers-default-email-client-for-mailto-links" title="如何为 mailto 链接更改我的 Web 浏览器的默认电子邮件客户端?"><span class="mt-icon-article-none"></span>如何为 mailto 链接更改我的 Web 浏览器的默认电子邮件客户端?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-change-the-responsible-contractor-field-on-my-submittal" title="如何更改送审的“责任承包商”字段?"><span class="mt-icon-article-none"></span>如何更改送审的“责任承包商”字段?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-customize-submittal-responses" title="如何自定义送审答复?"><span class="mt-icon-article-none"></span>如何自定义送审答复?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-filter-items-by-multi-tiered-locations" title="如何按多层地点筛选项?"><span class="mt-icon-article-none"></span>如何按多层地点筛选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-remove-a-submitter-or-approver-from-a-submittal-workflow-while-the-approval-process-is-in-progress" title="在审批流程中,如何从送审工作流中移除送审者或审批者?"><span class="mt-icon-article-none"></span>在审批流程中,如何从送审工作流中移除送审者或审批者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/is-there-a-way-to-bulk-replace-an-approver-submitter-or-reviewer-on-a-projects-submittals" title="是否可以批量替换项目送审中的审批者、送审者或审核人?"><span class="mt-icon-article-none"></span>是否可以批量替换项目送审中的审批者、送审者或审核人?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-configurable-fieldsets-and-which-procore-tools-support-them" title="什么是可配置字段集以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是可配置字段集以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-fields-and-which-procore-tools-support-them" title="什么是自定义字段以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是自定义字段以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-sections-and-which-procore-tools-support-them" title="什么是自定义部分以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是自定义部分以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-dynamic-approver-due-dates" title="什么是动态计算审批者截止日期?"><span class="mt-icon-article-none"></span>什么是动态计算审批者截止日期?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-multi-tiered-locations" title="什么是多层地点?"><span class="mt-icon-article-none"></span>什么是多层地点?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore 默认成本编号有哪些?"><span class="mt-icon-article-none"></span>Procore 默认成本编号有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="什么是 Procore 中的“相关项”?"><span class="mt-icon-article-none"></span>什么是 Procore 中的“相关项”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-specifications" title="什么是规范?"><span class="mt-icon-article-none"></span>什么是规范?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-submittal-responses-in-procore" title="Procore 中的默认送审答复有哪些?"><span class="mt-icon-article-none"></span>Procore 中的默认送审答复有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-submittal-statuses-in-procore" title="Procore 中的默认送审状态有哪些?"><span class="mt-icon-article-none"></span>Procore 中的默认送审状态有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-user-roles-in-the-submittals-tool" title="送审工具中的用户角色是什么?"><span class="mt-icon-article-none"></span>送审工具中的用户角色是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-does-each-column-in-the-submittals-log-represent" title="“送审日志”中的每一列代表什么?"><span class="mt-icon-article-none"></span>“送审日志”中的每一列代表什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-file-types-and-formats-are-supported-in-the-attachment-viewer" title="统一附件查看器支持哪些文件类型和格式?"><span class="mt-icon-article-none"></span>统一附件查看器支持哪些文件类型和格式?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-submittals-tool" title="项目的送审工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的送审工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-to-existing-submittals-when-dynamic-approver-due-dates-is-enabled" title="启用“动态计算审批者截止日期”后,现有送审有什么变化?"><span class="mt-icon-article-none"></span>启用“动态计算审批者截止日期”后,现有送审有什么变化?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-draft-submittal" title="什么是送审“草稿”?"><span class="mt-icon-article-none"></span>什么是送审“草稿”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-advanced-search-symbol-in-procore" title="Procore 中高级搜索符号是什么?"><span class="mt-icon-article-none"></span>Procore 中高级搜索符号是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-submittal" title="什么是送审?"><span class="mt-icon-article-none"></span>什么是送审?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-submittal-package" title="什么是送审汇总包?"><span class="mt-icon-article-none"></span>什么是送审汇总包?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-submittal-revision" title="什么是送审修订?"><span class="mt-icon-article-none"></span>什么是送审修订?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-bluebeam-studio" title="什么是 Bluebeam Studio?"><span class="mt-icon-article-none"></span>什么是 Bluebeam Studio?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="什么是 Procore 回收站?"><span class="mt-icon-article-none"></span>什么是 Procore 回收站?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-distribution-group-and-a-distribution-list" title="Procore 中的通讯组和通讯名单有什么区别?"><span class="mt-icon-article-none"></span>Procore 中的通讯组和通讯名单有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-submitter-and-approver-in-submittals" title="送审中的送审者和审批者有什么区别?"><span class="mt-icon-article-none"></span>送审中的送审者和审批者有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-submittal-manager-role" title="什么是“送审经理”角色?"><span class="mt-icon-article-none"></span>什么是“送审经理”角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what's-the-difference-between-a-job-a-parent-job-and-a-sub-job" title="作业、父作业和子作业之间有何区别?"><span class="mt-icon-article-none"></span>作业、父作业和子作业之间有何区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/whats-the-difference-between-sequential-and-parallel-approval-in-the-submittal-workflow" title="送审工作流中的依序审批和平行审批有什么区别?"><span class="mt-icon-article-none"></span>送审工作流中的依序审批和平行审批有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-is-a-submittal-attachment-labeled-as-current-in-the-submittal-worfklow-table" title="送审附件何时在“送审工作流”表中标记为“当前”?"><span class="mt-icon-article-none"></span>送审附件何时在“送审工作流”表中标记为“当前”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-do-the-selections-in-the-spec-sections-drop-down-list-come-from" title=""规范分项"下拉列表中的选项从何而来?"><span class="mt-icon-article-none"></span>"规范分项"下拉列表中的选项从何而来?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-data-columns-can-i-add-to-a-custom-submittals-report" title="可以将哪些数据列添加到自定义送审报告中?"><span class="mt-icon-article-none"></span>可以将哪些数据列添加到自定义送审报告中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-submittals-tool-can-be-configured-as-required-optional-or-hidden" title="送审工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>送审工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-file-formats-are-supported-when-exporting-a-projects-submittals" title="导出项目的送审材料时支持哪些文件格式?"><span class="mt-icon-article-none"></span>导出项目的送审材料时支持哪些文件格式?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-let-me-view-a-digital-image-attachment-in-a-map-view" title="哪些 Procore 工具可让我在地图视图中查看数字图像附件?"><span class="mt-icon-article-none"></span>哪些 Procore 工具可让我在地图视图中查看数字图像附件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="哪些 Procore 工具支持细分权限?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-an-email-when-a-submittal-is-created-or-updated" title="创建或更新送审时谁会收到电子邮件?"><span class="mt-icon-article-none"></span>创建或更新送审时谁会收到电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-delete-items-in-procore" title="为什么不能在 Procore 中删除项?"><span class="mt-icon-article-none"></span>为什么不能在 Procore 中删除项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-turn-off-the-action-required-emails-from-the-submittals-tool" title="为什么无法关闭从送审工具发送的“待办事项”电子邮件?"><span class="mt-icon-article-none"></span>为什么无法关闭从送审工具发送的“待办事项”电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-didnt-i-receive-an-email-notification-from-a-submittal" title="为什么我没有收到送审的电子邮件通知?"><span class="mt-icon-article-none"></span>为什么我没有收到送审的电子邮件通知?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-superintendent"><span id="superintendent"></span><h5>superintendent</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-attach-a-photo-to-a-punch-list-item-from-my-mobile-device" title="我能否通过移动设备将照片添加到尾项清单项目?"><span class="mt-icon-article-none"></span>我能否通过移动设备将照片添加到尾项清单项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-receive-weather-delay-alerts-by-phone-or-email" title="我可以通过电话或电子邮件接收天气导致的延误警报吗?"><span class="mt-icon-article-none"></span>我可以通过电话或电子邮件接收天气导致的延误警报吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-view-reports-of-a-single-log-or-a-single-person-within-a-log" title="如何查看单个日志或日志中某人的报告?"><span class="mt-icon-article-none"></span>如何查看单个日志或日志中某人的报告?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-look-at-the-daily-log-for-multiple-days" title="如何查看多天的工作日志?"><span class="mt-icon-article-none"></span>如何查看多天的工作日志?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-daily-log" title="什么是工作日志?"><span class="mt-icon-article-none"></span>什么是工作日志?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-the-weather-conditions-not-showing-on-my-daily-log-weather-log" title="为什么我的工作日志天气日志中不显示天气条件?"><span class="mt-icon-article-none"></span>为什么我的工作日志天气日志中不显示天气条件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-change-the-weather-delay-or-any-of-the-boxes-on-that-row" title="为什么不能更改天气导致的延误或该行上的任何框?"><span class="mt-icon-article-none"></span>为什么不能更改天气导致的延误或该行上的任何框?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-tasks"><span id="tasks"></span><h5>tasks</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-does-the-tasks-tool-send-email-notifications" title="任务工具何时发送电子邮件通知?"><span class="mt-icon-article-none"></span>任务工具何时发送电子邮件通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-let-me-view-a-digital-image-attachment-in-a-map-view" title="哪些 Procore 工具可让我在地图视图中查看数字图像附件?"><span class="mt-icon-article-none"></span>哪些 Procore 工具可让我在地图视图中查看数字图像附件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-can-i-assign-a-task-to" title="我可以将任务分配给谁?"><span class="mt-icon-article-none"></span>我可以将任务分配给谁?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-timecard"><span id="timecard"></span><h5>timecard</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-we-import-our-third-party-timecard-entries-to-work-with-the-timesheet-hours-column-in-the-budget" title="我们能否导入第三方考勤卡条目以与 Procore 预算工具中的“考勤表工时”列配合使用?"><span class="mt-icon-article-none"></span>我们能否导入第三方考勤卡条目以与 Procore 预算工具中的“考勤表工时”列配合使用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-configure-user-permissions-for-multi-tier-approvals-with-timekeeping" title="如何为带计时的多层审批配置用户权限?"><span class="mt-icon-article-none"></span>如何为带计时的多层审批配置用户权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-a-budget-view-for-real-time-labor-productivity" title="如何为实时人工生产力设置预算视图?"><span class="mt-icon-article-none"></span>如何为实时人工生产力设置预算视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-will-my-previous-timecard-entries-work-with-timesheets" title="如何在考勤表中使用以前的考勤卡条目?"><span class="mt-icon-article-none"></span>如何在考勤表中使用以前的考勤卡条目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-production-quantities" title="什么是“生产数量”?"><span class="mt-icon-article-none"></span>什么是“生产数量”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-private-timecard-and-which-timecards-can-be-set-to-private" title="什么是“私密”考勤卡以及哪些考勤卡可以设置为私密?"><span class="mt-icon-article-none"></span>什么是“私密”考勤卡以及哪些考勤卡可以设置为私密?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-budget-code-and-a-task-code" title="预算编号和任务编号有什么区别?"><span class="mt-icon-article-none"></span>预算编号和任务编号有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-labor-productivity-budget-view-and-field-production-report" title="人工生产力预算视图和现场生产报告有什么区别?"><span class="mt-icon-article-none"></span>人工生产力预算视图和现场生产报告有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-classifications" title="哪些 Procore 工具支持“工种”?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持“工种”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-wbs-custom-segments" title="为什么我不能创建 WBS 自定义细分?"><span class="mt-icon-article-none"></span>为什么我不能创建 WBS 自定义细分?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-timesheets"><span id="timesheets"></span><h5>timesheets</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-limit-the-number-of-cost-codes-available-to-choose-from-when-creating-timesheet-entries" title="创建考勤表条目时,可以限制可供选择的成本编号数量吗?"><span class="mt-icon-article-none"></span>创建考勤表条目时,可以限制可供选择的成本编号数量吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-we-import-our-third-party-timecard-entries-to-work-with-the-timesheet-hours-column-in-the-budget" title="我们能否导入第三方考勤卡条目以与 Procore 预算工具中的“考勤表工时”列配合使用?"><span class="mt-icon-article-none"></span>我们能否导入第三方考勤卡条目以与 Procore 预算工具中的“考勤表工时”列配合使用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-task-codes-configured-for-time-entry" title="如何为工时条目配置任务编号?"><span class="mt-icon-article-none"></span>如何为工时条目配置任务编号?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-the-timesheet-hours-column-to-a-budget-view" title="如何将“考勤表工时”列添加到预算视图?"><span class="mt-icon-article-none"></span>如何将“考勤表工时”列添加到预算视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-configure-user-permissions-for-multi-tier-approvals-with-timekeeping" title="如何为带计时的多层审批配置用户权限?"><span class="mt-icon-article-none"></span>如何为带计时的多层审批配置用户权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-determine-the-latitude-and-longitude-values-on-an-address" title="如何确定地址的纬度和经度值?"><span class="mt-icon-article-none"></span>如何确定地址的纬度和经度值?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-a-budget-view-for-real-time-labor-productivity" title="如何为实时人工生产力设置预算视图?"><span class="mt-icon-article-none"></span>如何为实时人工生产力设置预算视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-track-the-actual-materials-received-and-installed-on-a-job-site" title="如何跟踪在作业现场接收和安装的实际材料?"><span class="mt-icon-article-none"></span>如何跟踪在作业现场接收和安装的实际材料?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-will-my-previous-timecard-entries-work-with-timesheets" title="如何在考勤表中使用以前的考勤卡条目?"><span class="mt-icon-article-none"></span>如何在考勤表中使用以前的考勤卡条目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-configurable-fieldsets-and-which-procore-tools-support-them" title="什么是可配置字段集以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是可配置字段集以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-fields-and-which-procore-tools-support-them" title="什么是自定义字段以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是自定义字段以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-multi-tiered-locations" title="什么是多层地点?"><span class="mt-icon-article-none"></span>什么是多层地点?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-production-quantities" title="什么是“生产数量”?"><span class="mt-icon-article-none"></span>什么是“生产数量”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-differences-between-procores-time-modules" title="Procore 的工时模块之间有什么区别?"><span class="mt-icon-article-none"></span>Procore 的工时模块之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-timesheets-tools-default-statuses-for-time-entries" title="考勤表工具时间条目的默认状态是什么?"><span class="mt-icon-article-none"></span>考勤表工具时间条目的默认状态是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-project-level-timesheets-tool" title="项目级别考勤表工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目级别考勤表工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-contact-in-procore-and-which-project-tools-support-the-concept" title="Procore 中的“联系人”是什么?哪些项目工具支持此概念?"><span class="mt-icon-article-none"></span>Procore 中的“联系人”是什么?哪些项目工具支持此概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-private-timecard-and-which-timecards-can-be-set-to-private" title="什么是“私密”考勤卡以及哪些考勤卡可以设置为私密?"><span class="mt-icon-article-none"></span>什么是“私密”考勤卡以及哪些考勤卡可以设置为私密?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-budget-code-and-a-task-code" title="预算编号和任务编号有什么区别?"><span class="mt-icon-article-none"></span>预算编号和任务编号有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-labor-productivity-budget-view-and-field-production-report" title="人工生产力预算视图和现场生产报告有什么区别?"><span class="mt-icon-article-none"></span>人工生产力预算视图和现场生产报告有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-resource-tracking-and-resource-management" title=""资源跟踪"和"资源管理"有什么区别?"><span class="mt-icon-article-none"></span>"资源跟踪"和"资源管理"有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-did-the-numbered-templates-on-the-timesheets-and-my-time-tool-fieldsets-come-from" title="考勤表和我的工时工具字段集上的编号模板从何而来?"><span class="mt-icon-article-none"></span>考勤表和我的工时工具字段集上的编号模板从何而来?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-data-columns-are-in-a-field-production-report" title="现场生产报告中包含哪些数据列?"><span class="mt-icon-article-none"></span>现场生产报告中包含哪些数据列?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-timesheets-tool-can-be-configured-as-required-optional-or-hidden" title="考勤表工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>考勤表工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-update-data-in-the-field-production-report" title="哪些 Procore 项目工具会更新现场生产报告中的数据?"><span class="mt-icon-article-none"></span>哪些 Procore 项目工具会更新现场生产报告中的数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-can-i-use-to-add-production-quantities-to-my-projects-budget" title="可以使用哪些 Procore 工具将生产数量添加到我的项目预算中?"><span class="mt-icon-article-none"></span>可以使用哪些 Procore 工具将生产数量添加到我的项目预算中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-classifications" title="哪些 Procore 工具支持“工种”?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持“工种”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="哪些 Procore 工具支持细分权限?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-wbs-custom-segments" title="为什么我不能创建 WBS 自定义细分?"><span class="mt-icon-article-none"></span>为什么我不能创建 WBS 自定义细分?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-isnt-the-projects-budget-view-reflecting-labor-costs-and-production-quantities-from-timecard-entries" title="为什么项目的预算视图没有反映考勤卡条目中的人工成本和生产数量?"><span class="mt-icon-article-none"></span>为什么项目的预算视图没有反映考勤卡条目中的人工成本和生产数量?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-tm-tickets"><span id="tm-tickets"></span><h5>tm-tickets</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-configurable-fieldsets-and-which-procore-tools-support-them" title="什么是可配置字段集以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-none"></span>什么是可配置字段集以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-statuses-for-tm-tickets" title="工时和材料单的默认状态是什么?"><span class="mt-icon-article-none"></span>工时和材料单的默认状态是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-contact-in-procore-and-which-project-tools-support-the-concept" title="Procore 中的“联系人”是什么?哪些项目工具支持此概念?"><span class="mt-icon-article-none"></span>Procore 中的“联系人”是什么?哪些项目工具支持此概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-tm-ticket" title="什么是工时和材料单?"><span class="mt-icon-article-none"></span>什么是工时和材料单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="什么是 Procore 回收站?"><span class="mt-icon-article-none"></span>什么是 Procore 回收站?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-resource-tracking-and-resource-management" title=""资源跟踪"和"资源管理"有什么区别?"><span class="mt-icon-article-none"></span>"资源跟踪"和"资源管理"有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-tm-tickets-tool-can-be-configured-as-required-optional-or-hidden" title="工时和材料单工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-none"></span>工时和材料单工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-classifications" title="哪些 Procore 工具支持“工种”?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持“工种”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-wbs-custom-segments" title="为什么我不能创建 WBS 自定义细分?"><span class="mt-icon-article-none"></span>为什么我不能创建 WBS 自定义细分?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-training-center"><span id="training-center"></span><h5>training-center</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-access-my-companys-training-center" title="如何访问我公司的培训中心?"><span class="mt-icon-article-none"></span>如何访问我公司的培训中心?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-log-in-to-procore-support-site" title="如何登录 Procore 支持网站?"><span class="mt-icon-article-none"></span>如何登录 Procore 支持网站?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-request-access-to-a-custom-training-center" title="如何请求访问自定义培训中心?"><span class="mt-icon-article-none"></span>如何请求访问自定义培训中心?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-training-center" title="什么是培训中心?"><span class="mt-icon-article-none"></span>什么是培训中心?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-does-my-user-session-expire-on-procore-support-site" title="我在 Procore 支持网站上的用户会话何时过期?"><span class="mt-icon-article-none"></span>我在 Procore 支持网站上的用户会话何时过期?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-do-i-not-have-permission-to-view-this-web-page" title="我为什么没有查看此网页的权限?"><span class="mt-icon-article-none"></span>我为什么没有查看此网页的权限?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-transmittals"><span id="transmittals"></span><h5>transmittals</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-provide-users-with-read-only-level-permissions-with-limited-access-to-update-information-in-procore" title="我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?"><span class="mt-icon-article-none"></span>我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-none"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-attach-multiple-files-at-once-to-a-transmittal" title="如何一次将多个文件添加到传输记录中?"><span class="mt-icon-article-none"></span>如何一次将多个文件添加到传输记录中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-change-my-web-browsers-default-email-client-for-mailto-links" title="如何为 mailto 链接更改我的 Web 浏览器的默认电子邮件客户端?"><span class="mt-icon-article-none"></span>如何为 mailto 链接更改我的 Web 浏览器的默认电子邮件客户端?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-filter-items-by-multi-tiered-locations" title="如何按多层地点筛选项?"><span class="mt-icon-article-none"></span>如何按多层地点筛选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="什么是 Procore 中的“相关项”?"><span class="mt-icon-article-none"></span>什么是 Procore 中的“相关项”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-transmittals-tool" title="项目的传输记录工具有哪些细分权限?"><span class="mt-icon-article-none"></span>项目的传输记录工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-transmittal-in-procore" title="什么是 Procore 中的传输记录?"><span class="mt-icon-article-none"></span>什么是 Procore 中的传输记录?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="什么是 Procore 回收站?"><span class="mt-icon-article-none"></span>什么是 Procore 回收站?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-distribution-group-and-a-distribution-list" title="Procore 中的通讯组和通讯名单有什么区别?"><span class="mt-icon-article-none"></span>Procore 中的通讯组和通讯名单有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-none"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="哪些 Procore 工具支持细分权限?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持细分权限?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-tutorial"><span id="tutorial"></span><h5>tutorial</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-enforce-required-fields-in-a-form" title="我能否在表单中强制执行必填字段?"><span class="mt-icon-article-none"></span>我能否在表单中强制执行必填字段?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-allow-standard-users-to-add-users-to-the-project-directory" title="如何允许“标准”用户添加到项目目录?"><span class="mt-icon-article-none"></span>如何允许“标准”用户添加到项目目录?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-prevent-or-allow-overbilling-on-a-subcontractor-invoice" title="如何防止或允许分包商发票超额 计费?"><span class="mt-icon-article-none"></span>如何防止或允许分包商发票超额 计费?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-permissions-do-i-need-to-add-users-to-a-procore-project" title="将用户添加到 Procore 项目需要什么权限?"><span class="mt-icon-article-none"></span>将用户添加到 Procore 项目需要什么权限?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-v2-workflows"><span id="v2-workflows"></span><h5>v2-workflows</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-version-numbers-updated-in-the-company-level-workflows-tool" title="如何在公司级别工作流工具中更新版本号?"><span class="mt-icon-article-none"></span>如何在公司级别工作流工具中更新版本号?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-roles-associated-with-workflows" title="与工作流关联有哪些不同的角色?"><span class="mt-icon-article-none"></span>与工作流关联有哪些不同的角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-types-of-steps-in-a-workflow" title="工作流中有哪些不同类型的步骤?"><span class="mt-icon-article-none"></span>工作流中有哪些不同类型的步骤?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-workflows" title="哪些 Procore 工具支持工作流?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持工作流?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-vista-by-viewpoint"><span id="vista-by-viewpoint"></span><h5>vista-by-viewpoint</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-pending-commitments-automatically-synced-with-integrated-erp-systems" title="待处理合约是否会与集成 ERP 系统自动同步?"><span class="mt-icon-article-none"></span>待处理合约是否会与集成 ERP 系统自动同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-edit-or-delete-a-commitment-after-its-been-synced-with-an-erp-integration" title="合约与集成 ERP 系统同步后,我能否编辑或删除?"><span class="mt-icon-article-none"></span>合约与集成 ERP 系统同步后,我能否编辑或删除?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-export-procore-budget-modifications-to-an-integrated-erp-system" title="我可以将 Procore 预算修改导出到集成 ERP 系统吗?"><span class="mt-icon-article-none"></span>我可以将 Procore 预算修改导出到集成 ERP 系统吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-the-integration-by-ryvit-connect-procore-with-viewpoint-vista" title="Ryvit 集成如何连接 Procore 与 Viewpoint® Vista™?"><span class="mt-icon-article-none"></span>Ryvit 集成如何连接 Procore 与 Viewpoint® Vista™?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-often-can-i-sync-data-using-the-integration-by-ryvit" title="我可以使用 Ryvit 集成以何种频率同步数据?"><span class="mt-icon-article-none"></span>我可以使用 Ryvit 集成以何种频率同步数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-cost-types-and-how-does-our-erp-integration-support-them" title="有哪些“成本类型”以及我们的 ERP 集成如何支持这些成本类型?"><span class="mt-icon-article-none"></span>有哪些“成本类型”以及我们的 ERP 集成如何支持这些成本类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-data-is-synced-with-the-integration-by-ryvit-connector" title="哪些数据与 Ryvit 集成连接器同步?"><span class="mt-icon-article-none"></span>哪些数据与 Ryvit 集成连接器同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-erp-icons-mean" title="ERP 图标的含义是什么?"><span class="mt-icon-article-none"></span>ERP 图标的含义是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-if-i-have-duplicate-company-records-in-procores-company-directory" title="如果 Procore 公司目录中存在重复公司记录会怎样?"><span class="mt-icon-article-none"></span>如果 Procore 公司目录中存在重复公司记录会怎样?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="什么是会计审批者角色?"><span class="mt-icon-article-none"></span>什么是会计审批者角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-company-name-in-the-directory-tool" title="目录工具中“公司名称”的最大字符长度是多少?"><span class="mt-icon-article-none"></span>目录工具中“公司名称”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-a-notification-when-an-item-is-rejected-from-erp" title="当项被 ERP 拒绝时,谁会收到通知?"><span class="mt-icon-article-none"></span>当项被 ERP 拒绝时,谁会收到通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-or-activate-procore-projects" title="为什么我无法创建或激活 Procore 项目?"><span class="mt-icon-article-none"></span>为什么我无法创建或激活 Procore 项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-sync-or-refresh-buttons-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到“同步”或“刷新”按钮?"><span class="mt-icon-article-none"></span>为什么我在 ERP 集成工具中看不到“同步”或“刷新”按钮?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-procore-project-missing-from-the-erp-integrations-tool" title="为什么 ERP 集成工具中缺少我的 Procore 项目?"><span class="mt-icon-article-none"></span>为什么 ERP 集成工具中缺少我的 Procore 项目?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-wbs"><span id="wbs"></span><h5>wbs</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-apply-custom-segments-to-my-existing-non-wbs-projects" title="是否可以将自定义细分应用于现有的非 WBS 项目?"><span class="mt-icon-article-none"></span>是否可以将自定义细分应用于现有的非 WBS 项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-financial-line-items-and-budget-codes-updated-across-change-objects" title="如何跨变更对象更新财务明细项和预算编号?"><span class="mt-icon-article-none"></span>如何跨变更对象更新财务明细项和预算编号?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore 默认成本编号有哪些?"><span class="mt-icon-article-none"></span>Procore 默认成本编号有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-segments-and-segment-items" title="什么是细分和细分项?"><span class="mt-icon-article-none"></span>什么是细分和细分项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-custom-segments-should-we-create-for-our-companys-work-breakdown-structure" title="我们应该为公司的工作分解结构创建哪些自定义细分?"><span class="mt-icon-article-none"></span>我们应该为公司的工作分解结构创建哪些自定义细分?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-budget-code-in-procores-wbs" title="Procore 的 WBS 中的预算编号是什么?"><span class="mt-icon-article-none"></span>Procore 的 WBS 中的预算编号是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-budget-code-structure-in-procores-wbs" title="Procore 的 WBS 中的预算编号结构是什么?"><span class="mt-icon-article-none"></span>Procore 的 WBS 中的预算编号结构是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-default-and-custom-segment-in-procores-wbs" title="Procore 的工作分解结构中的默认细分和自定义细分之间有什么区别?"><span class="mt-icon-article-none"></span>Procore 的工作分解结构中的默认细分和自定义细分之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-flat-and-tiered-segment-in-procores-wbs" title="Procore 的工作分解结构中的平面细分和分层细分之间有什么区别?"><span class="mt-icon-article-none"></span>Procore 的工作分解结构中的平面细分和分层细分之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-work-breakdown-structure-wbs" title="什么是工作分解结构 (WBS)?"><span class="mt-icon-article-none"></span>什么是工作分解结构 (WBS)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-is-the-division-in-the-cost-code-segment-in-procores-wbs" title="Procore 的 WBS 中“成本编号”细分中的“分部”在哪里?"><span class="mt-icon-article-none"></span>Procore 的 WBS 中“成本编号”细分中的“分部”在哪里?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-work-breakdown-structure" title="哪些 Procore 工具支持工作分解结构?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持工作分解结构?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-wbs-custom-segments" title="为什么我不能创建 WBS 自定义细分?"><span class="mt-icon-article-none"></span>为什么我不能创建 WBS 自定义细分?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-deactivate-a-cost-type-cost-code-or-sub-job-in-wbs" title="为什么我不能在 WBS 中停用成本类型、成本编号或子作业?"><span class="mt-icon-article-none"></span>为什么我不能在 WBS 中停用成本类型、成本编号或子作业?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-workday"><span id="workday"></span><h5>workday</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-accounting-approvers-notified-when-data-is-awaiting-acceptance-in-the-erp-integrations-tool" title="当数据在 ERP 集成工具中等待验收时,是否会通知会计审批者?"><span class="mt-icon-article-none"></span>当数据在 ERP 集成工具中等待验收时,是否会通知会计审批者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-pending-commitments-automatically-synced-with-integrated-erp-systems" title="待处理合约是否会与集成 ERP 系统自动同步?"><span class="mt-icon-article-none"></span>待处理合约是否会与集成 ERP 系统自动同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-change-the-selected-vendor-type-after-a-company-has-been-synced" title="我能否在公司同步后更改选定的供应商类型?"><span class="mt-icon-article-none"></span>我能否在公司同步后更改选定的供应商类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-customize-the-numbering-system-for-financial-management-objects-in-procore" title="我能否在 Procore 中自定义财务对象的编号系统?"><span class="mt-icon-article-none"></span>我能否在 Procore 中自定义财务对象的编号系统?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-edit-or-delete-a-commitment-after-its-been-synced-with-an-erp-integration" title="合约与集成 ERP 系统同步后,我能否编辑或删除?"><span class="mt-icon-article-none"></span>合约与集成 ERP 系统同步后,我能否编辑或删除?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-provide-users-with-read-only-level-permissions-with-limited-access-to-update-information-in-procore" title="我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?"><span class="mt-icon-article-none"></span>我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-project-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目是否已与集成 ERP 系统同步?"><span class="mt-icon-article-none"></span>如何判断 Procore 项目是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-i-do-when-a-commimtment-fails-to-export-from-the-erp-integrations-tool" title="当合约未能从 ERP 集成工具中导出时,我该怎么办?"><span class="mt-icon-article-none"></span>当合约未能从 ERP 集成工具中导出时,我该怎么办?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-erp-icons-mean" title="ERP 图标的含义是什么?"><span class="mt-icon-article-none"></span>ERP 图标的含义是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-if-i-have-duplicate-company-records-in-procores-company-directory" title="如果 Procore 公司目录中存在重复公司记录会怎样?"><span class="mt-icon-article-none"></span>如果 Procore 公司目录中存在重复公司记录会怎样?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="什么是会计审批者角色?"><span class="mt-icon-article-none"></span>什么是会计审批者角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-change-order-line-items-duplicated-on-my-subcontractor-invoice" title="为什么我的变更通知单明细项在我的分包商发票上重复?"><span class="mt-icon-article-none"></span>为什么我的变更通知单明细项在我的分包商发票上重复?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-accept-reject-options-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到接受/拒绝选项?"><span class="mt-icon-article-none"></span>为什么我在 ERP 集成工具中看不到接受/拒绝选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-sync-or-refresh-buttons-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到“同步”或“刷新”按钮?"><span class="mt-icon-article-none"></span>为什么我在 ERP 集成工具中看不到“同步”或“刷新”按钮?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-procore-project-missing-from-the-erp-integrations-tool" title="为什么 ERP 集成工具中缺少我的 Procore 项目?"><span class="mt-icon-article-none"></span>为什么 ERP 集成工具中缺少我的 Procore 项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-the-send-to-erp-button-grayed-out-in-the-project-creation-assistant" title="为什么“发送到 ERP”按钮变暗并且在项目创建助手中不可用?"><span class="mt-icon-article-none"></span>为什么“发送到 ERP”按钮变暗并且在项目创建助手中不可用?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-workflows"><span id="workflows"></span><h5>workflows</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-version-numbers-updated-in-the-company-level-workflows-tool" title="如何在公司级别工作流工具中更新版本号?"><span class="mt-icon-article-none"></span>如何在公司级别工作流工具中更新版本号?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-differences-between-legacy-and-self-serve-workflows" title="旧版工作流和自助式工作流之间有什么区别?"><span class="mt-icon-article-none"></span>旧版工作流和自助式工作流之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-roles-associated-with-workflows" title="与工作流关联有哪些不同的角色?"><span class="mt-icon-article-none"></span>与工作流关联有哪些不同的角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-types-of-steps-in-a-workflow" title="工作流中有哪些不同类型的步骤?"><span class="mt-icon-article-none"></span>工作流中有哪些不同类型的步骤?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-commitments-workflows" title="合约工作流有哪些细分权限?"><span class="mt-icon-article-none"></span>合约工作流有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-document-management-workflows" title="文档管理工作流有哪些细分权限?"><span class="mt-icon-article-none"></span>文档管理工作流有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-are-email-notifications-sent-from-workflows" title="工作流发送哪些电子邮件通知?"><span class="mt-icon-article-none"></span>工作流发送哪些电子邮件通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-workflows" title="哪些 Procore 工具支持工作流?"><span class="mt-icon-article-none"></span>哪些 Procore 工具支持工作流?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-workforce-planning"><span id="workforce-planning"></span><h5>workforce-planning</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-wages-in-resource-planning" title="如何在资源规划中使用工资?"><span class="mt-icon-article-none"></span>如何在资源规划中使用工资?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-prevent-duplicate-projects-when-syncing-data-with-resource-planning" title="与资源规划同步数据时如何防止重复项目?"><span class="mt-icon-article-none"></span>与资源规划同步数据时如何防止重复项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-I-set-up-my-account-in-resource-planning" title="如何在资源规划中设置我的账户?"><span class="mt-icon-article-none"></span>如何在资源规划中设置我的账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-use-tags-with-expiration-dates-in-resource-planning" title="如何在资源规划中使用带有到期日期的标记?"><span class="mt-icon-article-none"></span>如何在资源规划中使用带有到期日期的标记?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-I-view-resource-allocation-percentage" title="如何查看资源分配百分比?"><span class="mt-icon-article-none"></span>如何查看资源分配百分比?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-i-need-to-know-about-workforce-plannings-authentication-update" title="关于资源规划的身份验证更新,我需要了解什么?"><span class="mt-icon-article-none"></span>关于资源规划的身份验证更新,我需要了解什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-companys-resource-planning-tool" title="公司的资源规划工具有哪些细分权限?"><span class="mt-icon-article-none"></span>公司的资源规划工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-contact-in-procore-and-which-project-tools-support-the-concept" title="Procore 中的“联系人”是什么?哪些项目工具支持此概念?"><span class="mt-icon-article-none"></span>Procore 中的“联系人”是什么?哪些项目工具支持此概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-assignment-alert-in-resource-planning" title="什么是资源规划中的分配警报?"><span class="mt-icon-article-none"></span>什么是资源规划中的分配警报?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-resource-allocation-type" title="什么是资源分配类型?"><span class="mt-icon-article-none"></span>什么是资源分配类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-sensitive-field-in-resource-planning" title="什么是资源规划中的"敏感字段"?"><span class="mt-icon-article-none"></span>什么是资源规划中的"敏感字段"?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-data-syncing-for-resource-planning" title="什么是资源规划的数据同步?"><span class="mt-icon-article-none"></span>什么是资源规划的数据同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-laborchart-app" title="什么是资源规划/ LaborChart应用程序?"><span class="mt-icon-article-none"></span>什么是资源规划/ LaborChart应用程序?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-resource-bench-in-resource-planning" title="什么是资源规划中的"资源台"?"><span class="mt-icon-article-none"></span>什么是资源规划中的"资源台"?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-workforce-planning-laborchart-web-application" title="什么是劳动力规划/ LaborChart Web 应用程序?"><span class="mt-icon-article-none"></span>什么是劳动力规划/ LaborChart Web 应用程序?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-messages-and-alerts-can-people-respond-to-in-resource-planning" title="人员可以在资源规划中答复哪些消息和警报?"><span class="mt-icon-article-none"></span>人员可以在资源规划中答复哪些消息和警报?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-people-information-is-synced-between-resource-planning-and-the-procore-company-directory" title="资源规划和 Procore 公司目录之间同步了哪些人员信息?"><span class="mt-icon-article-none"></span>资源规划和 Procore 公司目录之间同步了哪些人员信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-project-information-is-synced-between-resource-planning-and-procore-projects" title="资源规划和 Procore 项目之间同步了哪些项目信息?"><span class="mt-icon-article-none"></span>资源规划和 Procore 项目之间同步了哪些项目信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-do-i-see-people-in-workforce-planning-but-not-procore" title="为什么我能在劳动力规划中看到人员,在 Procore 中却不能?"><span class="mt-icon-article-none"></span>为什么我能在劳动力规划中看到人员,在 Procore 中却不能?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-dont-i-have-permission-to-access-the-resource-planning-tool" title="为什么我无权查看资源规划工具?"><span class="mt-icon-article-none"></span>为什么我无权查看资源规划工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-wont-the-resource-planning-tool-load" title="为什么资源规划工具不加载?"><span class="mt-icon-article-none"></span>为什么资源规划工具不加载?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-xero"><span id="xero"></span><h5>xero</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-accounting-approvers-notified-when-data-is-awaiting-acceptance-in-the-erp-integrations-tool" title="当数据在 ERP 集成工具中等待验收时,是否会通知会计审批者?"><span class="mt-icon-article-none"></span>当数据在 ERP 集成工具中等待验收时,是否会通知会计审批者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-pending-commitments-automatically-synced-with-integrated-erp-systems" title="待处理合约是否会与集成 ERP 系统自动同步?"><span class="mt-icon-article-none"></span>待处理合约是否会与集成 ERP 系统自动同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-change-the-selected-vendor-type-after-a-company-has-been-synced" title="我能否在公司同步后更改选定的供应商类型?"><span class="mt-icon-article-none"></span>我能否在公司同步后更改选定的供应商类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-customize-the-numbering-system-for-financial-management-objects-in-procore" title="我能否在 Procore 中自定义财务对象的编号系统?"><span class="mt-icon-article-none"></span>我能否在 Procore 中自定义财务对象的编号系统?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-project-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目是否已与集成 ERP 系统同步?"><span class="mt-icon-article-none"></span>如何判断 Procore 项目是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-cost-types-and-how-does-our-erp-integration-support-them" title="有哪些“成本类型”以及我们的 ERP 集成如何支持这些成本类型?"><span class="mt-icon-article-none"></span>有哪些“成本类型”以及我们的 ERP 集成如何支持这些成本类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-i-do-when-a-commimtment-fails-to-export-from-the-erp-integrations-tool" title="当合约未能从 ERP 集成工具中导出时,我该怎么办?"><span class="mt-icon-article-none"></span>当合约未能从 ERP 集成工具中导出时,我该怎么办?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-erp-icons-mean" title="ERP 图标的含义是什么?"><span class="mt-icon-article-none"></span>ERP 图标的含义是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-if-i-have-duplicate-company-records-in-procores-company-directory" title="如果 Procore 公司目录中存在重复公司记录会怎样?"><span class="mt-icon-article-none"></span>如果 Procore 公司目录中存在重复公司记录会怎样?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="什么是会计审批者角色?"><span class="mt-icon-article-none"></span>什么是会计审批者角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-commitments-number" title="合约“编号 (#)”的最大字符长度是多少?"><span class="mt-icon-article-none"></span>合约“编号 (#)”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-commitment-title" title="合约“标题”的最大字符长度是多少?"><span class="mt-icon-article-none"></span>合约“标题”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-company-name-in-the-directory-tool" title="目录工具中“公司名称”的最大字符长度是多少?"><span class="mt-icon-article-none"></span>目录工具中“公司名称”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-sub-job-concept" title="哪些集成 ERP 系统支持“子作业”概念?"><span class="mt-icon-article-none"></span>哪些集成 ERP 系统支持“子作业”概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-a-notification-when-an-item-is-rejected-from-erp" title="当项被 ERP 拒绝时,谁会收到通知?"><span class="mt-icon-article-none"></span>当项被 ERP 拒绝时,谁会收到通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-or-activate-procore-projects" title="为什么我无法创建或激活 Procore 项目?"><span class="mt-icon-article-none"></span>为什么我无法创建或激活 Procore 项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-accept-reject-options-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到接受/拒绝选项?"><span class="mt-icon-article-none"></span>为什么我在 ERP 集成工具中看不到接受/拒绝选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-procore-project-missing-from-the-erp-integrations-tool" title="为什么 ERP 集成工具中缺少我的 Procore 项目?"><span class="mt-icon-article-none"></span>为什么 ERP 集成工具中缺少我的 Procore 项目?</a></li></ul></li><li class="mt-listing-no-break mt-tag-name-yardi-projfin"><span id="yardi-projfin"></span><h5>yardi-projfin</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-accounting-approvers-notified-when-data-is-awaiting-acceptance-in-the-erp-integrations-tool" title="当数据在 ERP 集成工具中等待验收时,是否会通知会计审批者?"><span class="mt-icon-article-none"></span>当数据在 ERP 集成工具中等待验收时,是否会通知会计审批者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-pending-commitments-automatically-synced-with-integrated-erp-systems" title="待处理合约是否会与集成 ERP 系统自动同步?"><span class="mt-icon-article-none"></span>待处理合约是否会与集成 ERP 系统自动同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-edit-or-delete-a-commitment-after-its-been-synced-with-an-erp-integration" title="合约与集成 ERP 系统同步后,我能否编辑或删除?"><span class="mt-icon-article-none"></span>合约与集成 ERP 系统同步后,我能否编辑或删除?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-provide-users-with-read-only-level-permissions-with-limited-access-to-update-information-in-procore" title="我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?"><span class="mt-icon-article-none"></span>我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-add-cost-codes-to-a-project-synced-with-yardi" title="如何将成本编号添加到与 Yardi Voyager® 同步的项目中"><span class="mt-icon-article-none"></span>如何将成本编号添加到与 Yardi Voyager® 同步的项目中</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-project-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目是否已与集成 ERP 系统同步?"><span class="mt-icon-article-none"></span>如何判断 Procore 项目是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-projects-budget-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目的预算是否已与集成 ERP 系统同步?"><span class="mt-icon-article-none"></span>如何判断 Procore 项目的预算是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-i-do-when-a-commimtment-fails-to-export-from-the-erp-integrations-tool" title="当合约未能从 ERP 集成工具中导出时,我该怎么办?"><span class="mt-icon-article-none"></span>当合约未能从 ERP 集成工具中导出时,我该怎么办?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-erp-icons-mean" title="ERP 图标的含义是什么?"><span class="mt-icon-article-none"></span>ERP 图标的含义是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-if-i-have-duplicate-company-records-in-procores-company-directory" title="如果 Procore 公司目录中存在重复公司记录会怎样?"><span class="mt-icon-article-none"></span>如果 Procore 公司目录中存在重复公司记录会怎样?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="什么是会计审批者角色?"><span class="mt-icon-article-none"></span>什么是会计审批者角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-commitments-number" title="合约“编号 (#)”的最大字符长度是多少?"><span class="mt-icon-article-none"></span>合约“编号 (#)”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-commitment-title" title="合约“标题”的最大字符长度是多少?"><span class="mt-icon-article-none"></span>合约“标题”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-budget-views-should-i-add-to-my-projects" title="我应该将哪些预算视图添加到我的 Procore 项目中?"><span class="mt-icon-article-none"></span>我应该将哪些预算视图添加到我的 Procore 项目中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-category-concept" title="哪些集成 ERP 系统支持“成本类型”概念?"><span class="mt-icon-article-none"></span>哪些集成 ERP 系统支持“成本类型”概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-sub-job-concept" title="哪些集成 ERP 系统支持“子作业”概念?"><span class="mt-icon-article-none"></span>哪些集成 ERP 系统支持“子作业”概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-accept-reject-options-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到接受/拒绝选项?"><span class="mt-icon-article-none"></span>为什么我在 ERP 集成工具中看不到接受/拒绝选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-sync-or-refresh-buttons-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到“同步”或“刷新”按钮?"><span class="mt-icon-article-none"></span>为什么我在 ERP 集成工具中看不到“同步”或“刷新”按钮?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-procore-project-missing-from-the-erp-integrations-tool" title="为什么 ERP 集成工具中缺少我的 Procore 项目?"><span class="mt-icon-article-none"></span>为什么 ERP 集成工具中缺少我的 Procore 项目?</a></li></ul></li></ul></div></div><div id="5fbb553d-7d81-724a-6cb1-a768eb930400" class="mt-guide-content"><div class="noindex"><ul class="mt-page-directory-listings mt-guide-listings"><li class="mt-listing-no-break"><span id=".23"></span><h5 title="#">#</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-do-the-selections-in-the-spec-sections-drop-down-list-come-from" title=""规范分项"下拉列表中的选项从何而来?"><span class="mt-icon-article-faq"></span>"规范分项"下拉列表中的选项从何而来?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-resource-tracking-and-resource-management" title=""资源跟踪"和"资源管理"有什么区别?"><span class="mt-icon-article-faq"></span>"资源跟踪"和"资源管理"有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-the-actual-date-filter-work-on-a-budget-view" title="“按日期的实际值”筛选器如何在预算视图中工作?"><span class="mt-icon-article-faq"></span>“按日期的实际值”筛选器如何在预算视图中工作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/plug-icon-missing-marketplace-nav-how-to" title="“插头”图标已移除,我如何导航到应用商店?"><span class="mt-icon-article-faq"></span>“插头”图标已移除,我如何导航到应用商店?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-does-each-column-in-the-submittals-log-represent" title="“送审日志”中的每一列代表什么?"><span class="mt-icon-article-faq"></span>“送审日志”中的每一列代表什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-does-hide-bidding-info-mean-for-someone-on-the-bid-room-team" title="“隐藏投标信息”对投标室团队中的某人意味着什么?"><span class="mt-icon-article-faq"></span>“隐藏投标信息”对投标室团队中的某人意味着什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-financial-line-items-in-360-reporting" title="360 度报告中有哪些财务明细项?"><span class="mt-icon-article-faq"></span>360 度报告中有哪些财务明细项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-report-templates-are-available-in-the-360-reporting-tools" title="360 度报告工具中提供哪些报告模板?"><span class="mt-icon-article-faq"></span>360 度报告工具中提供哪些报告模板?</a></li></ul></li><li class="mt-listing-no-break"><span id="A"></span><h5 title="A">A</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/analytics-general-faq" title="Analytics 2.0 一般常见问题"><span class="mt-icon-article-faq"></span>Analytics 2.0 一般常见问题</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-permissions-work-for-analytics" title="Analytics 2.0 的权限如何工作?"><span class="mt-icon-article-faq"></span>Analytics 2.0 的权限如何工作?</a></li></ul></li><li class="mt-listing-no-break"><span id="D"></span><h5 title="D">D</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/does-the-docusign-integration-have-any-file-size-limits-on-attachments-or-envelopes" title="DocuSign® 集成对附件或信封是否有任何文件大小限制?"><span class="mt-icon-article-faq"></span>DocuSign® 集成对附件或信封是否有任何文件大小限制?</a></li></ul></li><li class="mt-listing-no-break"><span id="E"></span><h5 title="E">E</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-erp-icons-mean" title="ERP 图标的含义是什么?"><span class="mt-icon-article-faq"></span>ERP 图标的含义是什么?</a></li></ul></li><li class="mt-listing-no-break"><span id="H"></span><h5 title="H">H</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-the-hh2-synchronization-client-transmit-data" title="hh2 同步客户端如何传输数据?"><span class="mt-icon-article-faq"></span>hh2 同步客户端如何传输数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-the-hh2-synchronization-client-connect-procore-to-sage-100-contractor" title="hh2 同步客户端如何将 Procore 连接到 Sage 100 Contractor?"><span class="mt-icon-article-faq"></span>hh2 同步客户端如何将 Procore 连接到 Sage 100 Contractor?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-hh2-connect-to-the-sage-300-cre-server" title="hh2 如何连接到 Sage 300 CRE 服务器?"><span class="mt-icon-article-faq"></span>hh2 如何连接到 Sage 300 CRE 服务器?</a></li></ul></li><li class="mt-listing-no-break"><span id="P"></span><h5 title="P">P</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-raster-and-vector-content-in-pdfs" title="PDF 中的栅格和矢量内容有何区别?"><span class="mt-icon-article-faq"></span>PDF 中的栅格和矢量内容有何区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-analytics-store-dates" title="Procore Analytics如何存储日期?"><span class="mt-icon-article-faq"></span>Procore Analytics如何存储日期?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-user-roles-in-procore-estimating" title="Procore Estimating 中有哪些不同的“用户角色”?"><span class="mt-icon-article-faq"></span>Procore Estimating 中有哪些不同的“用户角色”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-different-docusign-banners-in-procore-mean" title="Procore 中不同的 DocuSign® 横幅是什么意思?"><span class="mt-icon-article-faq"></span>Procore 中不同的 DocuSign® 横幅是什么意思?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-scope-options-for-change-events-in-procore" title="Procore 中变更事件的默认“范围”选项有哪些?"><span class="mt-icon-article-faq"></span>Procore 中变更事件的默认“范围”选项有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-statuses-for-change-events-in-procore" title="Procore 中变更事件的默认状态有哪些?"><span class="mt-icon-article-faq"></span>Procore 中变更事件的默认状态有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-statuses-for-change-orders-in-procore" title="Procore 中变更通知单的默认状态是什么?"><span class="mt-icon-article-faq"></span>Procore 中变更通知单的默认状态是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-standard-trades-are-available-in-procore" title="Procore 中提供哪些标准行业?"><span class="mt-icon-article-faq"></span>Procore 中提供哪些标准行业?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-emails-are-affected-by-the-updated-inbound-email-communication-settings-in-procore" title="Procore 中更新的入站电子邮件通信设置会影响哪些电子邮件?"><span class="mt-icon-article-faq"></span>Procore 中更新的入站电子邮件通信设置会影响哪些电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-types-of-invoices-in-procore" title="Procore 中有哪些不同类型的发票?"><span class="mt-icon-article-faq"></span>Procore 中有哪些不同类型的发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-settings-are-available-in-procore" title="Procore 中有哪些设置可用?"><span class="mt-icon-article-faq"></span>Procore 中有哪些设置可用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-languages-are-available-in-procore" title="Procore 中有哪些语言可用?"><span class="mt-icon-article-faq"></span>Procore 中有哪些语言可用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-the-documents-and-document-management-tools-in-procore" title="Procore 中的“文档”和“文档管理”工具之间有什么区别?"><span class="mt-icon-article-faq"></span>Procore 中的“文档”和“文档管理”工具之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-contact-in-procore-and-which-project-tools-support-the-concept" title="Procore 中的“联系人”是什么?哪些项目工具支持此概念?"><span class="mt-icon-article-faq"></span>Procore 中的“联系人”是什么?哪些项目工具支持此概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-tool-names-and-terms-are-different-in-procore-for-general-contractors-owners-and-specialty-contractors" title="Procore 中的哪些工具名称和术语对于总承包商、业主和专业承包商是不同的?"><span class="mt-icon-article-faq"></span>Procore 中的哪些工具名称和术语对于总承包商、业主和专业承包商是不同的?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-tools-are-supported-by-maps-in-procore" title="Procore 中的地图支持哪些工具?"><span class="mt-icon-article-reference"></span>Procore 中的地图支持哪些工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-notifications-work-for-the-conversations-tool-in-procore" title="Procore 中的对话工具的通知如何工作?"><span class="mt-icon-article-faq"></span>Procore 中的对话工具的通知如何工作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-did-quality-and-safety-go-in-procore" title="Procore 中的质量和安全去哪里了?"><span class="mt-icon-article-faq"></span>Procore 中的质量和安全去哪里了?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-submittals-numbered-in-procore" title="Procore 中的送审如何编号?"><span class="mt-icon-article-faq"></span>Procore 中的送审如何编号?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-distribution-group-and-a-distribution-list" title="Procore 中的通讯组和通讯名单有什么区别?"><span class="mt-icon-article-faq"></span>Procore 中的通讯组和通讯名单有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-items-in-procore-appear-on-the-map" title="Procore 中的项如何在地图上显示?"><span class="mt-icon-article-reference"></span>Procore 中的项如何在地图上显示?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-settings-are-available-for-project-tools-in-procore" title="Procore 中的项目工具有哪些设置可用?"><span class="mt-icon-article-faq"></span>Procore 中的项目工具有哪些设置可用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-commitment-statuses-in-procore" title="Procore 中的默认合约状态有哪些?"><span class="mt-icon-article-faq"></span>Procore 中的默认合约状态有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-permission-levels-in-procore" title="Procore 中的默认权限级别有哪些?"><span class="mt-icon-article-faq"></span>Procore 中的默认权限级别有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-submittal-statuses-in-procore" title="Procore 中的默认送审状态有哪些?"><span class="mt-icon-article-faq"></span>Procore 中的默认送审状态有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-submittal-responses-in-procore" title="Procore 中的默认送审答复有哪些?"><span class="mt-icon-article-faq"></span>Procore 中的默认送审答复有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-project-stages-in-procore" title="Procore 中的默认项目阶段是什么?"><span class="mt-icon-article-faq"></span>Procore 中的默认项目阶段是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-advanced-search-symbol-in-procore" title="Procore 中高级搜索符号是什么?"><span class="mt-icon-article-faq"></span>Procore 中高级搜索符号是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/will-procore-convert-my-non-fillable-pdf-to-a-fillable-pdf" title="Procore 会将我的不可填写 PDF 转换为可填写 PDF 吗?"><span class="mt-icon-article-faq"></span>Procore 会将我的不可填写 PDF 转换为可填写 PDF 吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-does-procore-send-email-notifications-to-invoice-contacts" title="Procore 何时向发票联系人发送电子邮件通知?"><span class="mt-icon-article-faq"></span>Procore 何时向发票联系人发送电子邮件通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-encryption-standard-does-procore-use-to-protect-user-data" title="Procore 使用什么加密标准来保护用户数据?"><span class="mt-icon-article-faq"></span>Procore 使用什么加密标准来保护用户数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-insurance-fields-in-a-procore-company-sync-with-sage-300-cre" title="Procore 公司的哪些保险字段与 Sage 300 CRE 供应商同步?"><span class="mt-icon-article-faq"></span>Procore 公司的哪些保险字段与 Sage 300 CRE 供应商同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-different-statuses-mean-on-procores-feedback-forum" title="Procore 反馈论坛上的不同状态意味着什么?"><span class="mt-icon-article-faq"></span>Procore 反馈论坛上的不同状态意味着什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-statuses-for-procore-invoices" title="Procore 发票的默认状态有哪些?"><span class="mt-icon-article-faq"></span>Procore 发票的默认状态有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-in-the-emails-sent-from-procore" title="Procore 发送的电子邮件中有什么内容?"><span class="mt-icon-article-faq"></span>Procore 发送的电子邮件中有什么内容?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-data-is-synced-between-procore-and-sage-100-contractor" title="Procore 和 Sage 100 Contractor 之间同步哪些数据?"><span class="mt-icon-article-faq"></span>Procore 和 Sage 100 Contractor 之间同步哪些数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-and-how-does-procore-store-customer-information" title="Procore 在哪里以及如何存储客户信息?"><span class="mt-icon-article-faq"></span>Procore 在哪里以及如何存储客户信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-visibility-settings-are-available-for-procore-maps" title="Procore 地图有哪些可见性设置?"><span class="mt-icon-article-faq"></span>Procore 地图有哪些可见性设置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-assign-numbers-to-rfis" title="Procore 如何为 RFI 分配编号?"><span class="mt-icon-article-faq"></span>Procore 如何为 RFI 分配编号?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-decide-which-document-version-is-the-latest-in-the-document-management-tool" title="Procore 如何确定文档管理工具中的最新文档版本?"><span class="mt-icon-article-faq"></span>Procore 如何确定文档管理工具中的最新文档版本?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-automatically-complete-amounts-on-an-upstream-invoice" title="Procore 如何自动完成上游 发票上的金额? (旧版)"><span class="mt-icon-article-faq"></span>Procore 如何自动完成上游 发票上的金额? (旧版)</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-automatically-complete-amounts-on-an-owner-invoice" title="Procore 如何自动完成业主 发票上的金额? (测试版)"><span class="mt-icon-article-faq"></span>Procore 如何自动完成业主 发票上的金额? (测试版)</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-calculate-an-invoices-current-payment-due-amount" title="Procore 如何计算发票的“当前到期应付款”金额?"><span class="mt-icon-article-faq"></span>Procore 如何计算发票的“当前到期应付款”金额?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-calculate-the-over-under-value-in-change-events" title="Procore 如何计算变更事件中的超支/结余值?"><span class="mt-icon-article-faq"></span>Procore 如何计算变更事件中的超支/结余值?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-field-types-are-available-for-custom-fields-in-procore-tools" title="Procore 工具中的自定义字段有哪些字段类型可用?"><span class="mt-icon-article-faq"></span>Procore 工具中的自定义字段有哪些字段类型可用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-claimed-and-unclaimed-business-on-the-procore-construction-network" title="Procore 建设工程网络上已认领和未认领的企业有什么区别?"><span class="mt-icon-article-faq"></span>Procore 建设工程网络上已认领和未认领的企业有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-asta-powerproject-file-formats-are-supported-by-procore" title="Procore 支持哪些 Asta Powerproject 文件格式?"><span class="mt-icon-article-faq"></span>Procore 支持哪些 Asta Powerproject 文件格式?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-web-browsers-are-supported-by-procore" title="Procore 支持哪些 Web 浏览器?"><span class="mt-icon-article-faq"></span>Procore 支持哪些 Web 浏览器?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-sso-identity-providers-are-supported-by-procore" title="Procore 支持哪些单点登录身份提供商?"><span class="mt-icon-article-faq"></span>Procore 支持哪些单点登录身份提供商?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-weather-providers-are-supported-by-procore" title="Procore 支持哪些天气预报提供商?"><span class="mt-icon-article-faq"></span>Procore 支持哪些天气预报提供商?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-versions-of-microsoft-project-does-procore-support" title="Procore 支持哪些版本的 Microsoft Project?"><span class="mt-icon-article-faq"></span>Procore 支持哪些版本的 Microsoft Project?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-the-office-365-integration-in-procores-documents-tool-work" title="Procore 文档工具中的 Office 365 集成如何运行?"><span class="mt-icon-article-faq"></span>Procore 文档工具中的 Office 365 集成如何运行?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-types" title="Procore 有哪些默认成本类型?"><span class="mt-icon-article-faq"></span>Procore 有哪些默认成本类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-template-correspondence-types" title="Procore 模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-faq"></span>Procore 模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-is-the-division-in-the-cost-code-segment-in-procores-wbs" title="Procore 的 WBS 中“成本编号”细分中的“分部”在哪里?"><span class="mt-icon-article-faq"></span>Procore 的 WBS 中“成本编号”细分中的“分部”在哪里?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-budget-code-in-procores-wbs" title="Procore 的 WBS 中的预算编号是什么?"><span class="mt-icon-article-faq"></span>Procore 的 WBS 中的预算编号是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-budget-code-structure-in-procores-wbs" title="Procore 的 WBS 中的预算编号结构是什么?"><span class="mt-icon-article-faq"></span>Procore 的 WBS 中的预算编号结构是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-general-correspondence-template-correspondence-type" title="Procore 的“一般通信”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-faq"></span>Procore 的“一般通信”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-transmittal-template-correspondence-type" title="Procore 的“传输记录”模板通信 类型的默认字段集配置是什么?"><span class="mt-icon-article-faq"></span>Procore 的“传输记录”模板通信 类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-letters-template-correspondence-type" title="Procore 的“信函”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-faq"></span>Procore 的“信函”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-bulletin-template-correspondence-type" title="Procore 的“公告”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-faq"></span>Procore 的“公告”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-change-request-template-correspondence-type" title="Procore 的“变更请求”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-faq"></span>Procore 的“变更请求”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-client-instruction-template-correspondence-type" title="Procore 的“客户指示”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-faq"></span>Procore 的“客户指示”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-extension-of-time-template-correspondence-type" title="Procore 的“延期申请”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-faq"></span>Procore 的“延期申请”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-notice-of-delay-template-correspondence-type" title="Procore 的“延迟通知”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-faq"></span>Procore 的“延迟通知”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-notice-to-proceed-template-correspondence-type" title="Procore 的“开工通知”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-faq"></span>Procore 的“开工通知”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-letters-of-intent-template-correspondence-type" title="Procore 的“意向书”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-faq"></span>Procore 的“意向书”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-notification-of-backcharge-template-correspondence-type" title="Procore 的“扣款通知”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-faq"></span>Procore 的“扣款通知”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-early-warning-notice-template-correspondence-type" title="Procore 的“提早警告通知”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-faq"></span>Procore 的“提早警告通知”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-material-request-template-correspondence-type" title="Procore 的“材料请求”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-faq"></span>Procore 的“材料请求”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-site-instruction-template-correspondence-type" title="Procore 的“现场指示”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-faq"></span>Procore 的“现场指示”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-constraints-template-correspondence-type" title="Procore 的“约束”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-faq"></span>Procore 的“约束”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-lessons-learned-template-correspondence-type" title="Procore 的“经验教训”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-faq"></span>Procore 的“经验教训”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-mitigation-plan-template-correspondence-type" title="Procore 的“缓解计划”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-faq"></span>Procore 的“缓解计划”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-permit-request-template-correspondence-type" title="Procore 的“许可请求”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-faq"></span>Procore 的“许可请求”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-addendum-template-correspondence-type" title="Procore 的“附录”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-faq"></span>Procore 的“附录”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-project-request-template-correspondence-type" title="Procore 的“项目请求”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-faq"></span>Procore 的“项目请求”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-fieldset-configurations-for-procores-risk-identification-template-correspondence-type" title="Procore 的“风险识别”模板通信类型的默认字段集配置是什么?"><span class="mt-icon-article-faq"></span>Procore 的“风险识别”模板通信类型的默认字段集配置是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-units-of-measure-are-included-in-procores-master-list" title="Procore 的主列表中包含哪些计量单位?"><span class="mt-icon-article-faq"></span>Procore 的主列表中包含哪些计量单位?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-product-categories" title="Procore 的产品类别有哪些?"><span class="mt-icon-article-faq"></span>Procore 的产品类别有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-procores-sso-integrations-support-single-or-multiple-domains" title="Procore 的单点登录集成支持单个域还是多个域?"><span class="mt-icon-article-faq"></span>Procore 的单点登录集成支持单个域还是多个域?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-flat-and-tiered-segment-in-procores-wbs" title="Procore 的工作分解结构中的平面细分和分层细分之间有什么区别?"><span class="mt-icon-article-faq"></span>Procore 的工作分解结构中的平面细分和分层细分之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-default-and-custom-segment-in-procores-wbs" title="Procore 的工作分解结构中的默认细分和自定义细分之间有什么区别?"><span class="mt-icon-article-faq"></span>Procore 的工作分解结构中的默认细分和自定义细分之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-differences-between-procores-time-modules" title="Procore 的工时模块之间有什么区别?"><span class="mt-icon-article-faq"></span>Procore 的工时模块之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-data-backup-strategy" title="Procore 的数据备份策略是什么?"><span class="mt-icon-article-faq"></span>Procore 的数据备份策略是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/whats-the-difference-between-procores-user-import-and-vendor-company-import-templates" title="Procore 的用户导入和供应商/公司导入模板之间有什么区别?"><span class="mt-icon-article-faq"></span>Procore 的用户导入和供应商/公司导入模板之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-change-types-and-change-reasons" title="Procore 的默认变更类型和变更原因是什么?"><span class="mt-icon-article-faq"></span>Procore 的默认变更类型和变更原因是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/is-there-a-minimum-passing-score-for-procore-certification-quizzes" title="Procore 认证测验是否有最低及格分数?"><span class="mt-icon-article-faq"></span>Procore 认证测验是否有最低及格分数?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-budget-rom-column-in-procores-budget-tool" title="Procore 预算工具中的“预算 ROM”列是什么?"><span class="mt-icon-article-faq"></span>Procore 预算工具中的“预算 ROM”列是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore 默认成本编号有哪些?"><span class="mt-icon-article-faq"></span>Procore 默认成本编号有哪些?</a></li></ul></li><li class="mt-listing-no-break"><span id="R"></span><h5 title="R">R</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-rfis-tool-can-be-configured-as-required-optional-or-hidden" title="RFI 工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-faq"></span>RFI 工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-does-the-rfis-tool-send-email-notifications" title="RFI 工具何时发送电子邮件通知?"><span class="mt-icon-article-faq"></span>RFI 工具何时发送电子邮件通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-the-integration-by-ryvit-connect-procore-with-viewpoint-vista" title="Ryvit 集成如何连接 Procore 与 Viewpoint® Vista™?"><span class="mt-icon-article-faq"></span>Ryvit 集成如何连接 Procore 与 Viewpoint® Vista™?</a></li></ul></li><li class="mt-listing-no-break"><span id="S"></span><h5 title="S">S</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/does-the-hh2-synchronization-process-for-sage-100-contractor-require-a-terminal-server" title="Sage 100 Contractor 的 hh2 同步过程是否需要终端服务器?"><span class="mt-icon-article-faq"></span>Sage 100 Contractor 的 hh2 同步过程是否需要终端服务器?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/does-the-hh2-synchronization-process-for-sage-300-cre-require-a-terminal-server" title="Sage 300 CRE 的 hh2 同步流程是否需要终端服务器?"><span class="mt-icon-article-faq"></span>Sage 300 CRE 的 hh2 同步流程是否需要终端服务器?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-data-is-synced-between-sage-300-cre-and-procore" title="Sage 300 CRE® 和 Procore 之间同步了哪些数据?"><span class="mt-icon-article-faq"></span>Sage 300 CRE® 和 Procore 之间同步了哪些数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-sp-and-idp-initiated-sso" title="SP 发起的单点登录和 IdP 发起的单点登录之间有何区别?"><span class="mt-icon-article-faq"></span>SP 发起的单点登录和 IdP 发起的单点登录之间有何区别?</a></li></ul></li><li class="mt-listing-no-break"><span id="X"></span><h5 title="X">X</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-x509-certificate-upgrade-impact-users" title="X.509 证书升级对用户有何影响?"><span class="mt-icon-article-faq"></span>X.509 证书升级对用户有何影响?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.B8.8A"></span><h5 title="上">上</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-pdfs-uploaded-to-the-submittals-tool-affected-by-file-restrictions" title="上传到送审工具的 PDF 如何受文件限制影响?"><span class="mt-icon-article-faq"></span>上传到送审工具的 PDF 如何受文件限制影响?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-can-procore-automatically-populate-when-uploading-drawings" title="上传图纸时,Procore 可以自动填充哪些字段?"><span class="mt-icon-article-faq"></span>上传图纸时,Procore 可以自动填充哪些字段?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-can-procore-automatically-populate-when-uploading-specifications" title="上传规范时,Procore 可以自动填充哪些字段?"><span class="mt-icon-article-faq"></span>上传规范时,Procore 可以自动填充哪些字段?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/at-what-tier-can-an-upstream-collaborator-approve-a-change-order" title="上游协作者可以在哪一层批准变更通知单?"><span class="mt-icon-article-faq"></span>上游协作者可以在哪一层批准变更通知单?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.B8.8E"></span><h5 title="与">与</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-integrations-with-procore-access-my-companys-data" title="与 Procore 集成如何访问公司的数据?"><span class="mt-icon-article-faq"></span>与 Procore 集成如何访问公司的数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-roles-associated-with-workflows" title="与工作流关联有哪些不同的角色?"><span class="mt-icon-article-faq"></span>与工作流关联有哪些不同的角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-prevent-duplicate-projects-when-syncing-data-with-resource-planning" title="与资源规划同步数据时如何防止重复项目?"><span class="mt-icon-article-faq"></span>与资源规划同步数据时如何防止重复项目?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.B8.AA"></span><h5 title="个">个</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-personal-and-published-drawing-markups" title="个人图纸标记与已发布图纸标记之间有什么区别?"><span class="mt-icon-article-faq"></span>个人图纸标记与已发布图纸标记之间有什么区别?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.B8.BA"></span><h5 title="为">为</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-procore-project-missing-from-the-erp-integrations-tool" title="为什么 ERP 集成工具中缺少我的 Procore 项目?"><span class="mt-icon-article-faq"></span>为什么 ERP 集成工具中缺少我的 Procore 项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-bid-package-missing-from-the-planroom" title="为什么 Planroom 中没有我的投标文件包?"><span class="mt-icon-article-faq"></span>为什么 Planroom 中没有我的投标文件包?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-the-procore-drive-desktop-shortcut-not-working" title="为什么 Procore Drive 桌面快捷方式不起作用?"><span class="mt-icon-article-faq"></span>为什么 Procore Drive 桌面快捷方式不起作用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-would-the-file-size-of-a-model-increase-in-procore" title="为什么 Procore 中模型的文件大小会增加?"><span class="mt-icon-article-faq"></span>为什么 Procore 中模型的文件大小会增加?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-recent-changes-to-my-sage-database-missing-in-procore" title="为什么 Procore 中缺少对 Sage 数据库的最近更改?"><span class="mt-icon-article-faq"></span>为什么 Procore 中缺少对 Sage 数据库的最近更改?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-did-procore-switch-from-procoretech-to-app.procore" title="为什么 Procore 从 procoretech.com 改为 app.procore.com?"><span class="mt-icon-article-faq"></span>为什么 Procore 从 procoretech.com 改为 app.procore.com?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-does-procore-stop-supporting-older-versions-of-ios-and-android" title="为什么 Procore 停止支持旧版本的 iOS 和 Android?"><span class="mt-icon-article-faq"></span>为什么 Procore 停止支持旧版本的 iOS 和 Android?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-the-percentage-complete-less-than-100-for-a-procore-certification-course" title="为什么 Procore 认证课程的完成百分比低于 100%?"><span class="mt-icon-article-faq"></span>为什么 Procore 认证课程的完成百分比低于 100%?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-the-add-visual-button-unavailable-on-a-single-tool-report" title="为什么"添加视觉元素"按钮在单个工具报告上不可用?"><span class="mt-icon-article-faq"></span>为什么"添加视觉元素"按钮在单个工具报告上不可用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-was-the-procore-fundamentals-training-course-deprecated" title="为什么“Procore 基础知识”培训课程被弃用?"><span class="mt-icon-article-faq"></span>为什么“Procore 基础知识”培训课程被弃用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-the-send-to-erp-button-grayed-out-in-the-project-creation-assistant" title="为什么“发送到 ERP”按钮变暗并且在项目创建助手中不可用?"><span class="mt-icon-article-faq"></span>为什么“发送到 ERP”按钮变暗并且在项目创建助手中不可用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-open-items-list-not-showing-tasks-that-have-been-assigned-to-me" title="为什么“我的未完成项”列表不显示已分配给我的任务?"><span class="mt-icon-article-faq"></span>为什么“我的未完成项”列表不显示已分配给我的任务?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-were-the-deep-dive-training-courses-deprecated" title="为什么“深入研究培训”课程被弃用?"><span class="mt-icon-article-faq"></span>为什么“深入研究培训”课程被弃用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-getting-an-error-when-downloading-procore-drive" title="为什么下载 Procore Drive 时出错?"><span class="mt-icon-article-faq"></span>为什么下载 Procore Drive 时出错?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-delete-items-in-procore" title="为什么不能在 Procore 中删除项?"><span class="mt-icon-article-faq"></span>为什么不能在 Procore 中删除项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-change-the-weather-delay-or-any-of-the-boxes-on-that-row" title="为什么不能更改天气导致的延误或该行上的任何框?"><span class="mt-icon-article-faq"></span>为什么不能更改天气导致的延误或该行上的任何框?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-receiving-procore-emails-at-night" title="为什么会在晚上收到 Procore 电子邮件?"><span class="mt-icon-article-faq"></span>为什么会在晚上收到 Procore 电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-receiving-emails-from-procore" title="为什么会收到 Procore 的电子邮件?"><span class="mt-icon-article-faq"></span>为什么会收到 Procore 的电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-the-delete-button-dimmed-and-not-available--in-the-schedule-tool-of-procore-drive" title="为什么删除按钮在 Procore Drive 的进度计划工具中变暗且不可用?"><span class="mt-icon-article-faq"></span>为什么删除按钮在 Procore Drive 的进度计划工具中变暗且不可用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-isnt-my-model-showing-when-viewing-models-in-procore" title="为什么在 Procore 中查看模型时,模型不显示?"><span class="mt-icon-article-faq"></span>为什么在 Procore 中查看模型时,模型不显示?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-favorites-tab-in-my-profile-settings" title="为什么在“我的个人资料设置”中看不到“收藏夹”标签页?"><span class="mt-icon-article-faq"></span>为什么在“我的个人资料设置”中看不到“收藏夹”标签页?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-viewpoints-being-created-after-i-use-the-markup-tools" title="为什么在使用标记工具后会创建视点?"><span class="mt-icon-article-faq"></span>为什么在使用标记工具后会创建视点?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-it-valuable-to-have-procore-as-an-endorsable-skill-on-my-linkedin-profile" title="为什么在我的 LinkedIn 个人资料中将“Procore”作为可认可的技能很有价值?"><span class="mt-icon-article-faq"></span>为什么在我的 LinkedIn 个人资料中将“Procore”作为可认可的技能很有价值?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-getting-the-error-missing-authentication-cookie-when-viewing-certification-lessons" title="为什么在查看认证课程时会收到“缺少身份验证 Cookie”错误?"><span class="mt-icon-article-faq"></span>为什么在查看认证课程时会收到“缺少身份验证 Cookie”错误?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-export-an-item-from-portfolio-financials-and-capital-planning" title="为什么我不能从综合财务管理和资金规划中导出项目?"><span class="mt-icon-article-faq"></span>为什么我不能从综合财务管理和资金规划中导出项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-turn-off-certain-document-types-for-the-document-management-tool" title="为什么我不能关闭文档管理工具的某些文档"类型"?"><span class="mt-icon-article-faq"></span>为什么我不能关闭文档管理工具的某些文档"类型"?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-wbs-custom-segments" title="为什么我不能创建 WBS 自定义细分?"><span class="mt-icon-article-faq"></span>为什么我不能创建 WBS 自定义细分?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-delete-certain-saved-views-in-the-document-management-tool" title="为什么我不能删除文档管理工具中的某些保存的视图?"><span class="mt-icon-article-faq"></span>为什么我不能删除文档管理工具中的某些保存的视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-use-the-cloud-redline-tool-in-navisworks" title="为什么我不能在 Navisworks® 中使用云红线工具?"><span class="mt-icon-article-faq"></span>为什么我不能在 Navisworks® 中使用云红线工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-deactivate-a-cost-type-cost-code-or-sub-job-in-wbs" title="为什么我不能在 WBS 中停用成本类型、成本编号或子作业?"><span class="mt-icon-article-faq"></span>为什么我不能在 WBS 中停用成本类型、成本编号或子作业?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-a-follow-up-meeting-in-the-meetings-tool" title="为什么我不能在会议工具中创建后续会议?"><span class="mt-icon-article-faq"></span>为什么我不能在会议工具中创建后续会议?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-expand-the-awarded-value-row-in-portfolio-financials-and-capital-planning" title="为什么我不能在综合财务管理和资金规划中展开“中标值”行?"><span class="mt-icon-article-faq"></span>为什么我不能在综合财务管理和资金规划中展开“中标值”行?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-add-procore-tools-to-my-favorites-list" title="为什么我不能将 Procore 工具添加到收藏夹列表中?"><span class="mt-icon-article-faq"></span>为什么我不能将 Procore 工具添加到收藏夹列表中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-edit-or-delete-an-approved-change-order" title="为什么我不能编辑或删除“获批”变更通知单?"><span class="mt-icon-article-faq"></span>为什么我不能编辑或删除“获批”变更通知单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-do-some-of-our-projects-rfi-numbers-have-two-prefixes" title="为什么我们项目的某些 RFI 编号有两个前缀?"><span class="mt-icon-article-faq"></span>为什么我们项目的某些 RFI 编号有两个前缀?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-can-i-view-the-commitments-tool-but-cannot-see-any-commitments" title="为什么我可以查看合约工具但看不到任何合约?"><span class="mt-icon-article-faq"></span>为什么我可以查看合约工具但看不到任何合约?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-sync-or-refresh-buttons-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到“同步”或“刷新”按钮?"><span class="mt-icon-article-faq"></span>为什么我在 ERP 集成工具中看不到“同步”或“刷新”按钮?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-accept-reject-options-in-the-erp-integrations-tool" title="为什么我在 ERP 集成工具中看不到接受/拒绝选项?"><span class="mt-icon-article-faq"></span>为什么我在 ERP 集成工具中看不到接受/拒绝选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-receiving-an-error-message-in-the-procore-imports-app" title="为什么我在 Procore Imports 应用程序中收到错误消息?"><span class="mt-icon-article-faq"></span>为什么我在 Procore Imports 应用程序中收到错误消息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-receiving-the-error-no-user-found-with-the-given-email-address-when-logging-in-with-sso" title="为什么我在使用 SSO 登录时收到“未发现有用户使用给定的电子邮件地址”错误?"><span class="mt-icon-article-faq"></span>为什么我在使用 SSO 登录时收到“未发现有用户使用给定的电子邮件地址”错误?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-not-seeing-my-issues-after-i-associate-the-file-to-my-project" title="为什么我在将文件关联到我的项目后看不到我的问题?"><span class="mt-icon-article-faq"></span>为什么我在将文件关联到我的项目后看不到我的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-do-i-see-an-error-when-trying-to-export-data-to-sage-300-cre" title="为什么我在尝试将数据导出到 Sage 300 CRE 时看到错误?"><span class="mt-icon-article-faq"></span>为什么我在尝试将数据导出到 Sage 300 CRE 时看到错误?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-having-problems-playing-training-videos" title="为什么我在播放培训视频时遇到问题?"><span class="mt-icon-article-faq"></span>为什么我在播放培训视频时遇到问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-contract-room-in-portfolio-financials" title="为什么我在综合财务管理中看不到合同室?"><span class="mt-icon-article-faq"></span>为什么我在综合财务管理中看不到合同室?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-the-bid-room-in-portfolio-financials" title="为什么我在综合财务管理中看不到投标室?"><span class="mt-icon-article-faq"></span>为什么我在综合财务管理中看不到投标室?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-not-seeing-all-of-my-viewpoints-in-the-viewpoints-inport-tool" title="为什么我在视点导入工具中看不到我的所有视点?"><span class="mt-icon-article-faq"></span>为什么我在视点导入工具中看不到我的所有视点?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-one-of-my-users-in-my-certification-analytics" title="为什么我在认证分析中看不到我的某位用户?"><span class="mt-icon-article-tutorial"></span>为什么我在认证分析中看不到我的某位用户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-see-all-my-favorite-tools-on-a-project" title="为什么我在项目中看不到所有收藏的工具?"><span class="mt-icon-article-faq"></span>为什么我在项目中看不到所有收藏的工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-dont-i-have-permission-to-access-the-resource-planning-tool" title="为什么我无权查看资源规划工具?"><span class="mt-icon-article-faq"></span>为什么我无权查看资源规划工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-unable-to-download-and-open-a-zip-file-from-procore" title="为什么我无法从 Procore 下载和打开 .ZIP 文件?"><span class="mt-icon-article-faq"></span>为什么我无法从 Procore 下载和打开 .ZIP 文件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-a-change-order" title="为什么我无法创建变更通知单?"><span class="mt-icon-article-faq"></span>为什么我无法创建变更通知单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-or-activate-procore-projects" title="为什么我无法创建或激活 Procore 项目?"><span class="mt-icon-article-faq"></span>为什么我无法创建或激活 Procore 项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-unable-to-log-in-to-the-procore-certification-site" title="为什么我无法登录 Procore 认证网站?"><span class="mt-icon-article-faq"></span>为什么我无法登录 Procore 认证网站?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-log-in-to-portfolio-financials-and-capital-planning" title="为什么我无法登录“综合财务管理”和“资金规划”?"><span class="mt-icon-article-faq"></span>为什么我无法登录“综合财务管理”和“资金规划”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-not-receiving-emails-from-portfolio-financials" title="为什么我没有收到来自综合财务管理和资金规划的电子邮件?"><span class="mt-icon-article-faq"></span>为什么我没有收到来自综合财务管理和资金规划的电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-didnt-i-receive-an-email-notification-from-a-submittal" title="为什么我没有收到送审的电子邮件通知?"><span class="mt-icon-article-faq"></span>为什么我没有收到送审的电子邮件通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-procore-certified-certificate-missing" title="为什么我的 Procore 认证证书缺失?"><span class="mt-icon-article-faq"></span>为什么我的 Procore 认证证书缺失?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-sage-data-not-syncing" title="为什么我的 Sage 300 CRE 数据不同步?"><span class="mt-icon-article-faq"></span>为什么我的 Sage 300 CRE 数据不同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-my-vendor-access-the-bid-room-in-portfolio-financials" title="为什么我的供应商无法访问综合财务管理中的投标室?"><span class="mt-icon-article-faq"></span>为什么我的供应商无法访问综合财务管理中的投标室?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-change-order-line-items-duplicated-on-my-subcontractor-invoice" title="为什么我的变更通知单明细项在我的分包商发票上重复?"><span class="mt-icon-article-faq"></span>为什么我的变更通知单明细项在我的分包商发票上重复?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-my-team-member-see-a-project-in-portfolio-financials-and-capital-planning" title="为什么我的团队成员无法查看综合财务管理和资金规划中的项目?"><span class="mt-icon-article-faq"></span>为什么我的团队成员无法查看综合财务管理和资金规划中的项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-drawing-uploads-failing" title="为什么我的图纸上传失败?"><span class="mt-icon-article-faq"></span>为什么我的图纸上传失败?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-drawing-comparisons-failing" title="为什么我的图纸对比失败?"><span class="mt-icon-article-faq"></span>为什么我的图纸对比失败?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-training-courses-missing" title="为什么我的培训课程不见了?"><span class="mt-icon-article-faq"></span>为什么我的培训课程不见了?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-the-weather-conditions-not-showing-on-my-daily-log-weather-log" title="为什么我的工作日志天气日志中不显示天气条件?"><span class="mt-icon-article-faq"></span>为什么我的工作日志天气日志中不显示天气条件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-some-of-my-sub-folders-in-my-bid-documents-folder-not-showing-up-when-my-bidders-download-them" title="为什么我的投标人下载[投标文件]文件夹中的子文件夹时,某些子文件夹没有显示?"><span class="mt-icon-article-faq"></span>为什么我的投标人下载[投标文件]文件夹中的子文件夹时,某些子文件夹没有显示?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-file-uploads-failing" title="为什么我的文件上传失败?"><span class="mt-icon-article-faq"></span>为什么我的文件上传失败?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-arent-my-grids-aligned-in-the-models-tool" title="为什么我的网格在模型工具中没有对齐?"><span class="mt-icon-article-faq"></span>为什么我的网格在模型工具中没有对齐?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-form-template-not-loading" title="为什么我的表单模板没有加载?"><span class="mt-icon-article-faq"></span>为什么我的表单模板没有加载?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-specification-uploads-failing" title="为什么我的规范上传失败?"><span class="mt-icon-article-faq"></span>为什么我的规范上传失败?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-certification-analytics-page-blank" title="为什么我的认证分析页面是空白的?"><span class="mt-icon-article-faq"></span>为什么我的认证分析页面是空白的?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-courses-not-showing-up-in-my-procore-certification-profile" title="为什么我的课程未显示在 Procore 认证资料中?"><span class="mt-icon-article-faq"></span>为什么我的课程未显示在 Procore 认证资料中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-isnt-my-project-weather-working" title="为什么我的项目天气小部件不工作?"><span class="mt-icon-article-faq"></span>为什么我的项目天气小部件不工作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-do-i-see-people-in-workforce-planning-but-not-procore" title="为什么我能在劳动力规划中看到人员,在 Procore 中却不能?"><span class="mt-icon-article-faq"></span>为什么我能在劳动力规划中看到人员,在 Procore 中却不能?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-do-i-need-to-log-in-to-procores-support-site" title="为什么我需要登录 Procore 的支持网站?"><span class="mt-icon-article-faq"></span>为什么我需要登录 Procore 的支持网站?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-receive-email-from-procore" title="为什么收不到 Procore 的电子邮件?"><span class="mt-icon-article-faq"></span>为什么收不到 Procore 的电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-turn-off-the-action-required-emails-from-the-submittals-tool" title="为什么无法关闭从送审工具发送的“待办事项”电子邮件?"><span class="mt-icon-article-faq"></span>为什么无法关闭从送审工具发送的“待办事项”电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-unable-to-assign-users-to-a-rfq" title="为什么无法将用户分配到 RFQ?"><span class="mt-icon-article-faq"></span>为什么无法将用户分配到 RFQ?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-update-my-procore-app-ios" title="为什么无法更新我的 Procore 应用程序?(iOS)"><span class="mt-icon-article-faq"></span>为什么无法更新我的 Procore 应用程序?(iOS)</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/trouble-logging-in-to-procore" title="为什么无法登录 Procore?"><span class="mt-icon-article-faq"></span>为什么无法登录 Procore?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-log-in-to-my-certification-analytics-dashboard" title="为什么无法登录认证分析仪表板?"><span class="mt-icon-article-tutorial"></span>为什么无法登录认证分析仪表板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-not-seeing-all-of-my-projects-in-the-conversations-tool" title="为什么没有在对话工具中看到我的所有项目?"><span class="mt-icon-article-faq"></span>为什么没有在对话工具中看到我的所有项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-financial-health-section-of-the-health-dashboard-not-configured" title="为什么没有配置健康仪表板的财务健康部分?"><span class="mt-icon-article-faq"></span>为什么没有配置健康仪表板的财务健康部分?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-were-tool-configuration-user-usage-and-data-quality-moved" title="为什么移动工具配置、用户使用情况和数据质量报告页面?"><span class="mt-icon-article-faq"></span>为什么移动工具配置、用户使用情况和数据质量报告页面?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-automatic-drawing-sheet-links-missing" title="为什么自动图纸页链接丢失?"><span class="mt-icon-article-faq"></span>为什么自动图纸页链接丢失?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-wont-the-resource-planning-tool-load" title="为什么资源规划工具不加载?"><span class="mt-icon-article-faq"></span>为什么资源规划工具不加载?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-isnt-the-projects-budget-view-reflecting-labor-costs-and-production-quantities-from-timecard-entries" title="为什么项目的预算视图没有反映考勤卡条目中的人工成本和生产数量?"><span class="mt-icon-article-faq"></span>为什么项目的预算视图没有反映考勤卡条目中的人工成本和生产数量?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-isnt-the-job-to-date-costs-column-in-the-budget-matching-our-subcontractor-invoice-amounts" title="为什么预算中的“开工至今成本”列与分包商发票金额不一致?"><span class="mt-icon-article-faq"></span>为什么预算中的“开工至今成本”列与分包商发票金额不一致?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.B8.BB"></span><h5 title="主">主</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-prime-contracts-tool-can-be-configured-as-required-optional-or-hidden" title="主合同工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-faq"></span>主合同工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-columns-in-the-prime-contracts-tool" title="主合同工具中的默认列是什么列?"><span class="mt-icon-article-faq"></span>主合同工具中的默认列是什么列?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.BA.8B"></span><h5 title="事">事</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-incidents-tool-can-be-configured-as-required-optional-or-hidden" title="事件工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-faq"></span>事件工具中的哪些字段可以配置为必填、可选或隐藏?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.BA.BA"></span><h5 title="人">人</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-messages-and-alerts-can-people-respond-to-in-resource-planning" title="人员可以在资源规划中答复哪些消息和警报?"><span class="mt-icon-article-faq"></span>人员可以在资源规划中答复哪些消息和警报?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-a-person-be-associated-with-multiple-vendor-company-records-in-the-company-directory" title="人员能否与公司级别目录工具中的多个供应商/公司记录关联?"><span class="mt-icon-article-faq"></span>人员能否与公司级别目录工具中的多个供应商/公司记录关联?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-labor-productivity-budget-view-and-field-production-report" title="人工生产力预算视图和现场生产报告有什么区别?"><span class="mt-icon-article-faq"></span>人工生产力预算视图和现场生产报告有什么区别?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.BB.80"></span><h5 title="什">什</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-will-i-receive-emails-about-the-project-i-am-bidding-on-in-portfolio-financials" title="什么时候会收到有关我在综合财务管理中投标的项目的电子邮件?"><span class="mt-icon-article-faq"></span>什么时候会收到有关我在综合财务管理中投标的项目的电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-asta-powerproject-and-how-does-it-integrate-with-procore" title="什么是 Asta Powerproject 以及它如何与 Procore 集成?"><span class="mt-icon-article-faq"></span>什么是 Asta Powerproject 以及它如何与 Procore 集成?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-bluebeam-studio" title="什么是 Bluebeam Studio?"><span class="mt-icon-article-faq"></span>什么是 Bluebeam Studio?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-capital-planning" title="什么是 Capital Planning 资金规划?"><span class="mt-icon-article-faq"></span>什么是 Capital Planning 资金规划?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-docusign-fields-and-can-i-customize-them" title="什么是 DocuSign® 字段,我可以自定义它们吗?"><span class="mt-icon-article-faq"></span>什么是 DocuSign® 字段,我可以自定义它们吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-primavera-p6-and-how-does-it-integrate-with-procore" title="什么是 Primavera P6 及其如何与 Procore 集成?"><span class="mt-icon-article-faq"></span>什么是 Primavera P6 及其如何与 Procore 集成?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procore-bim" title="什么是 Procore BIM?"><span class="mt-icon-article-faq"></span>什么是 Procore BIM?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="什么是 Procore 中的“相关项”?"><span class="mt-icon-article-faq"></span>什么是 Procore 中的“相关项”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-transmittal-in-procore" title="什么是 Procore 中的传输记录?"><span class="mt-icon-article-faq"></span>什么是 Procore 中的传输记录?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-permissions-in-procore-and-how-do-they-work" title="什么是 Procore 中的权限以及它们如何工作?"><span class="mt-icon-article-faq"></span>什么是 Procore 中的权限以及它们如何工作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-project-permissions-templates-in-procore" title="什么是 Procore 中的默认项目权限模板?"><span class="mt-icon-article-faq"></span>什么是 Procore 中的默认项目权限模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="什么是 Procore 回收站?"><span class="mt-icon-article-faq"></span>什么是 Procore 回收站?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-security-and-trust-self-certified-badge" title="什么是 Procore 应用商店中应用程序的安全和信任自行认证徽章?"><span class="mt-icon-article-faq"></span>什么是 Procore 应用商店中应用程序的安全和信任自行认证徽章?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-procore-construction-network" title="什么是 Procore 建设工程网络?"><span class="mt-icon-article-faq"></span>什么是 Procore 建设工程网络?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-unavailibility" title="什么是 Procore 的不可用性?"><span class="mt-icon-article-faq"></span>什么是 Procore 的不可用性?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-availability" title="什么是 Procore 的可用性?"><span class="mt-icon-article-faq"></span>什么是 Procore 的可用性?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-standard-budget-views" title="什么是 Procore 的标准预算视图?"><span class="mt-icon-article-faq"></span>什么是 Procore 的标准预算视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procore-community" title="什么是 Procore 社区?"><span class="mt-icon-article-faq"></span>什么是 Procore 社区?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-procore-plugin-and-what-is-it-used-for" title="什么是 Procore插件,有何用途?"><span class="mt-icon-article-faq"></span>什么是 Procore插件,有何用途?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-rfi-manager-role" title="什么是 RFI 经理角色?"><span class="mt-icon-article-faq"></span>什么是 RFI 经理角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-rfi" title="什么是 RFI?"><span class="mt-icon-article-faq"></span>什么是 RFI?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-draft-rfi" title="什么是 RFI“草稿”?"><span class="mt-icon-article-faq"></span>什么是 RFI“草稿”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-enable-always-editable-schedule-of-values-setting" title="什么是“启用始终可编辑的分项价格表”设置?"><span class="mt-icon-article-faq"></span>什么是“启用始终可编辑的分项价格表”设置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-completed-action-plan-receiver" title="什么是“已完成行动计划的接收者”?"><span class="mt-icon-article-faq"></span>什么是“已完成行动计划的接收者”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-site-instruction" title="什么是“指示”或“现场指示”?"><span class="mt-icon-article-faq"></span>什么是“指示”或“现场指示”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-production-quantities" title="什么是“生产数量”?"><span class="mt-icon-article-faq"></span>什么是“生产数量”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-private-timecard-and-which-timecards-can-be-set-to-private" title="什么是“私密”考勤卡以及哪些考勤卡可以设置为私密?"><span class="mt-icon-article-faq"></span>什么是“私密”考勤卡以及哪些考勤卡可以设置为私密?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-action-plan-approver" title="什么是“行动计划审批者”?"><span class="mt-icon-article-faq"></span>什么是“行动计划审批者”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-submittal-manager-role" title="什么是“送审经理”角色?"><span class="mt-icon-article-faq"></span>什么是“送审经理”角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-procore-analytics-risk-report" title="什么是Procore Analytics风险报告?"><span class="mt-icon-article-faq"></span>什么是Procore Analytics风险报告?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-upstream-collaborator" title="什么是上游协作者?"><span class="mt-icon-article-faq"></span>什么是上游协作者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-downstream-collaborator" title="什么是下游协作者?"><span class="mt-icon-article-faq"></span>什么是下游协作者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-incident" title="什么是事件?"><span class="mt-icon-article-faq"></span>什么是事件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="什么是会计审批者角色?"><span class="mt-icon-article-faq"></span>什么是会计审批者角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-meeting-minutes" title="什么是会议纪要?"><span class="mt-icon-article-faq"></span>什么是会议纪要?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-company-admin" title="什么是公司管理员?"><span class="mt-icon-article-faq"></span>什么是公司管理员?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-subcontractor-schedule-of-values" title="什么是分包商分项价格表?"><span class="mt-icon-article-faq"></span>什么是分包商分项价格表?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-dynamic-approver-due-dates" title="什么是动态计算审批者截止日期?"><span class="mt-icon-article-faq"></span>什么是动态计算审批者截止日期?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-workforce-planning-laborchart-web-application" title="什么是劳动力规划/ LaborChart Web 应用程序?"><span class="mt-icon-article-faq"></span>什么是劳动力规划/ LaborChart Web 应用程序?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-single-sign-on-sso" title="什么是单点登录 (SSO)?"><span class="mt-icon-article-faq"></span>什么是单点登录 (SSO)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-invoice-administrator" title="什么是发票 管理员?"><span class="mt-icon-article-faq"></span>什么是发票 管理员?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-invoice-contact" title="什么是发票联系人?"><span class="mt-icon-article-faq"></span>什么是发票联系人?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-change-event" title="什么是变更事件?"><span class="mt-icon-article-faq"></span>什么是变更事件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-change-order" title="什么是变更通知单?"><span class="mt-icon-article-faq"></span>什么是变更通知单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-assignable-permissions-template" title="什么是可分配权限模板?"><span class="mt-icon-article-faq"></span>什么是可分配权限模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-fillable-pdf" title="什么是可填写 PDF?"><span class="mt-icon-article-faq"></span>什么是可填写 PDF?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-configurable-fieldsets-and-which-procore-tools-support-them" title="什么是可配置字段集以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-faq"></span>什么是可配置字段集以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-drawing-areas" title="什么是图纸区域?"><span class="mt-icon-article-faq"></span>什么是图纸区域?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-unpublished-status-on-drawings" title="什么是图纸的未发布状态?"><span class="mt-icon-article-faq"></span>什么是图纸的未发布状态?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-drawing-set" title="什么是图纸集?"><span class="mt-icon-article-faq"></span>什么是图纸集?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-training-center" title="什么是培训中心?"><span class="mt-icon-article-faq"></span>什么是培训中心?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-role-based-permissions" title="什么是基于角色的权限?"><span class="mt-icon-article-faq"></span>什么是基于角色的权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-multi-tiered-locations" title="什么是多层地点?"><span class="mt-icon-article-faq"></span>什么是多层地点?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-punch-list" title="什么是尾项清单?"><span class="mt-icon-article-faq"></span>什么是尾项清单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-punch-list-work-flow" title="什么是尾项清单工作流?"><span class="mt-icon-article-faq"></span>什么是尾项清单工作流?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-work-breakdown-structure-wbs" title="什么是工作分解结构 (WBS)?"><span class="mt-icon-article-faq"></span>什么是工作分解结构 (WBS)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-daily-log" title="什么是工作日志?"><span class="mt-icon-article-faq"></span>什么是工作日志?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-tm-ticket" title="什么是工时和材料单?"><span class="mt-icon-article-faq"></span>什么是工时和材料单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-app-management" title="什么是应用程序管理?"><span class="mt-icon-article-faq"></span>什么是应用程序管理?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/app-management-metrics-how-to-access" title="什么是应用程序管理指标以及如何访问它们?"><span class="mt-icon-article-faq"></span>什么是应用程序管理指标以及如何访问它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-app-configurations" title="什么是应用程序配置,如何使用?"><span class="mt-icon-article-faq"></span>什么是应用程序配置,如何使用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-construction-bidding-process" title="什么是建设工程投标流程?"><span class="mt-icon-article-faq"></span>什么是建设工程投标流程?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-construction-projects-schedule" title="什么是建设工程项目的进度计划?"><span class="mt-icon-article-faq"></span>什么是建设工程项目的进度计划?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-developer-managed-service-account" title="什么是开发人员管理服务账户?"><span class="mt-icon-article-faq"></span>什么是开发人员管理服务账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-blind-bidding" title="什么是投盲标?"><span class="mt-icon-article-faq"></span>什么是投盲标?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-naming-standard-in-the-document-management-tool" title="什么是文档管理工具中的命名标准?"><span class="mt-icon-article-faq"></span>什么是文档管理工具中的命名标准?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-collection-in-the-document-management-tool" title="什么是文档管理工具中的集合?"><span class="mt-icon-article-faq"></span>什么是文档管理工具中的集合?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-service-account" title="什么是服务账户?"><span class="mt-icon-article-faq"></span>什么是服务账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-permissions-template" title="什么是权限模板?"><span class="mt-icon-article-faq"></span>什么是权限模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-monthly-sandbox-environment" title="什么是每月沙箱环境?"><span class="mt-icon-article-faq"></span>什么是每月沙箱环境?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-test-project" title="什么是测试项目?"><span class="mt-icon-article-faq"></span>什么是测试项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-sliding-scale-retention" title="什么是浮动保留金?"><span class="mt-icon-article-faq"></span>什么是浮动保留金?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-segments-and-segment-items" title="什么是细分和细分项?"><span class="mt-icon-article-faq"></span>什么是细分和细分项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-maintenance" title="什么是维护?"><span class="mt-icon-article-faq"></span>什么是维护?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-portfolio-financials" title="什么是综合财务管理?"><span class="mt-icon-article-faq"></span>什么是综合财务管理?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-contract-room-in-portfolio-financials" title="什么是综合财务管理中的合同室?"><span class="mt-icon-article-faq"></span>什么是综合财务管理中的合同室?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-cost-allocations-and-components-in-portfolio-financials" title="什么是综合财务管理中的成本分配和组件?"><span class="mt-icon-article-faq"></span>什么是综合财务管理中的成本分配和组件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-uncategorized-invoices-in-portfolio-financials" title="什么是综合财务管理中的未分类发票?"><span class="mt-icon-article-faq"></span>什么是综合财务管理中的未分类发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-project-cost-reporting-in-portfolio-financials" title="什么是综合财务管理中的项目成本报告?"><span class="mt-icon-article-faq"></span>什么是综合财务管理中的项目成本报告?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-example-use-case-for-project-comaprison-in-portfolio-financials-and-capital-planning" title="什么是综合财务管理和资金规划中项目比较的示例用例?"><span class="mt-icon-article-faq"></span>什么是综合财务管理和资金规划中项目比较的示例用例?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-approvals-in-portfolio-financials" title="什么是综合财务管理审批?"><span class="mt-icon-article-faq"></span>什么是综合财务管理审批?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-phishing" title="什么是网络钓鱼?"><span class="mt-icon-article-faq"></span>什么是网络钓鱼?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-fields-and-which-procore-tools-support-them" title="什么是自定义字段以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-faq"></span>什么是自定义字段以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-sections-and-which-procore-tools-support-them" title="什么是自定义部分以及哪些 Procore 工具支持它们?"><span class="mt-icon-article-faq"></span>什么是自定义部分以及哪些 Procore 工具支持它们?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-project-roles" title="什么是自定义项目角色?"><span class="mt-icon-article-faq"></span>什么是自定义项目角色?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-plan-manager-in-an-action-plan" title="什么是行动计划中的“计划经理”?"><span class="mt-icon-article-faq"></span>什么是行动计划中的“计划经理”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-blocking-functionality-in-an-action-plan" title="什么是行动计划中的“锁定功能”?"><span class="mt-icon-article-faq"></span>什么是行动计划中的“锁定功能”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-specifications" title="什么是规范?"><span class="mt-icon-article-faq"></span>什么是规范?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-specification-set" title="什么是规范集?"><span class="mt-icon-article-faq"></span>什么是规范集?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-touch-commands" title="什么是触控指令?"><span class="mt-icon-article-faq"></span>什么是触控指令?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-resource-allocation-type" title="什么是资源分配类型?"><span class="mt-icon-article-faq"></span>什么是资源分配类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-laborchart-app" title="什么是资源规划/ LaborChart应用程序?"><span class="mt-icon-article-faq"></span>什么是资源规划/ LaborChart应用程序?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-sensitive-field-in-resource-planning" title="什么是资源规划中的"敏感字段"?"><span class="mt-icon-article-faq"></span>什么是资源规划中的"敏感字段"?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-resource-bench-in-resource-planning" title="什么是资源规划中的"资源台"?"><span class="mt-icon-article-faq"></span>什么是资源规划中的"资源台"?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-assignment-alert-in-resource-planning" title="什么是资源规划中的分配警报?"><span class="mt-icon-article-faq"></span>什么是资源规划中的分配警报?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-data-syncing-for-resource-planning" title="什么是资源规划的数据同步?"><span class="mt-icon-article-faq"></span>什么是资源规划的数据同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-super-private-correspondence-types" title="什么是超级私密通信类型?"><span class="mt-icon-article-faq"></span>什么是超级私密通信类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-submittal" title="什么是送审?"><span class="mt-icon-article-faq"></span>什么是送审?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-draft-submittal" title="什么是送审“草稿”?"><span class="mt-icon-article-faq"></span>什么是送审“草稿”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-submittal-revision" title="什么是送审修订?"><span class="mt-icon-article-faq"></span>什么是送审修订?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-submittal-package" title="什么是送审汇总包?"><span class="mt-icon-article-faq"></span>什么是送审汇总包?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-correspondence-tool" title="什么是通信工具?"><span class="mt-icon-article-faq"></span>什么是通信工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-partial-budget-line-item" title="什么是部分预算明细项?"><span class="mt-icon-article-faq"></span>什么是部分预算明细项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-project-template" title="什么是项目模板?"><span class="mt-icon-article-faq"></span>什么是项目模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-project-administrator" title="什么是项目管理员?"><span class="mt-icon-article-tutorial"></span>什么是项目管理员?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-threshold-values-for-the-portfolio-tools-health-dashboard" title="什么是项目集合工具的健康仪表板的阈值?"><span class="mt-icon-article-faq"></span>什么是项目集合工具的健康仪表板的阈值?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-the-budget-forecast-report" title="什么是预算预测报告?"><span class="mt-icon-article-faq"></span>什么是预算预测报告?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-action-plan-verification-methods" title="什么是默认行动计划验证方法?"><span class="mt-icon-article-faq"></span>什么是默认行动计划验证方法?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.BB.8E"></span><h5 title="从">从</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-requirements-for-importing-sov-line-items-from-csv" title="从 CSV 导入 SOV 行项目有哪些要求?"><span class="mt-icon-article-faq"></span>从 CSV 导入 SOV 行项目有哪些要求?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-long-does-it-take-to-extract-data-from-procore" title="从 Procore 中提取数据需要多长时间?"><span class="mt-icon-article-faq"></span>从 Procore 中提取数据需要多长时间?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-when-companies-and-users-are-added-from-the-procore-construction-network-to-the-company-directory" title="从 Procore 建设工程网络中将公司和用户添加到公司目录时会发生什么?"><span class="mt-icon-article-faq"></span>从 Procore 建设工程网络中将公司和用户添加到公司目录时会发生什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-values-pull-into-a-change-order-sov-from-a-change-event" title="从变更事件中将哪些值提取到变更通知单 SOV?"><span class="mt-icon-article-faq"></span>从变更事件中将哪些值提取到变更通知单 SOV?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.BB.BB"></span><h5 title="任">任</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-does-the-tasks-tool-send-email-notifications" title="任务工具何时发送电子邮件通知?"><span class="mt-icon-article-faq"></span>任务工具何时发送电子邮件通知?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.BC.81"></span><h5 title="企">企</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-businesses-approved-to-be-listed-on-the-procore-construction-network" title="企业如何获批在 Procore 建设工程网络中上市?"><span class="mt-icon-article-faq"></span>企业如何获批在 Procore 建设工程网络中上市?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.BC.9A"></span><h5 title="会">会</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-meetings-integrate-with-microsoft-outlook-calendar" title="会议是否与 Microsoft Outlook 日历集成?"><span class="mt-icon-article-faq"></span>会议是否与 Microsoft Outlook 日历集成?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.BC.A0"></span><h5 title="传">传</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-tls-1-2-impact-users" title="传输层安全 v1.2 要求对用户有何影响?"><span class="mt-icon-article-faq"></span>传输层安全 v1.2 要求对用户有何影响?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.BC.B0"></span><h5 title="估">估</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-fields-are-in-an-estimate-and-how-are-they-calculated" title="估算中有哪些字段以及它们是如何计算的?"><span class="mt-icon-article-faq"></span>估算中有哪些字段以及它们是如何计算的?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-budget-codes-in-an-estimate-create-line-items-in-a-budget" title="估算中的预算编号如何创建预算中的明细项?"><span class="mt-icon-article-faq"></span>估算中的预算编号如何创建预算中的明细项?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.BD.9C"></span><h5 title="作">作</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what's-the-difference-between-a-job-a-parent-job-and-a-sub-job" title="作业、父作业和子作业之间有何区别?"><span class="mt-icon-article-faq"></span>作业、父作业和子作业之间有何区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-access-an-rfi-as-an-assignee" title="作为任务分配对象,如何访问 RFI?"><span class="mt-icon-article-faq"></span>作为任务分配对象,如何访问 RFI?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.BD.BF"></span><h5 title="使">使</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-additional-user-permissions-are-required-to-access-reportable-data-with-360-reporting" title="使用 360 度报告访问可报告数据需要哪些额外的用户权限?"><span class="mt-icon-article-faq"></span>使用 360 度报告访问可报告数据需要哪些额外的用户权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-tools-can-i-extract-project-data-from-using-the-procore-extracts-application" title="使用 Procore Extracts 应用程序可以从哪些工具中提取项目数据?"><span class="mt-icon-article-faq"></span>使用 Procore Extracts 应用程序可以从哪些工具中提取项目数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-calculation-method-should-i-choose-when-using-the-forecast-to-complete-feature" title="使用“完工预测”功能时应该选择哪种计算方法?"><span class="mt-icon-article-faq"></span>使用“完工预测”功能时应该选择哪种计算方法?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-copy-and-duplicate-with-drawing-markups%3F" title="使用图纸标记进行复制和复制有什么区别?"><span class="mt-icon-article-faq"></span>使用图纸标记进行复制和复制有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-best-practices-for-using-multiple-phased-budget-uploads" title="使用多个(分阶段)预算上传的最佳做法是什么?"><span class="mt-icon-article-faq"></span>使用多个(分阶段)预算上传的最佳做法是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-data-entry-differ-between-punch-items-created-with-manual-input-and-punch-items-created-with-quick-capture" title="使用手动输入创建的尾项项目和使用 Quick Capture 创建的尾项项目之间的数据输入有何不同?"><span class="mt-icon-article-faq"></span>使用手动输入创建的尾项项目和使用 Quick Capture 创建的尾项项目之间的数据输入有何不同?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.85.8D"></span><h5 title="免">免</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-permissions-work-for-free-procore-accounts" title="免费 Procore 账户的权限如何工作?"><span class="mt-icon-article-faq"></span>免费 Procore 账户的权限如何工作?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.85.AC"></span><h5 title="公">公</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-changes-when-companies-upgrade-to-paid-accounts" title="公司升级到付费账户会发生什么变化?"><span class="mt-icon-article-faq"></span>公司升级到付费账户会发生什么变化?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-companys-bid-board-tool" title="公司投标板工具有哪些细分权限?"><span class="mt-icon-article-faq"></span>公司投标板工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-companys-resource-planning-tool" title="公司的资源规划工具有哪些细分权限?"><span class="mt-icon-article-faq"></span>公司的资源规划工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-company-level-directory-tool" title="公司级别目录工具有哪些细分权限?"><span class="mt-icon-article-faq"></span>公司级别目录工具有哪些细分权限?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.85.B3"></span><h5 title="关">关</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-to-know-vapid-api-deprecation" title="关于 Vapid API 的弃用,我需要了解什么?"><span class="mt-icon-article-faq"></span>关于 Vapid API 的弃用,我需要了解什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-I-know-about-claiming-a-business-on-the-procore-construction-network" title="关于在 Procore 建设工程网络上申请业务,我应该了解什么?"><span class="mt-icon-article-faq"></span>关于在 Procore 建设工程网络上申请业务,我应该了解什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/common-questions-apps-and-marketplace" title="关于应用程序和 Procore 应用商店的常见问题"><span class="mt-icon-article-faq"></span>关于应用程序和 Procore 应用商店的常见问题</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-know-about-change-orders-in-portfolio-financials" title="关于综合财务管理中的变更通知单,我应该知道什么?"><span class="mt-icon-article-faq"></span>关于综合财务管理中的变更通知单,我应该知道什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-know-about-the-contract-room-in-portfolio-financials" title="关于综合财务管理中的合同室,我应该知道什么?"><span class="mt-icon-article-faq"></span>关于综合财务管理中的合同室,我应该知道什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-know-about-approval-workflows-in-portfolio-financials" title="关于综合财务管理中的审批工作流,我应该了解什么?"><span class="mt-icon-article-faq"></span>关于综合财务管理中的审批工作流,我应该了解什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-know-about-invoicing-in-portfolio-financials" title="关于综合财务管理中的开发票,我应该知道什么?"><span class="mt-icon-article-faq"></span>关于综合财务管理中的开发票,我应该知道什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-know-about-bidding-in-portfolio-financials" title="关于综合财务管理中的投标,我应该知道什么?"><span class="mt-icon-article-faq"></span>关于综合财务管理中的投标,我应该知道什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-i-need-to-know-about-workforce-plannings-authentication-update" title="关于资源规划的身份验证更新,我需要了解什么?"><span class="mt-icon-article-faq"></span>关于资源规划的身份验证更新,我需要了解什么?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.88.9B"></span><h5 title="创">创</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-an-email-when-a-submittal-is-created-or-updated" title="创建或更新送审时谁会收到电子邮件?"><span class="mt-icon-article-faq"></span>创建或更新送审时谁会收到电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-on-the-create-or-update-project-page-can-be-configured-as-required-optional-or-hidden" title="创建或更新项目页面上的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-faq"></span>创建或更新项目页面上的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-limit-the-number-of-cost-codes-available-to-choose-from-when-creating-timesheet-entries" title="创建考勤表条目时,可以限制可供选择的成本编号数量吗?"><span class="mt-icon-article-faq"></span>创建考勤表条目时,可以限制可供选择的成本编号数量吗?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.8D.8F"></span><h5 title="协">协</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-coordination-issues-tool-can-be-configured-as-required-optional-or-hidden" title="协调问题工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-faq"></span>协调问题工具中的哪些字段可以配置为必填、可选或隐藏?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.8F.91"></span><h5 title="发">发</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-invoicing-or-progress-billings-tools-can-be-configured-as-required-optional-or-hidden" title="发票或按进度收款账单工具中的哪些字段可以配置为必填、选填或隐藏?"><span class="mt-icon-article-faq"></span>发票或按进度收款账单工具中的哪些字段可以配置为必填、选填或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/does-an-invoice-contact-need-an-invite-to-bill-to-submit-an-invoice" title="发票联系人是否需要“结算邀请”才能提交发票?"><span class="mt-icon-article-faq"></span>发票联系人是否需要“结算邀请”才能提交发票?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.8F.98"></span><h5 title="变">变</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-change-events-tool-can-be-configured-as-required-optional-or-hidden" title="变更事件工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-faq"></span>变更事件工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-the-change-event-tools-column-display-settings-work" title="变更事件工具的列显示设置如何工作?"><span class="mt-icon-article-faq"></span>变更事件工具的列显示设置如何工作?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.8F.AF"></span><h5 title="可">可</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-apply-permissions-templates-to-multiple-users-at-one-time" title="可以一次将权限模板应用于多个用户吗?"><span class="mt-icon-article-faq"></span>可以一次将权限模板应用于多个用户吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-information-is-searchable-using-procore-search" title="可以使用 Procore Search 搜索到哪些信息?"><span class="mt-icon-article-faq"></span>可以使用 Procore Search 搜索到哪些信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-can-i-use-to-add-production-quantities-to-my-projects-budget" title="可以使用哪些 Procore 工具将生产数量添加到我的项目预算中?"><span class="mt-icon-article-faq"></span>可以使用哪些 Procore 工具将生产数量添加到我的项目预算中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-types-of-correspondences-can-be-created-with-the-correspondence-tool" title="可以使用通信工具创建哪些类型的通信?"><span class="mt-icon-article-faq"></span>可以使用通信工具创建哪些类型的通信?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-items-can-be-added-to-a-message-in-the-conversations-tool" title="可以在对话工具中将哪些项目添加到消息中?"><span class="mt-icon-article-faq"></span>可以在对话工具中将哪些项目添加到消息中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-enable-the-change-events-tool-on-my-project" title="可以在现有项目上启用变更事件工具吗?"><span class="mt-icon-article-faq"></span>可以在现有项目上启用变更事件工具吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-tools-can-you-use-on-mobile-for-inactive-projects" title="可以在移动设备上将哪些工具用于非活动项目?"><span class="mt-icon-article-faq"></span>可以在移动设备上将哪些工具用于非活动项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-some-examples-of-reports-i-can-generate-in-portfolio-financials-and-capital-planning" title="可以在综合财务管理和资金规划中生成哪些报告示例?"><span class="mt-icon-article-faq"></span>可以在综合财务管理和资金规划中生成哪些报告示例?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-data-columns-can-i-add-to-a-custom-submittals-report" title="可以将哪些数据列添加到自定义送审报告中?"><span class="mt-icon-article-faq"></span>可以将哪些数据列添加到自定义送审报告中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-the-drawing-markup-tool-be-disabled" title="可以禁用图纸标记工具吗?"><span class="mt-icon-article-faq"></span>可以禁用图纸标记工具吗?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.90.88"></span><h5 title="合">合</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-commitment-title" title="合约“标题”的最大字符长度是多少?"><span class="mt-icon-article-faq"></span>合约“标题”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-commitments-number" title="合约“编号 (#)”的最大字符长度是多少?"><span class="mt-icon-article-faq"></span>合约“编号 (#)”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-edit-or-delete-a-commitment-after-its-been-synced-with-an-erp-integration" title="合约与集成 ERP 系统同步后,我能否编辑或删除?"><span class="mt-icon-article-faq"></span>合约与集成 ERP 系统同步后,我能否编辑或删除?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-commitments-workflows" title="合约工作流有哪些细分权限?"><span class="mt-icon-article-faq"></span>合约工作流有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-commitments-tool-can-be-configured-as-required-optional-or-hidden" title="合约工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-faq"></span>合约工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-columns-in-the-contracts-tab-of-the-commitments-tool" title="合约工具的合同标签页中的默认列有哪些?"><span class="mt-icon-article-faq"></span>合约工具的合同标签页中的默认列有哪些?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.90.AF"></span><h5 title="启">启</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-to-existing-submittals-when-dynamic-approver-due-dates-is-enabled" title="启用“动态计算审批者截止日期”后,现有送审有什么变化?"><span class="mt-icon-article-faq"></span>启用“动态计算审批者截止日期”后,现有送审有什么变化?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.93.AA"></span><h5 title="哪">哪</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-groundbreak-2021-sessions-qualified-for-ce-credit" title="哪些 Groundbreak 2021 会议有资格获得 CE 学分?"><span class="mt-icon-article-faq"></span>哪些 Groundbreak 2021 会议有资格获得 CE 学分?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-microsoft-excel-file-versions-can-be-attached-to-items-in-procore" title="哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?"><span class="mt-icon-article-faq"></span>哪些 Microsoft Excel 文件版本可以添加到 Procore 中的项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-let-me-view-a-digital-image-attachment-in-a-map-view" title="哪些 Procore 工具可让我在地图视图中查看数字图像附件?"><span class="mt-icon-article-faq"></span>哪些 Procore 工具可让我在地图视图中查看数字图像附件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-classifications" title="哪些 Procore 工具支持“工种”?"><span class="mt-icon-article-faq"></span>哪些 Procore 工具支持“工种”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-work-breakdown-structure" title="哪些 Procore 工具支持工作分解结构?"><span class="mt-icon-article-faq"></span>哪些 Procore 工具支持工作分解结构?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-workflows" title="哪些 Procore 工具支持工作流?"><span class="mt-icon-article-faq"></span>哪些 Procore 工具支持工作流?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="哪些 Procore 工具支持细分权限?"><span class="mt-icon-article-faq"></span>哪些 Procore 工具支持细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-platforms-support-azure-ad-sso" title="哪些 Procore 平台支持Azure AD (Entra ID)单点登录?"><span class="mt-icon-article-faq"></span>哪些 Procore 平台支持Azure AD (Entra ID)单点登录?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-update-data-in-the-field-production-report" title="哪些 Procore 项目工具会更新现场生产报告中的数据?"><span class="mt-icon-article-faq"></span>哪些 Procore 项目工具会更新现场生产报告中的数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-support-the-docusign-integration" title="哪些 Procore 项目工具支持 DocuSign® 集成?"><span class="mt-icon-article-faq"></span>哪些 Procore 项目工具支持 DocuSign® 集成?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-prime-contract-and-pcco-fields-are-synced-with-procore-and-viewpoint-spectrum" title="哪些主合同和主合同变更通知单字段与 Procore 和 Viewpoint Spectrum 同步?"><span class="mt-icon-article-faq"></span>哪些主合同和主合同变更通知单字段与 Procore 和 Viewpoint Spectrum 同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-tools-can-attach-document-management-files" title="哪些工具可以添加文档管理文件?"><span class="mt-icon-article-faq"></span>哪些工具可以添加文档管理文件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-logos-appear-on-pdf-exports-in-procore" title="哪些徽标会在 Procore 的 PDF 导出中显示?"><span class="mt-icon-article-faq"></span>哪些徽标会在 Procore 的 PDF 导出中显示?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-data-is-synced-with-the-integration-by-ryvit-connector" title="哪些数据与 Ryvit 集成连接器同步?"><span class="mt-icon-article-faq"></span>哪些数据与 Ryvit 集成连接器同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-sub-job-concept" title="哪些集成 ERP 系统支持“子作业”概念?"><span class="mt-icon-article-faq"></span>哪些集成 ERP 系统支持“子作业”概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-category-concept" title="哪些集成 ERP 系统支持“成本类型”概念?"><span class="mt-icon-article-faq"></span>哪些集成 ERP 系统支持“成本类型”概念?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-project-tools-support-conversations" title="哪些项目工具支持对话?"><span class="mt-icon-article-faq"></span>哪些项目工具支持对话?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.9B.BE"></span><h5 title="图">图</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-punch-item-color-codes-on-a-drawing-mean" title="图纸上的尾项项目颜色代码有什么含义?"><span class="mt-icon-article-faq"></span>图纸上的尾项项目颜色代码有什么含义?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-drawings-tool-can-be-configured-as-required-optional-or-hidden" title="图纸工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-faq"></span>图纸工具中的哪些字段可以配置为必填、可选或隐藏?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.9C.A8"></span><h5 title="在">在</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-statuses-for-insurance-in-procore" title="在 Procore 中,保险的默认状态有哪些?"><span class="mt-icon-article-faq"></span>在 Procore 中,保险的默认状态有哪些?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-do-i-put-my-bid-documents-in-procore" title="在 Procore 中,我应该将投标文件放在哪里?"><span class="mt-icon-article-faq"></span>在 Procore 中,我应该将投标文件放在哪里?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-options-do-i-have-for-numbering-rfis-in-procore" title="在 Procore 中为 RFI 编号有哪些选项?"><span class="mt-icon-article-faq"></span>在 Procore 中为 RFI 编号有哪些选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-activity-metrics-can-i-see-for-companies-listed-on-the-procore-construction-network" title="在 Procore 建设工程网络上列出的公司,我可以查看哪些活动指标?"><span class="mt-icon-article-faq"></span>在 Procore 建设工程网络上列出的公司,我可以查看哪些活动指标?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-tools-currently-support-the-bookmarks-feature-on-the-procore-mobile-app" title="在 Procore 移动应用程序上,目前哪些工具支持“书签”功能?"><span class="mt-icon-article-faq"></span>在 Procore 移动应用程序上,目前哪些工具支持“书签”功能?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-setting-do-i-enable-in-quickbooks-to-export-invoices-with-the-erp-integrations-tool" title="在 QuickBooks® 中启用哪个设置才能使用 ERP 集成工具导出发票?"><span class="mt-icon-article-faq"></span>在 QuickBooks® 中启用哪个设置才能使用 ERP 集成工具导出发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-we-need-to-consider-before-allowing-downstream-collaborators-to-submit-invoices-in-procore" title="在允许下游协作者在 Procore 中提交发票之前,我们需要考虑什么?"><span class="mt-icon-article-faq"></span>在允许下游协作者在 Procore 中提交发票之前,我们需要考虑什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-can-i-find-the-email-address-to-send-photos-documents-and-emails-to-procore" title="在哪里可以找到用于向 Procore 发送工作日志、照片、文档和电子邮件的电子邮件地址?"><span class="mt-icon-article-faq"></span>在哪里可以找到用于向 Procore 发送工作日志、照片、文档和电子邮件的电子邮件地址?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-remove-a-submitter-or-approver-from-a-submittal-workflow-while-the-approval-process-is-in-progress" title="在审批流程中,如何从送审工作流中移除送审者或审批者?"><span class="mt-icon-article-faq"></span>在审批流程中,如何从送审工作流中移除送审者或审批者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-to-resolve-there-was-an-error-adding-modifying-deleting-because-it-is-already-in-use-quickbooks" title="在导出到 ERP 时,如何解决“添加、修改或删除 XXXXXX-XXXXXXXXXXX 时出错,因为已在使用中。”错误"><span class="mt-icon-article-faq"></span>在导出到 ERP 时,如何解决“添加、修改或删除 XXXXXX-XXXXXXXXXXX 时出错,因为已在使用中。”错误</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-the-embedded-app-and-power-bi-procore-analytics" title="在嵌入式应用程序和 Power BI 服务中查看Procore Analytics报告有什么区别?"><span class="mt-icon-article-faq"></span>在嵌入式应用程序和 Power BI 服务中查看Procore Analytics报告有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-configure-sso-in-a-sandbox-environment-for-testing" title="在我的 Procore 公司账户中实施 SSO 之前,如何在沙箱环境中配置 SSO 以进行测试?"><span class="mt-icon-article-faq"></span>在我的 Procore 公司账户中实施 SSO 之前,如何在沙箱环境中配置 SSO 以进行测试?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-default-behavior-for-playing-certificiation-videos-on-certain-browsers" title="在某些浏览器上播放认证视频的默认行为是什么?"><span class="mt-icon-article-faq"></span>在某些浏览器上播放认证视频的默认行为是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-fields-are-searched-in-the-directory-tool" title="在目录工具中可搜索到哪些字段?"><span class="mt-icon-article-faq"></span>在目录工具中可搜索到哪些字段?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-emails-are-sent-during-the-bidding-process-in-portfolio-financials" title="在综合财务管理的投标过程中会发送哪些电子邮件?"><span class="mt-icon-article-faq"></span>在综合财务管理的投标过程中会发送哪些电子邮件?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.A4.9A"></span><h5 title="多">多</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-multiple-users-work-on-estimates-and-takeoffs-at-the-same-time-in-the-estimating-tool" title="多个用户是否可以在估算工具中同时进行估算和扣减?"><span class="mt-icon-article-faq"></span>多个用户是否可以在估算工具中同时进行估算和扣减?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.A6.82"></span><h5 title="如">如</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-attach-multiple-files-at-once-to-a-transmittal" title="如何一次将多个文件添加到传输记录中?"><span class="mt-icon-article-faq"></span>如何一次将多个文件添加到传输记录中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-download-the-google-chrome-browser" title="如何下载 Google Chrome 浏览器?"><span class="mt-icon-article-faq"></span>如何下载 Google Chrome 浏览器?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-download-the-mozilla-firefox-browser" title="如何下载 Mozilla Firefox 浏览器?"><span class="mt-icon-article-faq"></span>如何下载 Mozilla Firefox 浏览器?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-download-the-procore-android-mobile-application" title="如何下载 Procore 的 Android 移动应用程序?"><span class="mt-icon-article-faq"></span>如何下载 Procore 的 Android 移动应用程序?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-share-feedback-with-procore" title="如何与 Procore 分享反馈?"><span class="mt-icon-article-faq"></span>如何与 Procore 分享反馈?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-change-my-web-browsers-default-email-client-for-mailto-links" title="如何为 mailto 链接更改我的 Web 浏览器的默认电子邮件客户端?"><span class="mt-icon-article-faq"></span>如何为 mailto 链接更改我的 Web 浏览器的默认电子邮件客户端?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-the-subcontractor-invoices-and-payments-feature-for-procore-quickbooks" title="如何为 Procore + QuickBooks 设置分包商发票和付款功能?"><span class="mt-icon-article-faq"></span>如何为 Procore + QuickBooks 设置分包商发票和付款功能?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-create-a-bookmark-to-procore" title="如何为 Procore 创建书签?"><span class="mt-icon-article-faq"></span>如何为 Procore 创建书签?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-procore-sso-with-okta" title="如何为 Procore 配置 Okta 单点登录 (SAML 2.0)?"><span class="mt-icon-article-faq"></span>如何为 Procore 配置 Okta 单点登录 (SAML 2.0)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-create-a-billing-period-for-an-invoice" title="如何为发票创建结算期?"><span class="mt-icon-article-faq"></span>如何为发票创建结算期?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-a-budget-view-for-real-time-labor-productivity" title="如何为实时人工生产力设置预算视图?"><span class="mt-icon-article-faq"></span>如何为实时人工生产力设置预算视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enable-additional-workforce-labor-types-for-the-daily-log" title="如何为工作日志启用其他劳动力人工类型?"><span class="mt-icon-article-faq"></span>如何为工作日志启用其他劳动力人工类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-task-codes-configured-for-time-entry" title="如何为工时条目配置任务编号?"><span class="mt-icon-article-faq"></span>如何为工时条目配置任务编号?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-configure-user-permissions-for-multi-tier-approvals-with-timekeeping" title="如何为带计时的多层审批配置用户权限?"><span class="mt-icon-article-faq"></span>如何为带计时的多层审批配置用户权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-choose-a-default-punch-item-manager-for-my-project" title="如何为我的项目选择默认尾项项目经理?"><span class="mt-icon-article-faq"></span>如何为我的项目选择默认尾项项目经理?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-the-accounting-method-for-bids" title="如何为投标设置会计方法?"><span class="mt-icon-article-faq"></span>如何为投标设置会计方法?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-budget-individual-values-within-a-cost-item-in-portfolio-financials" title="如何为综合财务管理中成本项的单个值编制预算?"><span class="mt-icon-article-faq"></span>如何为综合财务管理中成本项的单个值编制预算?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-add-custom-bid-form-templates-for-the-bid-room-in-portfolio-financials" title="如何为综合财务管理中的投标室添加自定义投标表单模板?"><span class="mt-icon-article-faq"></span>如何为综合财务管理中的投标室添加自定义投标表单模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-request-a-folder-template-for-documents-in-my-portfolio-financials-projects" title="如何为综合财务管理项目中的文档请求文件夹模板?"><span class="mt-icon-article-faq"></span>如何为综合财务管理项目中的文档请求文件夹模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enable-cost-allocations-and-components-for-a-portfolio-financials-project" title="如何为综合财务管理项目启用成本分配和组件?"><span class="mt-icon-article-faq"></span>如何为综合财务管理项目启用成本分配和组件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-configure-privacy-settings-for-a-correspondence-item" title="如何为通信项配置隐私设置?"><span class="mt-icon-article-tutorial"></span>如何为通信项配置隐私设置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-know-if-my-docusign-account-is-synced-to-procores" title="如何了解我的 DocuSign 账户是否与 Procore 同步?"><span class="mt-icon-article-faq"></span>如何了解我的 DocuSign 账户是否与 Procore 同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-filter-out-recycled-items-from-a-custom-rfis-report" title="如何从自定义 RFI 报告中筛选掉“已回收”项?"><span class="mt-icon-article-faq"></span>如何从自定义 RFI 报告中筛选掉“已回收”项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-procores-incidents-tool-to-record-coronavirus-covid-19-infection-information" title="如何使用 Procore 的事件工具记录冠状病毒 (COVID-19) 感染信息?"><span class="mt-icon-article-faq"></span>如何使用 Procore 的事件工具记录冠状病毒 (COVID-19) 感染信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-single-sign-on-sso-with-procore" title="如何使用 Procore 设置单点登录 (SSO)?"><span class="mt-icon-article-faq"></span>如何使用 Procore 设置单点登录 (SSO)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-log-into-procore-using-azure-ad-sso" title="如何使用Microsoft Azure AD (Entra ID)单点登录来登录 Procore?"><span class="mt-icon-article-faq"></span>如何使用Microsoft Azure AD (Entra ID)单点登录来登录 Procore?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-use-the-navigation-bar-to-go-back-to-the-company-portfolio" title="如何使用导航栏返回公司项目集合?"><span class="mt-icon-article-faq"></span>如何使用导航栏返回公司项目集合?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-use-the-notification-center" title="如何使用通知中心?"><span class="mt-icon-article-faq"></span>如何使用通知中心?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-allow-standard-users-to-add-users-to-the-project-directory" title="如何允许“标准”用户添加到项目目录?"><span class="mt-icon-article-tutorial"></span>如何允许“标准”用户添加到项目目录?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-create-a-desktop-shortcut-to-procore" title="如何创建 Procore 的桌面快捷方式?"><span class="mt-icon-article-faq"></span>如何创建 Procore 的桌面快捷方式?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-create-a-fillable-pdf" title="如何创建可填写 PDF?"><span class="mt-icon-article-faq"></span>如何创建可填写 PDF?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-delete-line-items-in-approved-change-orders" title="如何删除已获批变更通知单中的明细项?"><span class="mt-icon-article-faq"></span>如何删除已获批变更通知单中的明细项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-project-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目是否已与集成 ERP 系统同步?"><span class="mt-icon-article-faq"></span>如何判断 Procore 项目是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-a-procore-projects-budget-is-synced-with-an-integrated-erp-system" title="如何判断 Procore 项目的预算是否已与集成 ERP 系统同步?"><span class="mt-icon-article-faq"></span>如何判断 Procore 项目的预算是否已与集成 ERP 系统同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-tell-if-i-have-a-free-or-paid-procore-account" title="如何判断我有免费还是付费 Procore 公司账户?"><span class="mt-icon-article-faq"></span>如何判断我有免费还是付费 Procore 公司账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-an-avatar-or-profile-photo-to-procore" title="如何向 Procore 添加头像或个人资料照片?"><span class="mt-icon-article-faq"></span>如何向 Procore 添加头像或个人资料照片?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-additional-contacts-to-a-vendor-profile-in-portfolio-financials" title="如何向综合财务管理中的供应商配置文件添加其他联系人?"><span class="mt-icon-article-faq"></span>如何向综合财务管理中的供应商配置文件添加其他联系人?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enable-the-docusign-integration" title="如何启用 DocuSign® 集成?"><span class="mt-icon-article-faq"></span>如何启用 DocuSign® 集成?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-preserve-cost-code-formatting-in-excel" title="如何在 Excel 中保留成本编号格式?"><span class="mt-icon-article-faq"></span>如何在 Excel 中保留成本编号格式?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-use-tags-keywords-in-procore" title="如何在 Procore 中使用标签/关键词?"><span class="mt-icon-article-tutorial"></span>如何在 Procore 中使用标签/关键词?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-create-or-join-a-zoom-meeting-in-procore" title="如何在 Procore 中创建或加入 Zoom 会议?"><span class="mt-icon-article-faq"></span>如何在 Procore 中创建或加入 Zoom 会议?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-complete-tasks-in-procore-that-i-used-to-complete-in-the-standalone-procore-estimating-application" title="如何在 Procore 中完成以前在独立 Procore Estimating 应用程序中完成的任务?"><span class="mt-icon-article-faq"></span>如何在 Procore 中完成以前在独立 Procore Estimating 应用程序中完成的任务?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-tools-to-my-favorites-list-in-procore" title="如何在 Procore 中将工具添加到收藏夹列表?"><span class="mt-icon-article-faq"></span>如何在 Procore 中将工具添加到收藏夹列表?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-switch-between-portfolio-financials-and-project-management-toolkits-in-procore" title="如何在 Procore 中的综合财务管理和项目管理工具包之间切换?"><span class="mt-icon-article-faq"></span>如何在 Procore 中的综合财务管理和项目管理工具包之间切换?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-edit-a-project-schedule-in-procore" title="如何在 Procore 中编辑项目进度计划?"><span class="mt-icon-article-faq"></span>如何在 Procore 中编辑项目进度计划?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-and-release-retainage-on-a-subcontractor-invoice-in-procore" title="如何在 Procore 中设置和返还分包商发票的保留金?"><span class="mt-icon-article-faq"></span>如何在 Procore 中设置和返还分包商发票的保留金?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-unit-based-line-item-details-in-the-budget-import-template" title="如何在 Procore 的预算导入模板中添加基于单位的明细项详细信息?"><span class="mt-icon-article-faq"></span>如何在 Procore 的预算导入模板中添加基于单位的明细项详细信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-tax-codes-on-a-procore-project" title="如何在 Procore 项目中使用税务代码?"><span class="mt-icon-article-faq"></span>如何在 Procore 项目中使用税务代码?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-perform-a-hard-refresh-in-my-web-browser" title="如何在 Web 浏览器中执行硬刷新?"><span class="mt-icon-article-faq"></span>如何在 Web 浏览器中执行硬刷新?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-display-a-list-of-project-dates-on-the-home-page" title="如何在主页上显示项目日期列表?"><span class="mt-icon-article-faq"></span>如何在主页上显示项目日期列表?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-show-previous-minutes-on-a-meeting-pdf" title="如何在会议 PDF 上显示以前的会议纪要?"><span class="mt-icon-article-faq"></span>如何在会议 PDF 上显示以前的会议纪要?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-version-numbers-updated-in-the-company-level-workflows-tool" title="如何在公司级别工作流工具中更新版本号?"><span class="mt-icon-article-faq"></span>如何在公司级别工作流工具中更新版本号?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-bill-for-stored-materials-in-an-invoice" title="如何在发票中为库存材料开具账单? (测试版)"><span class="mt-icon-article-faq"></span>如何在发票中为库存材料开具账单? (测试版)</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-set-up-a-tenant-construction-chargeback-in-the-cost-tracker" title="如何在成本跟踪器中设置租户施工退款?"><span class="mt-icon-article-faq"></span>如何在成本跟踪器中设置租户施工退款?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-procore-as-an-endorsable-skill-on-my-linkedin-profile" title="如何在我的 LinkedIn 个人资料中添加“Procore”作为可认可的技能?"><span class="mt-icon-article-faq"></span>如何在我的 LinkedIn 个人资料中添加“Procore”作为可认可的技能?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-nextwave-safety-solutions-ladder-safety-simple-checklist-inspection-template-on-my-project" title="如何在我的项目中使用“[NextWave Safety Solutions] 梯子安全性 - 简单检查清单”检查任务模板?"><span class="mt-icon-article-faq"></span>如何在我的项目中使用“[NextWave Safety Solutions] 梯子安全性 - 简单检查清单”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-nextwave-safety-solutions-concrete-pre-pour-inspection-template-on-my-project" title="如何在我的项目中使用“[NextWave Safety Solutions] 混凝土预浇注”检查任务模板?"><span class="mt-icon-article-faq"></span>如何在我的项目中使用“[NextWave Safety Solutions] 混凝土预浇注”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-oac-management-inc-pre-roofing-checklist-inspection-template-on-my-project" title="如何在我的项目中使用“[OAC Management Inc.] 铺盖屋顶前检查清单”检查任务模板?"><span class="mt-icon-article-faq"></span>如何在我的项目中使用“[OAC Management Inc.] 铺盖屋顶前检查清单”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-oac-management-inc-pre-backfill-checklist-inspection-template-on-my-project" title="如何在我的项目中使用“[OAC Management Inc.] 预回填检查清单”检查任务模板?"><span class="mt-icon-article-faq"></span>如何在我的项目中使用“[OAC Management Inc.] 预回填检查清单”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-oac-management-inc-pre-drywall-checklist-inspection-template-on-my-project" title="如何在我的项目中使用“[OAC Management Inc.] 预干墙检查清单”检查任务模板?"><span class="mt-icon-article-faq"></span>如何在我的项目中使用“[OAC Management Inc.] 预干墙检查清单”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-osha-lockout-tagout-procedures-inspection-template-on-my-project" title="如何在我的项目中使用“[OSHA] 上锁/挂牌程序”检查任务模板?"><span class="mt-icon-article-faq"></span>如何在我的项目中使用“[OSHA] 上锁/挂牌程序”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-osha-materials-handling-inspection-template-on-my-project" title="如何在我的项目中使用“[OSHA] 材料处理”检查任务模板?"><span class="mt-icon-article-faq"></span>如何在我的项目中使用“[OSHA] 材料处理”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-osha-daily-inspection-of-trenches-and-excavations-inspection-template-on-my-project" title="如何在我的项目中使用“[OSHA] 沟槽和挖掘日常检查”检查任务模板?"><span class="mt-icon-article-faq"></span>如何在我的项目中使用“[OSHA] 沟槽和挖掘日常检查”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-procore-swppp-construction-site-stormwater-checklist-inspection-template-on-my-project" title="如何在我的项目中使用“[Procore] SWPPP - 施工现场雨水检查清单”检查任务模板?"><span class="mt-icon-article-faq"></span>如何在我的项目中使用“[Procore] SWPPP - 施工现场雨水检查清单”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-procore-jobsite-cleanliness-and-preparedness-checklist-inspection-template-on-my-project" title="如何在我的项目中使用“[Procore] 作业现场清洁和准备检查清单”检查任务模板?"><span class="mt-icon-article-faq"></span>如何在我的项目中使用“[Procore] 作业现场清洁和准备检查清单”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-procore-equipment-pre-operation-checklist-inspection-template-on-my-project" title="如何在我的项目中使用“[Procore] 设备操作前检查清单”检查任务模板?"><span class="mt-icon-article-faq"></span>如何在我的项目中使用“[Procore] 设备操作前检查清单”检查任务模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-the-site-safety-inspection-template-on-my-project" title="如何在我的项目中使用“现场安全检查任务”模板?"><span class="mt-icon-article-faq"></span>如何在我的项目中使用“现场安全检查任务”模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-locked-or-restricted-pdf-files-handled-in-the-document-management-tool" title="如何在文档管理工具中处理锁定或受限的 PDF 文件?"><span class="mt-icon-article-faq"></span>如何在文档管理工具中处理锁定或受限的 PDF 文件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-bidders-in-the-new-bid-management-experience" title="如何在新的投标管理体验中添加投标人?"><span class="mt-icon-article-faq"></span>如何在新的投标管理体验中添加投标人?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/How-do-I-get-the-percent-complete-updated-in-the-native-schedule-file" title="如何在本地进度计划文件中更新完成百分比?"><span class="mt-icon-article-faq"></span>如何在本地进度计划文件中更新完成百分比?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enable-retainage-for-a-contract-in-portfolio-financials" title="如何在综合财务管理中为合同启用保留金?"><span class="mt-icon-article-faq"></span>如何在综合财务管理中为合同启用保留金?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-share-access-to-a-contract-room-in-portfolio-financials" title="如何在综合财务管理中共享对合同室的访问权限?"><span class="mt-icon-article-faq"></span>如何在综合财务管理中共享对合同室的访问权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-share-access-to-a-bid-room-in-portfolio-financials" title="如何在综合财务管理中共享对投标室的访问权限?"><span class="mt-icon-article-faq"></span>如何在综合财务管理中共享对投标室的访问权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-templates-created-in-portfolio-financials" title="如何在综合财务管理中创建模板?"><span class="mt-icon-article-faq"></span>如何在综合财务管理中创建模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-a-building-to-my-account-in-portfolio-financials" title="如何在综合财务管理中将建筑添加到我的账户?"><span class="mt-icon-article-faq"></span>如何在综合财务管理中将建筑添加到我的账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-manually-add-a-bid-in-portfolio-financials" title="如何在综合财务管理中手动添加投标?"><span class="mt-icon-article-faq"></span>如何在综合财务管理中手动添加投标?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-submit-change-orders-and-invoices-in-portfolio-financials" title="如何在综合财务管理中提交变更通知单和发票?"><span class="mt-icon-article-faq"></span>如何在综合财务管理中提交变更通知单和发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-add-custom-cost-tracker-templates-in-portfolio-financials" title="如何在综合财务管理中添加自定义成本跟踪器模板?"><span class="mt-icon-article-faq"></span>如何在综合财务管理中添加自定义成本跟踪器模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-edit-an-initial-award-amount-for-a-contract-in-portfolio-financials" title="如何在综合财务管理中编辑合同初始奖励金额?"><span class="mt-icon-article-faq"></span>如何在综合财务管理中编辑合同初始奖励金额?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-unaward-a-bid-or-contract-in-portfolio-financials" title="如何在综合财务管理中解除投标或合同?"><span class="mt-icon-article-faq"></span>如何在综合财务管理中解除投标或合同?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-approval-workflows-get-set-up-in-portfolio-financials" title="如何在综合财务管理中设置审批工作流?"><span class="mt-icon-article-faq"></span>如何在综合财务管理中设置审批工作流?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enter-a-credit-invoice-in-portfolio-financials" title="如何在综合财务管理中输入信用发票?"><span class="mt-icon-article-faq"></span>如何在综合财务管理中输入信用发票?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-run-a-sealed-bid-process-in-portfolio-financials" title="如何在综合财务管理中运行密封投标流程?"><span class="mt-icon-article-faq"></span>如何在综合财务管理中运行密封投标流程?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-run-a-best-and-final-round-of-bidding-in-portfolio-financials" title="如何在综合财务管理中进行最佳和最后一轮投标?"><span class="mt-icon-article-faq"></span>如何在综合财务管理中进行最佳和最后一轮投标?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-locate-an-archived-project-in-portfolio-financials-and-capital-planning" title="如何在综合财务管理和资金规划中找到存档的项目?"><span class="mt-icon-article-faq"></span>如何在综合财务管理和资金规划中找到存档的项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-monitor-activity-across-all-of-my-buildings-in-portfolio-financials-and-capital-planning" title="如何在综合财务管理和资金规划中监控我所有建筑物的活动?"><span class="mt-icon-article-faq"></span>如何在综合财务管理和资金规划中监控我所有建筑物的活动?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enter-budgeted-projects-for-the-year-in-portfolio-financials-and-capital-planning" title="如何在综合财务管理和资金规划中输入当年的预算项目?"><span class="mt-icon-article-faq"></span>如何在综合财务管理和资金规划中输入当年的预算项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-will-my-previous-timecard-entries-work-with-timesheets" title="如何在考勤表中使用以前的考勤卡条目?"><span class="mt-icon-article-faq"></span>如何在考勤表中使用以前的考勤卡条目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-wages-in-resource-planning" title="如何在资源规划中使用工资?"><span class="mt-icon-article-faq"></span>如何在资源规划中使用工资?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-use-tags-with-expiration-dates-in-resource-planning" title="如何在资源规划中使用带有到期日期的标记?"><span class="mt-icon-article-faq"></span>如何在资源规划中使用带有到期日期的标记?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-I-set-up-my-account-in-resource-planning" title="如何在资源规划中设置我的账户?"><span class="mt-icon-article-faq"></span>如何在资源规划中设置我的账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-fix-errors-with-pdf-files-in-the-submittals-tool" title="如何在送审工具中修复 PDF 文件错误?"><span class="mt-icon-article-faq"></span>如何在送审工具中修复 PDF 文件错误?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-procores-toolbox-talk-sign-in-pdf-in-my-projects-forms-tool" title="如何在项目表单工具中使用 Procore 的 Toolbox Talk Sign-In PDF?"><span class="mt-icon-article-faq"></span>如何在项目表单工具中使用 Procore 的 Toolbox Talk Sign-In PDF?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-procores-job-hazard-analysis-pdf-in-my-projects-forms-tool" title="如何在项目表单工具中使用 Procore 的作业危害分析 PDF?"><span class="mt-icon-article-faq"></span>如何在项目表单工具中使用 Procore 的作业危害分析 PDF?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-procores-hot-work-permit-pdf-in-my-projects-forms-tool" title="如何在项目表单工具中使用 Procore 的动火作业许可 PDF?"><span class="mt-icon-article-faq"></span>如何在项目表单工具中使用 Procore 的动火作业许可 PDF?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-duplicate-companies-handled-between-the-directory-tool-and-procore-construction-network" title="如何处理目录工具和 Procore 建设工程网络之间的重复公司?"><span class="mt-icon-article-faq"></span>如何处理目录工具和 Procore 建设工程网络之间的重复公司?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-is-security-handled-with-third-party-applications" title="如何处理第三方应用程序的安全问题?"><span class="mt-icon-article-faq"></span>如何处理第三方应用程序的安全问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-rate-a-page-and-send-feedback" title="如何对页面评分并发送反馈?"><span class="mt-icon-article-faq"></span>如何对页面评分并发送反馈?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-navigate-to-a-bid-room-in-portfolio-financials" title="如何导航到综合财务管理中的投标室?"><span class="mt-icon-article-faq"></span>如何导航到综合财务管理中的投标室?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-add-the-procore-project-shutdown-inspection-template-to-my-procore-account" title="如何将“[Procore] 项目停工”检查任务模板添加到我的 Procore 账户?"><span class="mt-icon-article-faq"></span>如何将“[Procore] 项目停工”检查任务模板添加到我的 Procore 账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-the-timesheet-hours-column-to-a-budget-view" title="如何将“考勤表工时”列添加到预算视图?"><span class="mt-icon-article-faq"></span>如何将“考勤表工时”列添加到预算视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-people-to-the-submittal-workflow" title="如何将人员添加到送审工作流?"><span class="mt-icon-article-faq"></span>如何将人员添加到送审工作流?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-mark-an-assignee-as-a-required-responder-on-an-rfi" title="如何将任务分配对象标记为 RFI 的所需答复者?"><span class="mt-icon-article-faq"></span>如何将任务分配对象标记为 RFI 的所需答复者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-apply-markups-from-a-previous-revision" title="如何将先前修订中的标记应用到新修订?"><span class="mt-icon-article-faq"></span>如何将先前修订中的标记应用到新修订?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-upload-large-files-to-the-procore-web-app" title="如何将大文件上传到Procore Web应用程序?"><span class="mt-icon-article-faq"></span>如何将大文件上传到Procore Web应用程序?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-add-cost-codes-to-a-project-synced-with-yardi" title="如何将成本编号添加到与 Yardi Voyager® 同步的项目中"><span class="mt-icon-article-faq"></span>如何将成本编号添加到与 Yardi Voyager® 同步的项目中</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-export-cost-forecast-data-from-a-procore-budget-to-erp" title="如何将成本预测数据从 Procore 预算导出到 ERP"><span class="mt-icon-article-tutorial"></span>如何将成本预测数据从 Procore 预算导出到 ERP</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-export-cost-forecast-data-from-a-procore-budget-to-cmic" title="如何将成本预测数据从 Procore 预算导出到CMiC"><span class="mt-icon-article-faq"></span>如何将成本预测数据从 Procore 预算导出到CMiC</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-sync-my-prime-contract-with-acumatica" title="如何将我的主合同与 Acumatica 或MYOB Advanced Construction同步?"><span class="mt-icon-article-faq"></span>如何将我的主合同与 Acumatica 或MYOB Advanced Construction同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-make-my-punch-list-items-private-by-default" title="如何将我的尾项清单项目默认设为私密?"><span class="mt-icon-article-faq"></span>如何将我的尾项清单项目默认设为私密?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-bidders-get-locked-out-of-a-sealed-bid-room-in-portfolio-financials" title="如何将投标人锁定在综合财务管理的密封投标室之外?"><span class="mt-icon-article-faq"></span>如何将投标人锁定在综合财务管理的密封投标室之外?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-a-bid-board-project-to-the-portfolio-tool-in-procore" title="如何将投标面板项目添加到 Procore 中的项目集合工具?"><span class="mt-icon-article-faq"></span>如何将投标面板项目添加到 Procore 中的项目集合工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-backfill-an-invoice-from-yardi-to-portfolio-financials" title="如何将来自 Yardi 的发票回填到综合财务管理?"><span class="mt-icon-article-faq"></span>如何将来自 Yardi 的发票回填到综合财务管理?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-export-a-project-budget-from-procore-to-sage-300-cre" title="如何将项目预算从 Procore 导出到 Sage 300 CRE?"><span class="mt-icon-article-faq"></span>如何将项目预算从 Procore 导出到 Sage 300 CRE?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-get-started-with-procore-analytics" title="如何开始使用Procore Analytics?"><span class="mt-icon-article-faq"></span>如何开始使用Procore Analytics?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-find-the-company-id" title="如何找到公司 ID?"><span class="mt-icon-article-faq"></span>如何找到公司 ID?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-filter-items-by-multi-tiered-locations" title="如何按多层地点筛选项?"><span class="mt-icon-article-faq"></span>如何按多层地点筛选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-grant-a-limited-user-access-to-a-specific-bid-room-in-portfolio-financials" title="如何授予“有限”用户访问综合财务管理中特定投标室的权限?"><span class="mt-icon-article-faq"></span>如何授予“有限”用户访问综合财务管理中特定投标室的权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-control-which-emails-are-sent-by-procore-during-the-rfi-process" title="如何控制 Procore 在 RFI 过程中发送的电子邮件?"><span class="mt-icon-article-faq"></span>如何控制 Procore 在 RFI 过程中发送的电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-submit-a-subcontractor-schedule-of-values-for-a-procore-commitment" title="如何提交 Procore 合约的分包商分项价格表?"><span class="mt-icon-article-faq"></span>如何提交 Procore 合约的分包商分项价格表?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-improve-the-accuracy-of-ocr-on-my-drawings" title="如何提高图纸上 OCR 的准确性?"><span class="mt-icon-article-faq"></span>如何提高图纸上 OCR 的准确性?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-improve-the-accuracy-of-data-populated-in-the-document-management-tool" title="如何提高文档管理工具中填充数据的准确性?"><span class="mt-icon-article-faq"></span>如何提高文档管理工具中填充数据的准确性?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-improve-the-accuracy-of-specification-section-identification" title="如何提高规范分项识别的准确性?"><span class="mt-icon-article-faq"></span>如何提高规范分项识别的准确性?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-revoke-project-access-for-a-procore-user" title="如何撤销 Procore 用户的项目访问权限?"><span class="mt-icon-article-faq"></span>如何撤销 Procore 用户的项目访问权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-change-a-known-password" title="如何更改已知密码?"><span class="mt-icon-article-faq"></span>如何更改已知密码?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-change-my-name-or-email-address-in-procore-certification" title="如何更改我在 Procore 认证中的姓名或电子邮件地址?"><span class="mt-icon-article-faq"></span>如何更改我在 Procore 认证中的姓名或电子邮件地址?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-change-the-responsible-contractor-field-on-my-submittal" title="如何更改送审的“责任承包商”字段?"><span class="mt-icon-article-faq"></span>如何更改送审的“责任承包商”字段?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-action-plans-item-statuses-updated" title="如何更新行动计划项状态"><span class="mt-icon-article-faq"></span>如何更新行动计划项状态</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-find-the-project-id" title="如何查找项目 ID?"><span class="mt-icon-article-faq"></span>如何查找项目 ID?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-view-reports-of-a-single-log-or-a-single-person-within-a-log" title="如何查看单个日志或日志中某人的报告?"><span class="mt-icon-article-faq"></span>如何查看单个日志或日志中某人的报告?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-look-at-the-daily-log-for-multiple-days" title="如何查看多天的工作日志?"><span class="mt-icon-article-faq"></span>如何查看多天的工作日志?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-check-what-procore-tools-are-included-with-my-procore-account" title="如何查看我的 Procore 账户中包含哪些 Procore 工具?"><span class="mt-icon-article-faq"></span>如何查看我的 Procore 账户中包含哪些 Procore 工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-see-where-my-non-budgeted-line-items-are-coming-from" title="如何查看未编制预算的明细项的来源?"><span class="mt-icon-article-faq"></span>如何查看未编制预算的明细项的来源?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-view-a-custom-training-center" title="如何查看自定义培训中心?"><span class="mt-icon-article-faq"></span>如何查看自定义培训中心?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-check-who-has-permissions-to-see-a-type-of-correspondence" title="如何查看谁有权查看某种类型的通信?"><span class="mt-icon-article-faq"></span>如何查看谁有权查看某种类型的通信?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-check-who-has-permissions-to-see-a-specific-correspondence" title="如何查看谁有权查看特定通信?"><span class="mt-icon-article-faq"></span>如何查看谁有权查看特定通信?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-I-view-resource-allocation-percentage" title="如何查看资源分配百分比?"><span class="mt-icon-article-faq"></span>如何查看资源分配百分比?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-a-new-sage-300-cre-cost-code-or-cost-type" title="如何添加新的 Sage 300 CRE 成本编号或成本类型?"><span class="mt-icon-article-faq"></span>如何添加新的 Sage 300 CRE 成本编号或成本类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-add-missing-cost-codes-so-i-can-migrate-projects-to-the-new-bid-management-experience" title="如何添加缺失的成本编号以便将项目迁移到新版投标管理体验?"><span class="mt-icon-article-faq"></span>如何添加缺失的成本编号以便将项目迁移到新版投标管理体验?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-log-in-to-procore-support-site" title="如何登录 Procore 支持网站?"><span class="mt-icon-article-faq"></span>如何登录 Procore 支持网站?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-log-in-to-portfolio-financials-and-capital-planning" title="如何登录综合财务管理和资金规划?"><span class="mt-icon-article-faq"></span>如何登录综合财务管理和资金规划?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-ensure-that-procore-emails-reach-the-recipients" title="如何确保 Procore 电子邮件送达收件人?"><span class="mt-icon-article-faq"></span>如何确保 Procore 电子邮件送达收件人?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-determine-the-latitude-and-longitude-values-on-an-address" title="如何确定地址的纬度和经度值?"><span class="mt-icon-article-faq"></span>如何确定地址的纬度和经度值?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-determine-whether-a-punch-list-item-has-been-sent" title="如何确定是否已发送尾项清单项目?"><span class="mt-icon-article-faq"></span>如何确定是否已发送尾项清单项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-disable-quick-capture-for-ios" title="如何禁用 iOS 的 Quick Capture?"><span class="mt-icon-article-faq"></span>如何禁用 iOS 的 Quick Capture?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-customize-submittal-responses" title="如何自定义送审答复?"><span class="mt-icon-article-faq"></span>如何自定义送审答复?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-get-the-latest-version-of-safari-for-osx" title="如何获取适用于 Mac OS X 的最新版本的 Safari?"><span class="mt-icon-article-faq"></span>如何获取适用于 Mac OS X 的最新版本的 Safari?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-get-a-docusign-account" title="如何获得 DocuSign® 账户?"><span class="mt-icon-article-faq"></span>如何获得 DocuSign® 账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-troubleshoot-an-issue-with-the-procore-web-application" title="如何解决Procore Web应用程序的问题?"><span class="mt-icon-article-faq"></span>如何解决Procore Web应用程序的问题?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-to-resolve-export-cannot-be-completed-because-the-number-of-line-items-does-not-match-up-quickbooks" title="如何解决导出到ERP时的"无法完成此导出,因为QuickBooks中的明细项数量与 Procore 中的数量不匹配"错误?"><span class="mt-icon-article-faq"></span>如何解决导出到ERP时的"无法完成此导出,因为QuickBooks中的明细项数量与 Procore 中的数量不匹配"错误?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-give-users-access-to-the-prequalifications-tool" title="如何让用户访问资格预审工具?"><span class="mt-icon-article-faq"></span>如何让用户访问资格预审工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-the-procore-labor-productivity-cost-view" title="如何设置“Procore 人工生产力成本”预算视图?"><span class="mt-icon-article-faq"></span>如何设置“Procore 人工生产力成本”预算视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-the-accounting-method-for-a-contract-or-funding" title="如何设置合同或资金的会计方法?"><span class="mt-icon-article-faq"></span>如何设置合同或资金的会计方法?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-set-up-permissions-for-a-correspondence-type" title="如何设置通信类型的权限?"><span class="mt-icon-article-faq"></span>如何设置通信类型的权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-access-my-companys-training-center" title="如何访问我公司的培训中心?"><span class="mt-icon-article-faq"></span>如何访问我公司的培训中心?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-request-access-to-a-custom-training-center" title="如何请求访问自定义培训中心?"><span class="mt-icon-article-faq"></span>如何请求访问自定义培训中心?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-track-non-commitment-costs-on-a-change-event" title="如何跟踪变更事件的非合约成本?"><span class="mt-icon-article-faq"></span>如何跟踪变更事件的非合约成本?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-track-the-actual-materials-received-and-installed-on-a-job-site" title="如何跟踪在作业现场接收和安装的实际材料?"><span class="mt-icon-article-faq"></span>如何跟踪在作业现场接收和安装的实际材料?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-keep-track-of-emailed-drawings" title="如何跟踪通过电子邮件发送的图纸?"><span class="mt-icon-article-faq"></span>如何跟踪通过电子邮件发送的图纸?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-keep-track-of-emailed-specifications" title="如何跟踪通过电子邮件发送的规范?"><span class="mt-icon-article-faq"></span>如何跟踪通过电子邮件发送的规范?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-financial-line-items-and-budget-codes-updated-across-change-objects" title="如何跨变更对象更新财务明细项和预算编号?"><span class="mt-icon-article-faq"></span>如何跨变更对象更新财务明细项和预算编号?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-opt-in-to-the-beta-for-procore-conversations" title="如何选择加入 Procore 对话的测试版?"><span class="mt-icon-article-faq"></span>如何选择加入 Procore 对话的测试版?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-avoid-and-report-phishing-emails" title="如何避免和报告网络钓鱼电子邮件?"><span class="mt-icon-article-faq"></span>如何避免和报告网络钓鱼电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-configure-my-web-browser-to-allow-popups-from-procore" title="如何配置我的 Web 浏览器以允许来自 Procore 的弹出窗口?"><span class="mt-icon-article-faq"></span>如何配置我的 Web 浏览器以允许来自 Procore 的弹出窗口?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-prevent-or-allow-overbilling-on-a-subcontractor-invoice" title="如何防止或允许分包商发票超额 计费?"><span class="mt-icon-article-tutorial"></span>如何防止或允许分包商发票超额 计费?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-verify-an-australian-business-number-abn" title="如何验证澳大利亚商业编号 (ABN)?"><span class="mt-icon-article-faq"></span>如何验证澳大利亚商业编号 (ABN)?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-import-a-csv-into-a-project-financial-tools-schedule-of-values-if-it-has-blank-values" title="如果 CSV 具有空白值,我能否将其导入到项目财务管理工具的分项价格表中?"><span class="mt-icon-article-faq"></span>如果 CSV 具有空白值,我能否将其导入到项目财务管理工具的分项价格表中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-if-i-have-duplicate-company-records-in-procores-company-directory" title="如果 Procore 公司目录中存在重复公司记录会怎样?"><span class="mt-icon-article-faq"></span>如果 Procore 公司目录中存在重复公司记录会怎样?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-i-need-to-create-procore-user-accounts-if-our-company-implements-sso" title="如果我们公司实施单点登录,我是否需要创建 Procore 用户账户?"><span class="mt-icon-article-faq"></span>如果我们公司实施单点登录,我是否需要创建 Procore 用户账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-do-if-i-forgot-my-password-for-portfolio-financials" title="如果我忘记了综合财务管理的密码,该怎么办?"><span class="mt-icon-article-faq"></span>如果我忘记了综合财务管理的密码,该怎么办?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-submit-a-response-to-a-draft-rfi-when-i-am-the-rfi-manager" title="如果我是 RFI 经理,如何提交对 RFI“草稿”的答复?"><span class="mt-icon-article-faq"></span>如果我是 RFI 经理,如何提交对 RFI“草稿”的答复?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-sign-up-for-procore-certification-if-i-do-not-have-procore-login-credentials" title="如果我没有 Procore 登录凭证,该如何注册 Procore 认证?"><span class="mt-icon-article-faq"></span>如果我没有 Procore 登录凭证,该如何注册 Procore 认证?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-log-into-the-procore-web-application-directly-if-my-company-has-implemented-sso" title="如果我的公司已实施单点登录,我可以直接登录 Procore Web 应用程序吗?"><span class="mt-icon-article-faq"></span>如果我的公司已实施单点登录,我可以直接登录 Procore Web 应用程序吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-do-if-my-model-file-is-too-large-to-process-in-the-documents-tool" title="如果我的模型文件太大而无法在文档工具中处理,我该怎么办?"><span class="mt-icon-article-faq"></span>如果我的模型文件太大而无法在文档工具中处理,我该怎么办?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-can-i-access-the-prime-contracts-tool-if-i-cant-view-the-prime-contract" title="如果无法查看主合同,为什么可以访问主合同工具?"><span class="mt-icon-article-faq"></span>如果无法查看主合同,为什么可以访问主合同工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-should-i-do-if-a-model-is-too-large-to-view-in-procores-web-application" title="如果模型太大而无法在 Procore 的 Web 应用程序中查看,我该怎么办?"><span class="mt-icon-article-faq"></span>如果模型太大而无法在 Procore 的 Web 应用程序中查看,我该怎么办?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/if-a-user-does-not-have-permission-to-view-a-specific-correspondence-type-can-they-see-that-correspondence-type-in-their-project-overview-dashboard" title="如果用户没有查看特定通信类型的权限,他们能否在其“项目概况”仪表板中查看该通信类型?"><span class="mt-icon-article-faq"></span>如果用户没有查看特定通信类型的权限,他们能否在其“项目概况”仪表板中查看该通信类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-if-my-spec-sections-or-divisions-start-in-the-middle-of-a-page" title="如果规范分项或分部从页面中间开始怎么办?"><span class="mt-icon-article-faq"></span>如果规范分项或分部从页面中间开始怎么办?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.AF.B9"></span><h5 title="对">对</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-fieldset-configurations-are-recommended-for-configurable-fieldsets" title="对于可配置字段集推荐使用哪些配置?"><span class="mt-icon-article-faq"></span>对于可配置字段集推荐使用哪些配置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-languages-can-be-automatically-translated-in-the-conversations-tool" title="对话工具可以自动翻译哪些语言?"><span class="mt-icon-article-faq"></span>对话工具可以自动翻译哪些语言?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-permissions-work-for-the-conversations-tool" title="对话工具的权限如何工作?"><span class="mt-icon-article-faq"></span>对话工具的权限如何工作?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.AF.BC"></span><h5 title="导">导</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-column-header-updates-in-the-import-templates" title="导入模板中的列标题更新是什么?"><span class="mt-icon-article-faq"></span>导入模板中的列标题更新是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-to-resolve-commitment-with-code-already-exists-sage-300" title="导出到 ERP 时如何解决“合约编号已存在”错误"><span class="mt-icon-article-faq"></span>导出到 ERP 时如何解决“合约编号已存在”错误</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-to-resolve-import-operation-took-longer-than-the-set-timeout-sage" title="导出到 ERP 时如何解决“导入操作花费的时间超过设置的超时时间”错误?"><span class="mt-icon-article-faq"></span>导出到 ERP 时如何解决“导入操作花费的时间超过设置的超时时间”错误?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-file-formats-are-supported-when-exporting-a-projects-submittals" title="导出项目的送审材料时支持哪些文件格式?"><span class="mt-icon-article-faq"></span>导出项目的送审材料时支持哪些文件格式?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.B0.86"></span><h5 title="将">将</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/whats-the-difference-between-adding-an-assignee-to-an-rfi-and-forwarding-an-rfi-for-review" title="将任务分配对象添加到 RFI 和转发 RFI 供审核之间有什么区别?"><span class="mt-icon-article-faq"></span>将任务分配对象添加到 RFI 和转发 RFI 供审核之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-gets-copied-over-to-a-new-project-when-applying-a-project-template" title="将哪些内容从项目模板复制到新项目?"><span class="mt-icon-article-faq"></span>将哪些内容从项目模板复制到新项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-data-can-procore-automatically-populate-when-uploading-files-to-the-document-management-tool" title="将文件上传到文档管理工具时,Procore 可以自动填充什么数据?"><span class="mt-icon-article-faq"></span>将文件上传到文档管理工具时,Procore 可以自动填充什么数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-permissions-do-i-need-to-add-users-to-a-procore-project" title="将用户添加到 Procore 项目需要什么权限?"><span class="mt-icon-article-tutorial"></span>将用户添加到 Procore 项目需要什么权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-when-i-update-a-project-to-the-new-bid-management-experience" title="将项目更新到新版投标 管理体验时会发生什么?"><span class="mt-icon-article-faq"></span>将项目更新到新版投标 管理体验时会发生什么?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.B0.9D"></span><h5 title="尝">尝</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/trouble-logging-in-to-procore/tried-to-log-in-but-received-an-error-message" title="尝试登录,但收到错误消息"><span class="mt-icon-article-faq"></span>尝试登录,但收到错误消息</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.B0.BE"></span><h5 title="尾">尾</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-the-punch-list-workflow-affect-my-existing-punch-list-items" title="尾项清单工作流如何影响我现有的尾项清单项?"><span class="mt-icon-article-faq"></span>尾项清单工作流如何影响我现有的尾项清单项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-punch-list-tool-can-be-configured-as-required-optional-or-hidden" title="尾项清单工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-faq"></span>尾项清单工具中的哪些字段可以配置为必填、可选或隐藏?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.B7.A5"></span><h5 title="工">工</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-daily-log-tool-can-be-configured-as-required-optional-or-hidden" title="工作日志工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-faq"></span>工作日志工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-types-of-steps-in-a-workflow" title="工作流中有哪些不同类型的步骤?"><span class="mt-icon-article-faq"></span>工作流中有哪些不同类型的步骤?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-are-email-notifications-sent-from-workflows" title="工作流发送哪些电子邮件通知?"><span class="mt-icon-article-faq"></span>工作流发送哪些电子邮件通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-tm-tickets-tool-can-be-configured-as-required-optional-or-hidden" title="工时和材料单工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-faq"></span>工时和材料单工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-statuses-for-tm-tickets" title="工时和材料单的默认状态是什么?"><span class="mt-icon-article-faq"></span>工时和材料单的默认状态是什么?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.BA.94"></span><h5 title="应">应</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-available-regions-on-apps" title="应用商店应用程序上的“可用区域”是什么?"><span class="mt-icon-article-faq"></span>应用商店应用程序上的“可用区域”是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-type-of-mobile-device-should-i-use-for-procore" title="应该使用什么类型的移动设备来使用 Procore?"><span class="mt-icon-article-faq"></span>应该使用什么类型的移动设备来使用 Procore?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.BB.BA"></span><h5 title="建">建</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-type-of-device-is-recommended-for-viewing-models-in-the-models-tool" title="建议在模型工具中使用什么类型的设备查看模型?"><span class="mt-icon-article-faq"></span>建议在模型工具中使用什么类型的设备查看模型?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.BD.93"></span><h5 title="当">当</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-when-restrict-non-draft-edits-to-contracts-and-change-orders-and-enable-always-editable-schedule-of-values-are-both-enabled" title="当"限制对合同和变更通知单的非草稿编辑"和"启用始终可编辑的分项价格表"同时启用时会发生什么?"><span class="mt-icon-article-faq"></span>当"限制对合同和变更通知单的非草稿编辑"和"启用始终可编辑的分项价格表"同时启用时会发生什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-notification-emails-when-a-vendors-insurance-expires" title="当供应商的保险到期时,谁会收到通知电子邮件?"><span class="mt-icon-article-faq"></span>当供应商的保险到期时,谁会收到通知电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-i-do-when-a-commimtment-fails-to-export-from-the-erp-integrations-tool" title="当合约未能从 ERP 集成工具中导出时,我该怎么办?"><span class="mt-icon-article-faq"></span>当合约未能从 ERP 集成工具中导出时,我该怎么办?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-adjust-the-procore-standard-forecast-view-when-the-client-contracts-funding-or-prime-contracts-tool-is-disabled" title="当客户合同、资金或主合同工具被禁用时,我如何调整 Procore 标准预测视图?"><span class="mt-icon-article-faq"></span>当客户合同、资金或主合同工具被禁用时,我如何调整 Procore 标准预测视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-when-i-share-a-report-with-another-user" title="当我与其他 Procore 用户共享报告时会怎样?"><span class="mt-icon-article-faq"></span>当我与其他 Procore 用户共享报告时会怎样?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-adjust-my-budget-views-when-the-client-contracts-funding-or-prime-contracts-tool-is-disabled-in-my-companys-procore-account" title="当我公司 Procore 账户禁用客户合同、资金或主合同工具时,我能如何调整预算视图?"><span class="mt-icon-article-faq"></span>当我公司 Procore 账户禁用客户合同、资金或主合同工具时,我能如何调整预算视图?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-happens-when-i-import-a-document-management-file-into-the-drawings-tool" title="当我将文档管理文件导入图纸工具时会发生什么?"><span class="mt-icon-article-faq"></span>当我将文档管理文件导入图纸工具时会发生什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-does-it-mean-when-my-docusign-account-is-synced-with-procore" title="当我的 DocuSign 账户与我的 Procore 账户“同步”时,这意味着什么?我该如何同步?"><span class="mt-icon-article-faq"></span>当我的 DocuSign 账户与我的 Procore 账户“同步”时,这意味着什么?我该如何同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-accounting-approvers-notified-when-data-is-awaiting-acceptance-in-the-erp-integrations-tool" title="当数据在 ERP 集成工具中等待验收时,是否会通知会计审批者?"><span class="mt-icon-article-faq"></span>当数据在 ERP 集成工具中等待验收时,是否会通知会计审批者?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-there-any-system-limitations-when-creating-multiple-prime-contracts" title="当项目有多个主合同时,是否有任何系统限制?"><span class="mt-icon-article-faq"></span>当项目有多个主合同时,是否有任何系统限制?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-a-notification-when-an-item-is-rejected-from-erp" title="当项被 ERP 拒绝时,谁会收到通知?"><span class="mt-icon-article-faq"></span>当项被 ERP 拒绝时,谁会收到通知?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.BE.85"></span><h5 title="待">待</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-pending-commitments-automatically-synced-with-integrated-erp-systems" title="待处理合约是否会与集成 ERP 系统自动同步?"><span class="mt-icon-article-faq"></span>待处理合约是否会与集成 ERP 系统自动同步?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.BF.98"></span><h5 title="忘">忘</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/trouble-logging-in-to-procore/forgot-password" title="忘记密码"><span class="mt-icon-article-topic"></span>忘记密码</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/trouble-logging-in-to-procore/forgot-email" title="忘记电子邮件"><span class="mt-icon-article-faq"></span>忘记电子邮件</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.88.90"></span><h5 title="成">成</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-cost-catalog-item-types-relate-to-cost-types-in-procore" title="成本目录项类型与 Procore 中的成本类型有何关系?"><span class="mt-icon-article-faq"></span>成本目录项类型与 Procore 中的成本类型有何关系?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.88.91"></span><h5 title="我">我</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-do-i-not-have-permission-to-view-this-web-page" title="我为什么没有查看此网页的权限?"><span class="mt-icon-article-faq"></span>我为什么没有查看此网页的权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/i-thought-i-added-a-user-but-now-i-cant-find-that-person-what-happened" title="我以为自己添加了一个用户,但现在找不到那个人。发生了什么?"><span class="mt-icon-article-faq"></span>我以为自己添加了一个用户,但现在找不到那个人。发生了什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-domains-do-we-add-to-our-networks-allowed-list-to-ensure-access-to-procore" title="我们将哪些域添加到我们网络的“允许名单”中以确保访问 Procore?"><span class="mt-icon-article-faq"></span>我们将哪些域添加到我们网络的“允许名单”中以确保访问 Procore?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-custom-segments-should-we-create-for-our-companys-work-breakdown-structure" title="我们应该为公司的工作分解结构创建哪些自定义细分?"><span class="mt-icon-article-faq"></span>我们应该为公司的工作分解结构创建哪些自定义细分?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-we-have-to-create-and-send-all-our-project-emails-with-the-emails-tool" title="我们是否必须使用电子邮件工具创建和发送我们所有的项目电子邮件?"><span class="mt-icon-article-faq"></span>我们是否必须使用电子邮件工具创建和发送我们所有的项目电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-we-import-our-third-party-timecard-entries-to-work-with-the-timesheet-hours-column-in-the-budget" title="我们能否导入第三方考勤卡条目以与 Procore 预算工具中的“考勤表工时”列配合使用?"><span class="mt-icon-article-faq"></span>我们能否导入第三方考勤卡条目以与 Procore 预算工具中的“考勤表工时”列配合使用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-upload-drawings-with-the-same-revision" title="我可以上传包含相同修订的图纸吗?"><span class="mt-icon-article-faq"></span>我可以上传包含相同修订的图纸吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-add-personal-avatars-or-profile-photos-for-other-users" title="我可以为其他用户添加个人头像或个人资料照片吗?"><span class="mt-icon-article-faq"></span>我可以为其他用户添加个人头像或个人资料照片吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-delete-a-sage-300-cre-cost-code-cost-type-or-vendor" title="我可以从 Procore 中删除 Sage 300 CRE 成本编号、成本类型或供应商吗?"><span class="mt-icon-article-faq"></span>我可以从 Procore 中删除 Sage 300 CRE 成本编号、成本类型或供应商吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-watch-procore-certification-and-continuing-education-courses-from-my-mobile-device" title="我可以从我的移动设备观看 Procore 认证和成人教育课程吗?"><span class="mt-icon-article-faq"></span>我可以从我的移动设备观看 Procore 认证和成人教育课程吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-often-can-i-sync-data-using-the-integration-by-ryvit" title="我可以使用 Ryvit 集成以何种频率同步数据?"><span class="mt-icon-article-faq"></span>我可以使用 Ryvit 集成以何种频率同步数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-can-i-use-to-create-a-change-event" title="我可以使用哪些 Procore 工具创建变更事件?"><span class="mt-icon-article-faq"></span>我可以使用哪些 Procore 工具创建变更事件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-create-a-list-of-overdue-pccos" title="我可以创建一份逾期主合同变更通知单 (PCCO) 的清单吗?"><span class="mt-icon-article-faq"></span>我可以创建一份逾期主合同变更通知单 (PCCO) 的清单吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-use-the-procore-extracts-application-on-a-mac" title="我可以在 Mac 上使用 Procore Extracts 应用程序吗?"><span class="mt-icon-article-faq"></span>我可以在 Mac 上使用 Procore Extracts 应用程序吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-rotate-a-drawing-in-procore" title="我可以在 Procore 中旋转图纸吗?"><span class="mt-icon-article-faq"></span>我可以在 Procore 中旋转图纸吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-change-the-language-of-my-company-project-or-user-in-procore" title="我可以在 Procore 中更改公司、项目或用户语言吗?"><span class="mt-icon-article-faq"></span>我可以在 Procore 中更改公司、项目或用户语言吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-create-a-change-order-for-a-contract-or-funding-before-a-downstream-collaborator-responds-to-an-rfq-for-a-change-event" title="我可以在下游协作者响应变更事件的 RFQ 之前为合同或资金创建变更通知单吗?"><span class="mt-icon-article-faq"></span>我可以在下游协作者响应变更事件的 RFQ 之前为合同或资金创建变更通知单吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-include-signature-fields-in-my-fillable-pdfs" title="我可以在可填写的 PDF 中包含签名字段吗?"><span class="mt-icon-article-faq"></span>我可以在可填写的 PDF 中包含签名字段吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-fill-out-a-form-on-my-mobile-device" title="我可以在我的移动设备上填写表单吗?"><span class="mt-icon-article-faq"></span>我可以在我的移动设备上填写表单吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-send-correspondence-after-the-bid-due-date" title="我可以在投标截止日期之后发送通信吗?"><span class="mt-icon-article-faq"></span>我可以在投标截止日期之后发送通信吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-use-procores-mobile-application-offline" title="我可以在离线模式下使用 Procore 的移动应用程序吗?"><span class="mt-icon-article-faq"></span>我可以在离线模式下使用 Procore 的移动应用程序吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-edit-my-change-order-or-invoice-in-portfolio-financials" title="我可以在综合财务管理中编辑我的变更通知单或发票吗?"><span class="mt-icon-article-faq"></span>我可以在综合财务管理中编辑我的变更通知单或发票吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-mark-all-photos-private-in-the-projects-photos-tool" title="我可以在项目的照片工具中将所有照片标记为“私密”吗?"><span class="mt-icon-article-faq"></span>我可以在项目的照片工具中将所有照片标记为“私密”吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-export-a-correspondence-if-it-is-set-to-private" title="我可以导出设置为私密的通信吗?"><span class="mt-icon-article-faq"></span>我可以导出设置为私密的通信吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-export-procore-budget-modifications-to-an-integrated-erp-system" title="我可以将 Procore 预算修改导出到集成 ERP 系统吗?"><span class="mt-icon-article-faq"></span>我可以将 Procore 预算修改导出到集成 ERP 系统吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-copy-one-projects-folders-to-a-new-project" title="我可以将一个项目的文档文件夹复制到一个新项目吗?"><span class="mt-icon-article-faq"></span>我可以将一个项目的文档文件夹复制到一个新项目吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-can-i-assign-a-task-to" title="我可以将任务分配给谁?"><span class="mt-icon-article-faq"></span>我可以将任务分配给谁?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-import-clashes-and-clash-groups-into-the-coordination-issues-tool" title="我可以将冲突和冲突组导入到协调问题工具中吗?"><span class="mt-icon-article-faq"></span>我可以将冲突和冲突组导入到协调问题工具中吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-filters-can-i-apply-to-the-change-events-tool" title="我可以将哪些筛选器应用于变更事件工具?"><span class="mt-icon-article-faq"></span>我可以将哪些筛选器应用于变更事件工具?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-integrate-my-lms-with-procore-certification" title="我可以将我的 LMS 与 Procore 认证集成吗?"><span class="mt-icon-article-faq"></span>我可以将我的 LMS 与 Procore 认证集成吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-copy-files-in-the-documents-tool-to-another-project" title="我可以将文档工具中的文件复制到另一个项目吗?"><span class="mt-icon-article-faq"></span>我可以将文档工具中的文件复制到另一个项目吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-change-the-language-that-procore-scans-my-drawings-for" title="我可以更改 Procore 扫描图纸所用的语言吗?"><span class="mt-icon-article-faq"></span>我可以更改 Procore 扫描图纸所用的语言吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-disable-the-change-events-tool" title="我可以禁用变更事件工具吗?"><span class="mt-icon-article-faq"></span>我可以禁用变更事件工具吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-access-forms-offline" title="我可以离线访问表单吗?"><span class="mt-icon-article-faq"></span>我可以离线访问表单吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-receive-weather-delay-alerts-by-phone-or-email" title="我可以通过电话或电子邮件接收天气导致的延误警报吗?"><span class="mt-icon-article-faq"></span>我可以通过电话或电子邮件接收天气导致的延误警报吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-prevent-emails-from-being-sent-on-the-weekend" title="我可以阻止在周末发送电子邮件吗?"><span class="mt-icon-article-faq"></span>我可以阻止在周末发送电子邮件吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-often-can-i-sync-data-between-sage-100-contractor-and-procore" title="我可在 Sage 100 Contractor 和 Procore 之间以何种频率同步数据?"><span class="mt-icon-article-faq"></span>我可在 Sage 100 Contractor 和 Procore 之间以何种频率同步数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-often-can-i-sync-data-between-sage-300-cre-and-procore" title="我可在 Sage 300 CRE 和 Procore 之间以何种频率同步数据?"><span class="mt-icon-article-faq"></span>我可在 Sage 300 CRE 和 Procore 之间以何种频率同步数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-does-my-user-session-expire-on-procore-support-site" title="我在 Procore 支持网站上的用户会话何时过期?"><span class="mt-icon-article-faq"></span>我在 Procore 支持网站上的用户会话何时过期?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-can-i-sign-up-for-free-public-trainings" title="我在哪里可以报名参加免费的公开培训?"><span class="mt-icon-article-faq"></span>我在哪里可以报名参加免费的公开培训?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-often-can-i-sync-data-between-procore-and-viewpoint-spectrum" title="我多久可以在 Procore 和 Viewpoint® Spectrum® 之间同步数据一次?"><span class="mt-icon-article-faq"></span>我多久可以在 Procore 和 Viewpoint® Spectrum® 之间同步数据一次?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-post-an-idea-for-procore" title="我如何发布有关 Procore 的想法?"><span class="mt-icon-article-faq"></span>我如何发布有关 Procore 的想法?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-handle-cm-fees-in-portfolio-financials" title="我如何处理综合财务管理中的 CM 费用?"><span class="mt-icon-article-faq"></span>我如何处理综合财务管理中的 CM 费用?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-control-which-emails-are-sent-by-procore-from-the-punch-list-tool" title="我如何控制 Procore 从尾项清单工具发送哪些电子邮件?"><span class="mt-icon-article-faq"></span>我如何控制 Procore 从尾项清单工具发送哪些电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-view-incomplete-certification-or-ce-lessons" title="我如何查看未完成的认证或成人教育课程?"><span class="mt-icon-article-faq"></span>我如何查看未完成的认证或成人教育课程?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-know-if-an-rfi-that-i-posted-in-the-bid-room-has-been-answered" title="我如何知道我在投标室发布的 RFI 是否已得到答复?"><span class="mt-icon-article-faq"></span>我如何知道我在投标室发布的 RFI 是否已得到答复?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-will-i-know-when-my-invoice-or-change-order-is-approved-or-rejected-in-portfolio-financials" title="我如何知道我的发票或变更通知单何时在综合财务管理中被批准或拒绝?"><span class="mt-icon-article-faq"></span>我如何知道我的发票或变更通知单何时在综合财务管理中被批准或拒绝?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-know-if-someone-has-downloaded-a-file" title="我如何知道是否有人下载了文件?"><span class="mt-icon-article-faq"></span>我如何知道是否有人下载了文件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-email-a-submittal-so-people-can-reply-through-email" title="我如何通过电子邮件发送送审,以便人们可以通过电子邮件回复?"><span class="mt-icon-article-faq"></span>我如何通过电子邮件发送送审,以便人们可以通过电子邮件回复?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/for-which-items-in-procore-should-i-make-templates" title="我应该为 Procore 中的哪些项制作模板?"><span class="mt-icon-article-faq"></span>我应该为 Procore 中的哪些项制作模板?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/should-i-enable-the-specifications-tool-on-my-project" title="我应该在项目中启用规范工具吗?"><span class="mt-icon-article-faq"></span>我应该在项目中启用规范工具吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-budget-views-should-i-add-to-my-projects" title="我应该将哪些预算视图添加到我的 Procore 项目中?"><span class="mt-icon-article-faq"></span>我应该将哪些预算视图添加到我的 Procore 项目中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-i-need-to-create-a-dedicated-user-account-in-sage-for-the-hh2-syncrhonization-client" title="我是否需要在 Sage 300 CRE 中为 hh2 同步客户端创建专用用户账户?"><span class="mt-icon-article-faq"></span>我是否需要在 Sage 300 CRE 中为 hh2 同步客户端创建专用用户账户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-i-need-to-use-cost-codes-on-a-bid-form" title="我是否需要在投标表单上使用成本编号?"><span class="mt-icon-article-faq"></span>我是否需要在投标表单上使用成本编号?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-cost-code-formats-are-supported-by-erp" title="我的 ERP 集成支持哪些成本编号格式?"><span class="mt-icon-article-tutorial"></span>我的 ERP 集成支持哪些成本编号格式?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-my-company-receive-bid-invitations-through-the-procore-construction-network" title="我的公司如何通过 Procore 建设工程网络接收投标邀请?"><span class="mt-icon-article-faq"></span>我的公司如何通过 Procore 建设工程网络接收投标邀请?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-blue-icons-in-my-drawings-log" title="我的图纸日志中的蓝色图标是什么?"><span class="mt-icon-article-faq"></span>我的图纸日志中的蓝色图标是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-date-notified-field-in-my-punch-list" title="我的尾项清单中的“通知日期”字段是什么?"><span class="mt-icon-article-faq"></span>我的尾项清单中的“通知日期”字段是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-my-time-tool-can-be-configured-as-required-optional-or-hidden" title="我的工时工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-faq"></span>我的工时工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-my-project-specific-cost-code-segment-items-get-carried-over-to-a-new-project-from-a-project-template" title="我的特定于项目的“成本编号”细分项如何从项目模板转移到新项目?"><span class="mt-icon-article-faq"></span>我的特定于项目的“成本编号”细分项如何从项目模板转移到新项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-upload-fillable-pdfs-that-are-password-protected" title="我能否上传受密码保护的可填写 PDF?"><span class="mt-icon-article-faq"></span>我能否上传受密码保护的可填写 PDF?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-provide-users-with-read-only-level-permissions-with-limited-access-to-update-information-in-procore" title="我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?"><span class="mt-icon-article-faq"></span>我能否为具有"只读"级别权限的用户提供有限访问权限,以便用户在 Procore 中更新信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-create-an-rfi-with-a-duplicate-number" title="我能否创建具有重复编号的 RFI?"><span class="mt-icon-article-faq"></span>我能否创建具有重复编号的 RFI?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-send-a-bid-update-email-to-every-vendor-subcontractor" title="我能否向每个供应商/分包商发送投标更新电子邮件?"><span class="mt-icon-article-faq"></span>我能否向每个供应商/分包商发送投标更新电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-fill-out-forms-on-the-web-version-of-procore" title="我能否在 Procore Web 版上填写表单?"><span class="mt-icon-article-faq"></span>我能否在 Procore Web 版上填写表单?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-customize-the-numbering-system-for-financial-management-objects-in-procore" title="我能否在 Procore 中自定义财务对象的编号系统?"><span class="mt-icon-article-faq"></span>我能否在 Procore 中自定义财务对象的编号系统?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-change-the-selected-vendor-type-after-a-company-has-been-synced" title="我能否在公司同步后更改选定的供应商类型?"><span class="mt-icon-article-faq"></span>我能否在公司同步后更改选定的供应商类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-include-required-fields-in-a-fillable-pdf-form" title="我能否在可填写 PDF 表单中包含必填字段?"><span class="mt-icon-article-faq"></span>我能否在可填写 PDF 表单中包含必填字段?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-print-or-export-a-copy-of-my-bid-in-the-bid-room" title="我能否在投标室打印或导出我的投标副本?"><span class="mt-icon-article-faq"></span>我能否在投标室打印或导出我的投标副本?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-include-deducts-in-my-bid-submission-in-the-bid-room" title="我能否在投标室的投标递交中包含扣除额?"><span class="mt-icon-article-faq"></span>我能否在投标室的投标递交中包含扣除额?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-customize-the-project-type-options-in-portfolio-financials-and-capital-planning" title="我能否在综合财务管理和资金规划中自定义项目类型选项?"><span class="mt-icon-article-faq"></span>我能否在综合财务管理和资金规划中自定义项目类型选项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-enforce-required-fields-in-a-form" title="我能否在表单中强制执行必填字段?"><span class="mt-icon-article-tutorial"></span>我能否在表单中强制执行必填字段?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-report-on-content-in-the-forms-tool" title="我能否报告表单工具中的内容?"><span class="mt-icon-article-faq"></span>我能否报告表单工具中的内容?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-receive-a-daily-activity-summary-for-portfolio-financials-and-capital-planning" title="我能否接收综合财务管理和资金规划的每日活动摘要?"><span class="mt-icon-article-faq"></span>我能否接收综合财务管理和资金规划的每日活动摘要?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-search-the-contents-of-a-fillable-pdf" title="我能否搜索可填写 PDF 的内容?"><span class="mt-icon-article-faq"></span>我能否搜索可填写 PDF 的内容?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-change-a-persons-email-address-in-the-directory" title="我能否更改目录中人员的电子邮件地址?"><span class="mt-icon-article-faq"></span>我能否更改目录中人员的电子邮件地址?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-update-the-percent-complete-field-on-the-web-application" title="我能否更新 Procore Web 应用程序上的“完成百分比”字段?"><span class="mt-icon-article-faq"></span>我能否更新 Procore Web 应用程序上的“完成百分比”字段?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-attach-a-photo-to-a-punch-list-item-from-my-mobile-device" title="我能否通过移动设备将照片添加到尾项清单项目?"><span class="mt-icon-article-faq"></span>我能否通过移动设备将照片添加到尾项清单项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-to-i-select-which-viewpoint-spectrum-jobs-appear-in-the-select-a-job-template-list-of-the-erp-integrations-tool" title="我该选择哪些 Viewpoint® Spectrum® 作业出现在 ERP 集成工具的“选择作业模板”列表中?"><span class="mt-icon-article-faq"></span>我该选择哪些 Viewpoint® Spectrum® 作业出现在 ERP 集成工具的“选择作业模板”列表中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-i-need-a-docusign-account" title="我需要拥有 DocuSign© 账户吗?"><span class="mt-icon-article-faq"></span>我需要拥有 DocuSign© 账户吗?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.8A.95"></span><h5 title="投">投</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-bidders-submit-their-bid-via-email-or-must-they-sign-in" title="投标人可以通过电子邮件提交投标还是必须登录?"><span class="mt-icon-article-faq"></span>投标人可以通过电子邮件提交投标还是必须登录?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-bidders-see-when-they-are-in-the-bid-room" title="投标人在投标室看到什么?"><span class="mt-icon-article-faq"></span>投标人在投标室看到什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-permissions-do-bidders-need-in-order-to-be-invited-to-bid-and-submit-a-bid" title="投标人需要哪些权限才能受邀投标和提交投标?"><span class="mt-icon-article-faq"></span>投标人需要哪些权限才能受邀投标和提交投标?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/will-dates-from-a-bid-room-be-added-to-the-projects-milestones-in-portfolio-financials" title="投标室中的日期是否会添加到综合财务管理中的项目里程碑?"><span class="mt-icon-article-faq"></span>投标室中的日期是否会添加到综合财务管理中的项目里程碑?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-adjustments-section-on-a-bid-form-in-the-bid-room" title="投标室投标表单上的“调整”部分包括哪些内容?"><span class="mt-icon-article-faq"></span>投标室投标表单上的“调整”部分包括哪些内容?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-the-old-and-new-bid-management-experience-in-the-bidding-tool" title="投标工具中旧版和新版投标管理体验之间有什么区别?"><span class="mt-icon-article-faq"></span>投标工具中旧版和新版投标管理体验之间有什么区别?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.8E.A5"></span><h5 title="接">接</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-accepting-a-procore-invitation-and-creating-a-free-procore-account" title="接受 Procore 邀请和创建免费 Procore 公司账户之间有什么区别?"><span class="mt-icon-article-faq"></span>接受 Procore 邀请和创建免费 Procore 公司账户之间有什么区别?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.8F.90"></span><h5 title="提">提</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-file-rename-information-file-included-with-my-extracted-project-data" title="提取的项目数据中包含的“文件重命名信息 (File Rename Information)”文件是什么?"><span class="mt-icon-article-faq"></span>提取的项目数据中包含的“文件重命名信息 (File Rename Information)”文件是什么?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.96.87"></span><h5 title="文">文</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-file-types-are-supported-for-the-3d-model-viewer-in-the-documents-tool" title="文档工具中的 3D 模型查看器支持哪些文件类型?"><span class="mt-icon-article-faq"></span>文档工具中的 3D 模型查看器支持哪些文件类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-schedules-folder-in-the-documents-tool-and-why-cant-i-delete-it" title="文档工具中的“进度计划”文件夹是什么?为什么不能删除?"><span class="mt-icon-article-faq"></span>文档工具中的“进度计划”文件夹是什么?为什么不能删除?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-documents-tool-can-be-configured-as-required-optional-or-hidden" title="文档工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-faq"></span>文档工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/document-management-general-faq" title="文档管理:一般常见问题"><span class="mt-icon-article-faq"></span>文档管理:一般常见问题</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-document-management-workflows" title="文档管理工作流有哪些细分权限?"><span class="mt-icon-article-faq"></span>文档管理工作流有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-fields-in-the-document-management-tool" title="文档管理工具中有哪些不同的字段?"><span class="mt-icon-article-faq"></span>文档管理工具中有哪些不同的字段?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-document-management-attachments-and-attachments-from-other-tools" title="文档管理附件和来自其他工具的附件有什么区别?"><span class="mt-icon-article-faq"></span>文档管理附件和来自其他工具的附件有什么区别?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.97.A7"></span><h5 title="旧">旧</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-differences-between-legacy-and-self-serve-workflows" title="旧版工作流和自助式工作流之间有什么区别?"><span class="mt-icon-article-faq"></span>旧版工作流和自助式工作流之间有什么区别?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.98.AF"></span><h5 title="是">是</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-makes-a-company-appear-higher-in-search-results-for-the-procore-construction-network" title="是什么使公司在 Procore 建设工程网络的搜索结果中更高?"><span class="mt-icon-article-faq"></span>是什么使公司在 Procore 建设工程网络的搜索结果中更高?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-set-up-multiple-favorites-lists-for-my-project-tools-to-apply-to-different-projects" title="是否可以为我的项目工具设置多个收藏夹列表,以应用于不同的项目?"><span class="mt-icon-article-faq"></span>是否可以为我的项目工具设置多个收藏夹列表,以应用于不同的项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-export-data-from-the-conversations-tool" title="是否可以从对话工具中导出数据?"><span class="mt-icon-article-faq"></span>是否可以从对话工具中导出数据?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-copy-estimates-from-the-estimating-tool-to-a-new-project" title="是否可以将估算值从估算工具复制到新项目?"><span class="mt-icon-article-faq"></span>是否可以将估算值从估算工具复制到新项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-apply-custom-segments-to-my-existing-non-wbs-projects" title="是否可以将自定义细分应用于现有的非 WBS 项目?"><span class="mt-icon-article-faq"></span>是否可以将自定义细分应用于现有的非 WBS 项目?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/is-there-a-way-to-bulk-replace-an-approver-submitter-or-reviewer-on-a-projects-submittals" title="是否可以批量替换项目送审中的审批者、送审者或审核人?"><span class="mt-icon-article-faq"></span>是否可以批量替换项目送审中的审批者、送审者或审核人?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-make-files-and-folders-private-by-default" title="是否可以默认在文档工具中将文件和文件夹设为私密?"><span class="mt-icon-article-faq"></span>是否可以默认在文档工具中将文件和文件夹设为私密?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/should-i-integrate-my-microsoft-project-schedule-in-procores-web-application-or-procore-drive" title="是否应该将 Microsoft Project 进度计划集成到 Procore Web 应用程序或 Procore Drive?"><span class="mt-icon-article-faq"></span>是否应该将 Microsoft Project 进度计划集成到 Procore Web 应用程序或 Procore Drive?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/should-i-update-my-budget-view-to-add-rfq-values-to-the-budget" title="是否应该更新预算视图以将 RFQ 值添加到预算中?"><span class="mt-icon-article-faq"></span>是否应该更新预算视图以将 RFQ 值添加到预算中?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/is-there-a-way-to-see-all-the-open-items-in-procore-assigned-to-me" title="是否有办法查看 Procore 中分配给我的所有未完成项?"><span class="mt-icon-article-faq"></span>是否有办法查看 Procore 中分配给我的所有未完成项?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.9B.B4"></span><h5 title="更">更</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-updating-the-work-log-section-why-cant-i-see-any-names-in-my-resource-list" title="更新作业日志部分时,为什么在我的资源列表中看不到任何名称?"><span class="mt-icon-article-faq"></span>更新作业日志部分时,为什么在我的资源列表中看不到任何名称?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.9C.89"></span><h5 title="有">有</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-cost-types-and-how-does-our-erp-integration-support-them" title="有哪些“成本类型”以及我们的 ERP 集成如何支持这些成本类型?"><span class="mt-icon-article-faq"></span>有哪些“成本类型”以及我们的 ERP 集成如何支持这些成本类型?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-rfq-statuses" title="有哪些不同的 RFQ 状态以及它们如何影响成本和变更通知单金额?"><span class="mt-icon-article-faq"></span>有哪些不同的 RFQ 状态以及它们如何影响成本和变更通知单金额?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.9D.83"></span><h5 title="权">权</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-permissions-work-in-the-document-management-tool" title="权限如何在文档管理工具中发挥作用?"><span class="mt-icon-article-faq"></span>权限如何在文档管理工具中发挥作用?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.9F.90"></span><h5 title="某">某</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-someone-become-a-follower-of-a-conversation-in-procore" title="某人如何才能成为 Procore 中对话的“关注者”?"><span class="mt-icon-article-faq"></span>某人如何才能成为 Procore 中对话的“关注者”?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.A3.80"></span><h5 title="检">检</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-inspections-tool-can-be-configured-as-required-optional-or-hidden" title="检查任务工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-faq"></span>检查任务工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/inspection-requirements-general-faq" title="检查任务要求:一般常见问题"><span class="mt-icon-article-reference"></span>检查任务要求:一般常见问题</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.AD.A3"></span><h5 title="正">正</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-is-the-procore-certification-course-that-i'm-looking-for" title="正在寻找的 Procore 认证课程在哪里?"><span class="mt-icon-article-faq"></span>正在寻找的 Procore 认证课程在哪里?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.AF.8F"></span><h5 title="每">每</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-does-each-permission-level-mean" title="每个权限级别的含义是什么?"><span class="mt-icon-article-faq"></span>每个权限级别的含义是什么?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.B0.B4"></span><h5 title="水">水</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-horizontal-and-vertical-markup" title="水平分项利润加成和垂直汇总利润加成有什么区别?"><span class="mt-icon-article-faq"></span>水平分项利润加成和垂直汇总利润加成有什么区别?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.B5.8B"></span><h5 title="测">测</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-a-feature-called-beta-and-what-does-that-mean" title="测试版是什么意思?"><span class="mt-icon-article-faq"></span>测试版是什么意思?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E7.85.A7"></span><h5 title="照">照</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-does-the-search-box-search-for" title="照片工具中的“搜索”框会搜索什么?"><span class="mt-icon-article-faq"></span>照片工具中的“搜索”框会搜索什么?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E7.8E.B0"></span><h5 title="现">现</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-data-columns-are-in-a-field-production-report" title="现场生产报告中包含哪些数据列?"><span class="mt-icon-article-faq"></span>现场生产报告中包含哪些数据列?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-cash-flow-forecasts-and-capital-plans-interact-in-portfolio-financials-and-capital-planning" title="现金流预测和资金规划如何在综合财务管理和资金规划中相互作用?"><span class="mt-icon-article-faq"></span>现金流预测和资金规划如何在综合财务管理和资金规划中相互作用?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E7.94.A8"></span><h5 title="用">用</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-catalog-category-and-item-in-the-cost-catalog-for-estimating" title="用于估算的成本目录中的目录、类别和项之间有什么区别?"><span class="mt-icon-article-faq"></span>用于估算的成本目录中的目录、类别和项之间有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/does-a-user-need-to-log-in-to-procore-to-respond-to-an-rfi" title="用户是否需要登录 Procore 才能答复 RFI?"><span class="mt-icon-article-faq"></span>用户是否需要登录 Procore 才能答复 RFI?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E7.9B.AE"></span><h5 title="目">目</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-maximum-character-length-for-a-company-name-in-the-directory-tool" title="目录工具中“公司名称”的最大字符长度是多少?"><span class="mt-icon-article-faq"></span>目录工具中“公司名称”的最大字符长度是多少?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-directory-tool-can-be-configured-as-required-optional-or-hidden" title="目录工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-faq"></span>目录工具中的哪些字段可以配置为必填、可选或隐藏?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E7.A7.81"></span><h5 title="私">私</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-a-private-correspondence-item-be-made-public" title="私密通信可以公开吗?"><span class="mt-icon-article-faq"></span>私密通信可以公开吗?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E7.BB.9F"></span><h5 title="统">统</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-file-types-and-formats-are-supported-in-the-attachment-viewer" title="统一附件查看器支持哪些文件类型和格式?"><span class="mt-icon-article-faq"></span>统一附件查看器支持哪些文件类型和格式?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E7.BB.BC"></span><h5 title="综">综</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-permission-levels-for-team-members-in-portfolio-financials" title="综合财务管理中团队成员有哪些不同的权限级别?"><span class="mt-icon-article-faq"></span>综合财务管理中团队成员有哪些不同的权限级别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-send-to-accounts-payable-feature-in-portfolio-financials" title="综合财务管理中的“发送到应付会计”功能是什么?"><span class="mt-icon-article-faq"></span>综合财务管理中的“发送到应付会计”功能是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-invoice-approvals-work-in-portfolio-financials" title="综合财务管理中的发票审批如何运作?"><span class="mt-icon-article-faq"></span>综合财务管理中的发票审批如何运作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-change-order-approvals-work-in-portfolio-financials" title="综合财务管理中的变更通知单审批如何运作?"><span class="mt-icon-article-faq"></span>综合财务管理中的变更通知单审批如何运作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-contract-approvals-work-in-portfolio-financials" title="综合财务管理中的合同审批如何运作?"><span class="mt-icon-article-faq"></span>综合财务管理中的合同审批如何运作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-email-notifications-are-sent-for-approval-workflows-in-portfolio-financials" title="综合财务管理中的审批工作流会发送哪些电子邮件通知?"><span class="mt-icon-article-faq"></span>综合财务管理中的审批工作流会发送哪些电子邮件通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-bid-approvals-work-in-portfolio-financials" title="综合财务管理中的投标审批如何运作?"><span class="mt-icon-article-faq"></span>综合财务管理中的投标审批如何运作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-bid-room-in-portfolio-financials" title="综合财务管理中的投标室是什么?"><span class="mt-icon-article-faq"></span>综合财务管理中的投标室是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-milestone-dependencies-in-portfolio-financials-and-how-do-i-set-them" title="综合财务管理中的里程碑依赖项是什么?如何进行设置?"><span class="mt-icon-article-faq"></span>综合财务管理中的里程碑依赖项是什么?如何进行设置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-milestones-in-portfolio-financials-sync-with-my-external-project-schedule" title="综合财务管理中的里程碑是否与我的外部项目进度计划同步?"><span class="mt-icon-article-faq"></span>综合财务管理中的里程碑是否与我的外部项目进度计划同步?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-project-team-in-portfolio-financials-and-what-are-the-varying-permission-levels" title="综合财务管理中的项目团队是什么?有哪些不同的权限级别?"><span class="mt-icon-article-faq"></span>综合财务管理中的项目团队是什么?有哪些不同的权限级别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-budget-approvals-work-in-portfolio-financials" title="综合财务管理中的预算审批如何运作?"><span class="mt-icon-article-faq"></span>综合财务管理中的预算审批如何运作?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-betweeen-baseline-and-forecast-or-actual-dates-for-milestones-in-portfolio-financials" title="综合财务管理中里程碑的“基准”和“预测或实际”日期之间有何区别?"><span class="mt-icon-article-faq"></span>综合财务管理中里程碑的“基准”和“预测或实际”日期之间有何区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-some-best-practices-for-reporting-in-portfolio-financials-and-capital-planning" title="综合财务管理务和资金规划报告的一些最佳实践是什么?"><span class="mt-icon-article-faq"></span>综合财务管理务和资金规划报告的一些最佳实践是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-granular-permissions-available-in-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划中是否提供细分权限?"><span class="mt-icon-article-faq"></span>综合财务管理和资金规划中是否提供细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-my-tasks-page-in-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划中的“我的任务”页面是什么?"><span class="mt-icon-article-faq"></span>综合财务管理和资金规划中的“我的任务”页面是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-data-points-available-for-custom-reports-in-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划中的自定义报告可使用哪些数据点?"><span class="mt-icon-article-faq"></span>综合财务管理和资金规划中的自定义报告可使用哪些数据点?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-project-page-in-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划中的项目页面是什么?"><span class="mt-icon-article-faq"></span>综合财务管理和资金规划中的项目页面是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-data-points-for-capital-plans-in-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划中资金规划的数据点是什么?"><span class="mt-icon-article-faq"></span>综合财务管理和资金规划中资金规划的数据点是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-arrows-mean-on-the-project-comparison-tab-of-portfolio-financials-and-capital-planning" title="综合财务管理和资金规划的“项目比较”标签页中的箭头是什么意思?"><span class="mt-icon-article-faq"></span>综合财务管理和资金规划的“项目比较”标签页中的箭头是什么意思?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E8.80.83"></span><h5 title="考">考</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/where-did-the-numbered-templates-on-the-timesheets-and-my-time-tool-fieldsets-come-from" title="考勤表和我的工时工具字段集上的编号模板从何而来?"><span class="mt-icon-article-faq"></span>考勤表和我的工时工具字段集上的编号模板从何而来?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-timesheets-tool-can-be-configured-as-required-optional-or-hidden" title="考勤表工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-faq"></span>考勤表工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-timesheets-tools-default-statuses-for-time-entries" title="考勤表工具时间条目的默认状态是什么?"><span class="mt-icon-article-faq"></span>考勤表工具时间条目的默认状态是什么?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E8.83.BD"></span><h5 title="能">能</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-remove-a-line-item-from-a-bid" title="能否从投标中移除明细项?"><span class="mt-icon-article-faq"></span>能否从投标中移除明细项?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-rearrange-the-order-of-daily-log-sections" title="能否重新排列各工作日志部分的顺序?"><span class="mt-icon-article-faq"></span>能否重新排列各工作日志部分的顺序?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E8.87.AA"></span><h5 title="自">自</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-source-columns-are-available-in-custom-budget-views" title="自定义 预算 视图中有哪些源列?"><span class="mt-icon-article-faq"></span>自定义 预算 视图中有哪些源列?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-custom-fields-and-configurable-fieldsets" title="自定义字段和可配置字段集之间有什么区别?"><span class="mt-icon-article-faq"></span>自定义字段和可配置字段集之间有什么区别?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E8.A1.8C"></span><h5 title="行">行</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-does-an-action-plan-shift-to-edit-or-view-mode" title="行动计划何时转换为“编辑”或“查看”模式?"><span class="mt-icon-article-faq"></span>行动计划何时转换为“编辑”或“查看”模式?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-action-plans-tool-can-be-configured-as-required-optional-or-hidden" title="行动计划工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-faq"></span>行动计划工具中的哪些字段可以配置为必填、可选或隐藏?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E8.A1.A8"></span><h5 title="表">表</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-file-types-does-the-forms-tool-support" title="表单工具支持哪些文件类型?"><span class="mt-icon-article-faq"></span>表单工具支持哪些文件类型?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E8.A7.81"></span><h5 title="见">见</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-insights-calculated" title="见解是如何计算的?"><span class="mt-icon-article-reference"></span>见解是如何计算的?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E8.A7.82"></span><h5 title="观">观</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-observations-tool-can-be-configured-as-required-optional-or-hidden" title="观察任务工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-faq"></span>观察任务工具中的哪些字段可以配置为必填、可选或隐藏?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E8.A7.84"></span><h5 title="规">规</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-specifications-tool-can-be-configured-as-required-optional-or-hidden" title="规范工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-faq"></span>规范工具中的哪些字段可以配置为必填、可选或隐藏?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E8.B0.81"></span><h5 title="谁">谁</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-correspondence-item-emails-and-push-notifications" title="谁会接收通信项电子邮件和推送通知?"><span class="mt-icon-article-tutorial"></span>谁会接收通信项电子邮件和推送通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-a-notification-for-updates-in-the-drawings-tool" title="谁会收到图纸工具中的更新通知?"><span class="mt-icon-article-faq"></span>谁会收到图纸工具中的更新通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-emails-about-coordination-issues" title="谁会收到有关协调问题的电子邮件?"><span class="mt-icon-article-faq"></span>谁会收到有关协调问题的电子邮件?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-notifications-about-project-connections" title="谁会收到有关项目连接的通知?"><span class="mt-icon-article-faq"></span>谁会收到有关项目连接的通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-gets-notifications-from-observations" title="谁会收到观察任务通知?"><span class="mt-icon-article-faq"></span>谁会收到观察任务通知?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-can-view-bids-within-a-free-procore-account" title="谁可以在免费 Procore 账户中查看投标?"><span class="mt-icon-article-faq"></span>谁可以在免费 Procore 账户中查看投标?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-can-view-a-draft-rfi" title="谁可以查看 RFI“草稿”?"><span class="mt-icon-article-faq"></span>谁可以查看 RFI“草稿”?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-can-see-users-listed-in-a-project-directory" title="谁可以查看项目目录中列出的用户?"><span class="mt-icon-article-faq"></span>谁可以查看项目目录中列出的用户?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-can-be-designated-as-an-assignee-on-an-rfi" title="谁可以被指定为 RFI 的“任务分配对象”?"><span class="mt-icon-article-faq"></span>谁可以被指定为 RFI 的“任务分配对象”?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E8.B5.84"></span><h5 title="资">资</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-people-information-is-synced-between-resource-planning-and-the-procore-company-directory" title="资源规划和 Procore 公司目录之间同步了哪些人员信息?"><span class="mt-icon-article-faq"></span>资源规划和 Procore 公司目录之间同步了哪些人员信息?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-project-information-is-synced-between-resource-planning-and-procore-projects" title="资源规划和 Procore 项目之间同步了哪些项目信息?"><span class="mt-icon-article-faq"></span>资源规划和 Procore 项目之间同步了哪些项目信息?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E9.80.81"></span><h5 title="送">送</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-submitter-and-approver-in-submittals" title="送审中的送审者和审批者有什么区别?"><span class="mt-icon-article-faq"></span>送审中的送审者和审批者有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/whats-the-difference-between-sequential-and-parallel-approval-in-the-submittal-workflow" title="送审工作流中的依序审批和平行审批有什么区别?"><span class="mt-icon-article-faq"></span>送审工作流中的依序审批和平行审批有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-submittals-tool-can-be-configured-as-required-optional-or-hidden" title="送审工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-faq"></span>送审工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-user-roles-in-the-submittals-tool" title="送审工具中的用户角色是什么?"><span class="mt-icon-article-faq"></span>送审工具中的用户角色是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-the-date-columns-in-submittal-custom-reports-calculated" title="送审自定义报告中的日期列是如何计算的?"><span class="mt-icon-article-faq"></span>送审自定义报告中的日期列是如何计算的?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-is-a-submittal-attachment-labeled-as-current-in-the-submittal-worfklow-table" title="送审附件何时在“送审工作流”表中标记为“当前”?"><span class="mt-icon-article-faq"></span>送审附件何时在“送审工作流”表中标记为“当前”?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E9.80.9A"></span><h5 title="通">通</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-correspondence-tool-can-be-configured-as-required-optional-or-hidden" title="通信工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-faq"></span>通信工具中的哪些字段可以配置为必填、可选或隐藏?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E9.85.8D"></span><h5 title="配">配</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-will-configured-fieldsets-affect-my-existing-projects" title="配置的字段集将如何影响现有项目?"><span class="mt-icon-article-faq"></span>配置的字段集将如何影响现有项目?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E9.A1.B9"></span><h5 title="项">项</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-code-field-on-the-project-creation-page" title="项目创建页面上的“Code”字段是什么?"><span class="mt-icon-article-faq"></span>项目创建页面上的“Code”字段是什么?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-rfis-tool" title="项目的 RFI 工具有哪些细分权限?"><span class="mt-icon-article-faq"></span>项目的 RFI 工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-prime-contracts-tool" title="项目的主合同工具有哪些细分权限?"><span class="mt-icon-article-faq"></span>项目的主合同工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-meetings-tool" title="项目的会议工具有哪些细分权限?"><span class="mt-icon-article-faq"></span>项目的会议工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-transmittals-tool" title="项目的传输记录工具有哪些细分权限?"><span class="mt-icon-article-faq"></span>项目的传输记录工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-change-orders-tool" title="项目的变更通知单工具有哪些细分权限?"><span class="mt-icon-article-faq"></span>项目的变更通知单工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-commitments-tool" title="项目的合约工具有哪些细分权限?"><span class="mt-icon-article-faq"></span>项目的合约工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-drawings-tool" title="项目的图纸工具有哪些细分权限?"><span class="mt-icon-article-faq"></span>项目的图纸工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-client-contracts-tool" title="项目的客户合同工具有哪些细分权限?"><span class="mt-icon-article-faq"></span>项目的客户合同工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-punch-list-tool" title="项目的尾项清单工具有哪些细分权限?"><span class="mt-icon-article-faq"></span>项目的尾项清单工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-daily-log-tool" title="项目的工作日志工具有哪些细分权限?"><span class="mt-icon-article-faq"></span>项目的工作日志工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-bidding-tool" title="项目的投标工具有哪些细分权限?"><span class="mt-icon-article-faq"></span>项目的投标工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-photos-tool" title="项目的照片工具有哪些细分权限?"><span class="mt-icon-article-faq"></span>项目的照片工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-direct-costs-tool" title="项目的直接成本工具有哪些细分权限?"><span class="mt-icon-article-faq"></span>项目的直接成本工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-action-plans-tool" title="项目的行动计划工具有哪些细分权限?"><span class="mt-icon-article-faq"></span>项目的行动计划工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-observations-tool" title="项目的观察任务工具有哪些细分权限?"><span class="mt-icon-article-faq"></span>项目的观察任务工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-funding-tool" title="项目的资金工具有哪细分权限?"><span class="mt-icon-article-faq"></span>项目的资金工具有哪细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-submittals-tool" title="项目的送审工具有哪些细分权限?"><span class="mt-icon-article-faq"></span>项目的送审工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-correspondence-tool" title="项目的通信工具有哪些细分权限?"><span class="mt-icon-article-faq"></span>项目的通信工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-projects-budget-tool" title="项目的预算工具有哪些细分权限?"><span class="mt-icon-article-faq"></span>项目的预算工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-dates-in-the-projects-admin-tool-mean" title="项目管理员工具中的日期是什么意思?"><span class="mt-icon-article-faq"></span>项目管理员工具中的日期是什么意思?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-project-level-documents-tool" title="项目级别文档工具有哪些细分权限?"><span class="mt-icon-article-faq"></span>项目级别文档工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-project-level-inspections-tool" title="项目级别检查任务工具有哪些细分权限?"><span class="mt-icon-article-faq"></span>项目级别检查任务工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-project-level-directory-tool" title="项目级别目录工具有哪些细分权限?"><span class="mt-icon-article-faq"></span>项目级别目录工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-project-level-admin-tool" title="项目级别管理员工具有哪些细分权限?"><span class="mt-icon-article-faq"></span>项目级别管理员工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-project-level-timesheets-tool" title="项目级别考勤表工具有哪些细分权限?"><span class="mt-icon-article-faq"></span>项目级别考勤表工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-the-project-level-schedule-tool" title="项目级别进度计划工具有哪些细分权限?"><span class="mt-icon-article-faq"></span>项目级别进度计划工具有哪些细分权限?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-change-order-tier-settings-in-project-financials" title="项目财务中有哪些不同的变更通知单层设置?"><span class="mt-icon-article-faq"></span>项目财务中有哪些不同的变更通知单层设置?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-filters-are-supported-in-the-portfolio-tools-views" title="项目集合工具的视图中支持哪些筛选器?"><span class="mt-icon-article-faq"></span>项目集合工具的视图中支持哪些筛选器?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E9.A2.84"></span><h5 title="预">预</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-fields-in-the-budget-tool-can-be-configured" title="预算工具中的哪些字段可以配置为必填、可选或隐藏?"><span class="mt-icon-article-faq"></span>预算工具中的哪些字段可以配置为必填、可选或隐藏?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-difference-between-a-budget-code-and-a-task-code" title="预算编号和任务编号有什么区别?"><span class="mt-icon-article-faq"></span>预算编号和任务编号有什么区别?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-budget-warning-banner-changes" title="预算警告横幅有哪些变化?"><span class="mt-icon-article-faq"></span>预算警告横幅有哪些变化?</a></li></ul></li><li class="mt-listing-no-break"><span id=".E9.BB.98"></span><h5 title="默">默</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-commitments-private-by-default" title="默认情况下合约是私密的吗?"><span class="mt-icon-article-faq"></span>默认情况下合约是私密的吗?</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-observation-types-used-for" title="默认观察任务类型有何用途?"><span class="mt-icon-article-faq"></span>默认观察任务类型有何用途?</a></li></ul></li></ul></div></div></div></div><script type="application/json" id="mt-localizations-guide-tabs-settings">/*<![CDATA[*/{"MindTouch.IDF3.label.guide.settings.classifications":"\u5206\u7c7b\u8bbe\u7f6e","MindTouch.IDF3.label.guide.settings.learningpath":"\u8def\u5f84\u8bbe\u7f6e","MindTouch.IDF3.label.overview.max.count":"\u4f59\u4e0b{0}\u5b57\u7b26\u3002","MindTouch.IDF3.label.overview.max.count.over":"\u8b66\u544a\uff1a{0}\u5b57\u7b26\u5c06\u88ab\u5220\u9664\u3002","MindTouch.LearningPath.dialog.remove.cancel":"\u53d6\u6d88","MindTouch.LearningPath.dialog.remove.confirm":"\u786e\u5b9a","MindTouch.LearningPath.dialog.remove.header":"Remove path","MindTouch.LearningPath.dialog.remove.message":"\u60a8\u5373\u5c06\u4ece\u672c\u6307\u5357\u4e2d\u5220\u9664\u6b64\u8def\u5f84\u3002"}/*]]>*/</script> <div> <script type="text/javascript">/*<![CDATA[*/throw "DekiScript UndefinedNameError: reference to undefined name \'showMore\'\nCallstack:\n at (faq), /content/body/div/pre[2], line 3, column 22\n";/*]]>*/</script> </div> <style>/*<![CDATA[*/body #deki-page-title::before {content: url("/@api/deki/pages/:ccaec8e887044385a1dfc2a3a0f71434/files/=tool-icon_faq.png");}/*]]>*/</style> <p> </p> </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="返回到本文章顶部">返回顶部</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://zh-sg.support.procore.com/customer-success/product-line-training-resources" title="产品线培训资源"><span>产品线培训资源</span></a> </li> <li class="mt-pagination-next"> <a class="mt-icon-next-article" href="https://zh-sg.support.procore.com/faq/analytics-general-faq" title="Analytics 2.0 一般常见问题"><span>Analytics 2.0 一般常见问题</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">© 版权所有 2025 Procore</li> <li class="grape-footer-powered-by"><a href="https://mindtouch.com/demo" class="mt-poweredby product " title="MindTouch" target="_blank"> 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">隐私声明</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">服务条款</a></li><li class="mt-custom-footer-link"><a href="https://www.procore.com/en-sg" 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">登录</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?_=647fae4d53b67bf67f97afdb98fefc6d58c17cd7:site_13854"></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) --> </body> </html>