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&amp;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">&#25903;&#25345;</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"> &#26032;&#21152;&#22369;&#65288;&#31616;&#20307;&#20013;&#25991;&#65289;</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&eacute;rica Latina (Espa&ntilde;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&ecirc;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&ccedil;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&ntilde;a (Espa&ntilde;ol)</a></li><li><a target="_self" href="https://fr.support.procore.com/" rel="external nofollow" class="link-https">France (Fran&ccedil;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">&#26032;&#21152;&#22369;&#65288;&#31616;&#20307;&#20013;&#25991;&#65289;</a></li><li><a target="_self" href="https://ja-jp.support.procore.com/" rel="external nofollow" class="link-https">&#26085;&#26412;&#65288;&#26085;&#26412;&#35486;&#65289;</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">&#32852;&#31995;&#20154;</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">&#30331;&#24405; Procore &#24212;&#29992;</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">&#26368;&#28909;&#38376;</a></li><li><a href="#.E6.9C.80.E9.AB.98.E8.AF.84.E5.88.86" rel="internal">&#26368;&#39640;&#35780;&#20998;</a></li><li><a href="#.E6.9C.80.E8.BF.91.E6.9B.B4.E6.96.B0" rel="internal">&#26368;&#36817;&#26356;&#26032;</a></li><li><a href="#.E6.9C.80.E8.BF.91.E6.B7.BB.E5.8A.A0" rel="internal">&#26368;&#36817;&#28155;&#21152;</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">&#19978;</a></li><li><a href="#.E4.B8.8E" rel="internal">&#19982;</a></li><li><a href="#.E4.B8.AA" rel="internal">&#20010;</a></li><li><a href="#.E4.B8.BA" rel="internal">&#20026;</a></li><li><a href="#.E4.B8.BB" rel="internal">&#20027;</a></li><li><a href="#.E4.BA.8B" rel="internal">&#20107;</a></li><li><a href="#.E4.BA.BA" rel="internal">&#20154;</a></li><li><a href="#.E4.BB.80" rel="internal">&#20160;</a></li><li><a href="#.E4.BB.8E" rel="internal">&#20174;</a></li><li><a href="#.E4.BB.BB" rel="internal">&#20219;</a></li><li><a href="#.E4.BC.81" rel="internal">&#20225;</a></li><li><a href="#.E4.BC.9A" rel="internal">&#20250;</a></li><li><a href="#.E4.BC.A0" rel="internal">&#20256;</a></li><li><a href="#.E4.BC.B0" rel="internal">&#20272;</a></li><li><a href="#.E4.BD.9C" rel="internal">&#20316;</a></li><li><a href="#.E4.BD.BF" rel="internal">&#20351;</a></li><li><a href="#.E5.85.8D" rel="internal">&#20813;</a></li><li><a href="#.E5.85.AC" rel="internal">&#20844;</a></li><li><a href="#.E5.85.B3" rel="internal">&#20851;</a></li><li><a href="#.E5.88.9B" rel="internal">&#21019;</a></li><li><a href="#.E5.8D.8F" rel="internal">&#21327;</a></li><li><a href="#.E5.8F.91" rel="internal">&#21457;</a></li><li><a href="#.E5.8F.98" rel="internal">&#21464;</a></li><li><a href="#.E5.8F.AF" rel="internal">&#21487;</a></li><li><a href="#.E5.90.88" rel="internal">&#21512;</a></li><li><a href="#.E5.90.AF" rel="internal">&#21551;</a></li><li><a href="#.E5.93.AA" rel="internal">&#21738;</a></li><li><a href="#.E5.9B.BE" rel="internal">&#22270;</a></li><li><a href="#.E5.9C.A8" rel="internal">&#22312;</a></li><li><a href="#.E5.A4.9A" rel="internal">&#22810;</a></li><li><a href="#.E5.A6.82" rel="internal">&#22914;</a></li><li><a href="#.E5.AF.B9" rel="internal">&#23545;</a></li><li><a href="#.E5.AF.BC" rel="internal">&#23548;</a></li><li><a href="#.E5.B0.86" rel="internal">&#23558;</a></li><li><a href="#.E5.B0.9D" rel="internal">&#23581;</a></li><li><a href="#.E5.B0.BE" rel="internal">&#23614;</a></li><li><a href="#.E5.B7.A5" rel="internal">&#24037;</a></li><li><a href="#.E5.BA.94" rel="internal">&#24212;</a></li><li><a href="#.E5.BB.BA" rel="internal">&#24314;</a></li><li><a href="#.E5.BD.93" rel="internal">&#24403;</a></li><li><a href="#.E5.BE.85" rel="internal">&#24453;</a></li><li><a href="#.E5.BF.98" rel="internal">&#24536;</a></li><li><a href="#.E6.88.90" rel="internal">&#25104;</a></li><li><a href="#.E6.88.91" rel="internal">&#25105;</a></li><li><a href="#.E6.8A.95" rel="internal">&#25237;</a></li><li><a href="#.E6.8E.A5" rel="internal">&#25509;</a></li><li><a href="#.E6.8F.90" rel="internal">&#25552;</a></li><li><a href="#.E6.96.87" rel="internal">&#25991;</a></li><li><a href="#.E6.97.A7" rel="internal">&#26087;</a></li><li><a href="#.E6.98.AF" rel="internal">&#26159;</a></li><li><a href="#.E6.9B.B4" rel="internal">&#26356;</a></li><li><a href="#.E6.9C.89" rel="internal">&#26377;</a></li><li><a href="#.E6.9D.83" rel="internal">&#26435;</a></li><li><a href="#.E6.9F.90" rel="internal">&#26576;</a></li><li><a href="#.E6.A3.80" rel="internal">&#26816;</a></li><li><a href="#.E6.AD.A3" rel="internal">&#27491;</a></li><li><a href="#.E6.AF.8F" rel="internal">&#27599;</a></li><li><a href="#.E6.B0.B4" rel="internal">&#27700;</a></li><li><a href="#.E6.B5.8B" rel="internal">&#27979;</a></li><li><a href="#.E7.85.A7" rel="internal">&#29031;</a></li><li><a href="#.E7.8E.B0" rel="internal">&#29616;</a></li><li><a href="#.E7.94.A8" rel="internal">&#29992;</a></li><li><a href="#.E7.9B.AE" rel="internal">&#30446;</a></li><li><a href="#.E7.A7.81" rel="internal">&#31169;</a></li><li><a href="#.E7.BB.9F" rel="internal">&#32479;</a></li><li><a href="#.E7.BB.BC" rel="internal">&#32508;</a></li><li><a href="#.E8.80.83" rel="internal">&#32771;</a></li><li><a href="#.E8.83.BD" rel="internal">&#33021;</a></li><li><a href="#.E8.87.AA" rel="internal">&#33258;</a></li><li><a href="#.E8.A1.8C" rel="internal">&#34892;</a></li><li><a href="#.E8.A1.A8" rel="internal">&#34920;</a></li><li><a href="#.E8.A7.81" rel="internal">&#35265;</a></li><li><a href="#.E8.A7.82" rel="internal">&#35266;</a></li><li><a href="#.E8.A7.84" rel="internal">&#35268;</a></li><li><a href="#.E8.B0.81" rel="internal">&#35841;</a></li><li><a href="#.E8.B5.84" rel="internal">&#36164;</a></li><li><a href="#.E9.80.81" rel="internal">&#36865;</a></li><li><a href="#.E9.80.9A" rel="internal">&#36890;</a></li><li><a href="#.E9.85.8D" rel="internal">&#37197;</a></li><li><a href="#.E9.A1.B9" rel="internal">&#39033;</a></li><li><a href="#.E9.A2.84" rel="internal">&#39044;</a></li><li><a href="#.E9.BB.98" rel="internal">&#40664;</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="&#26597;&#30475;&#31934;&#36873;"><a href="#df5aaebf-d046-55b8-8253-ab237032e07d" class="mt-guide-tab-link mt-no-scroll" data-ga-label="Tab Featured_articles 1">&#26597;&#30475;&#31934;&#36873;</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="&#25353;&#26631;&#35760;&#26597;&#30475;"><a href="#c2533a44-6e3a-1cae-a973-5418fa0eac8b" class="mt-guide-tab-link mt-no-scroll" data-ga-label="Tab Tag_directory 2">&#25353;&#26631;&#35760;&#26597;&#30475;</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="&#26597;&#30475; A-Z"><a href="#5fbb553d-7d81-724a-6cb1-a768eb930400" class="mt-guide-tab-link mt-no-scroll" data-ga-label="Tab Article_directory 3">&#26597;&#30475; 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>&#26368;&#28909;&#38376;</h5><span class="mt-note">&#65288;&#26597;&#30475;&#27425;&#25968;&#65289;</span><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-rfi" title="&#20160;&#20040;&#26159; RFI&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159; RFI&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-punch-list" title="&#20160;&#20040;&#26159;&#23614;&#39033;&#28165;&#21333;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#23614;&#39033;&#28165;&#21333;&#65311;</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="&#22914;&#20309;&#39564;&#35777;&#28595;&#22823;&#21033;&#20122;&#21830;&#19994;&#32534;&#21495; (ABN)&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#39564;&#35777;&#28595;&#22823;&#21033;&#20122;&#21830;&#19994;&#32534;&#21495; (ABN)&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-blind-bidding" title="&#20160;&#20040;&#26159;&#25237;&#30450;&#26631;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#25237;&#30450;&#26631;&#65311;</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="&#25105;&#21487;&#20197;&#22312; Procore &#20013;&#26356;&#25913;&#20844;&#21496;&#12289;&#39033;&#30446;&#25110;&#29992;&#25143;&#35821;&#35328;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#22312; Procore &#20013;&#26356;&#25913;&#20844;&#21496;&#12289;&#39033;&#30446;&#25110;&#29992;&#25143;&#35821;&#35328;&#21527;&#65311;</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 &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#21644; IdP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>SP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#21644; IdP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-portfolio-financials" title="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OSHA] &#19978;&#38145;/&#25346;&#29260;&#31243;&#24207;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OSHA] &#19978;&#38145;/&#25346;&#29260;&#31243;&#24207;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-project-cost-reporting-in-portfolio-financials" title="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#25104;&#26412;&#25253;&#21578;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#25104;&#26412;&#25253;&#21578;&#65311;</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="&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;</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="&#20351;&#29992;&#22810;&#20010;&#65288;&#20998;&#38454;&#27573;&#65289;&#39044;&#31639;&#19978;&#20256;&#30340;&#26368;&#20339;&#20570;&#27861;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#20351;&#29992;&#22810;&#20010;&#65288;&#20998;&#38454;&#27573;&#65289;&#39044;&#31639;&#19978;&#20256;&#30340;&#26368;&#20339;&#20570;&#27861;&#26159;&#20160;&#20040;&#65311;</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="&#24403;&#25105;&#20844;&#21496; Procore &#36134;&#25143;&#31105;&#29992;&#23458;&#25143;&#21512;&#21516;&#12289;&#36164;&#37329;&#25110;&#20027;&#21512;&#21516;&#24037;&#20855;&#26102;&#65292;&#25105;&#33021;&#22914;&#20309;&#35843;&#25972;&#39044;&#31639;&#35270;&#22270;&#65311;"><span class="mt-icon-article-faq"></span>&#24403;&#25105;&#20844;&#21496; Procore &#36134;&#25143;&#31105;&#29992;&#23458;&#25143;&#21512;&#21516;&#12289;&#36164;&#37329;&#25110;&#20027;&#21512;&#21516;&#24037;&#20855;&#26102;&#65292;&#25105;&#33021;&#22914;&#20309;&#35843;&#25972;&#39044;&#31639;&#35270;&#22270;&#65311;</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="&#22914;&#20309;&#23558;&#25105;&#30340;&#23614;&#39033;&#28165;&#21333;&#39033;&#30446;&#40664;&#35748;&#35774;&#20026;&#31169;&#23494;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#23558;&#25105;&#30340;&#23614;&#39033;&#28165;&#21333;&#39033;&#30446;&#40664;&#35748;&#35774;&#20026;&#31169;&#23494;&#65311;</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="&#22914;&#20309;&#25552;&#39640;&#35268;&#33539;&#20998;&#39033;&#35782;&#21035;&#30340;&#20934;&#30830;&#24615;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#25552;&#39640;&#35268;&#33539;&#20998;&#39033;&#35782;&#21035;&#30340;&#20934;&#30830;&#24615;&#65311;</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="&#25105;&#33021;&#21542;&#26356;&#26032; Procore Web &#24212;&#29992;&#31243;&#24207;&#19978;&#30340;&ldquo;&#23436;&#25104;&#30334;&#20998;&#27604;&rdquo;&#23383;&#27573;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#33021;&#21542;&#26356;&#26032; Procore Web &#24212;&#29992;&#31243;&#24207;&#19978;&#30340;&ldquo;&#23436;&#25104;&#30334;&#20998;&#27604;&rdquo;&#23383;&#27573;&#65311;</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>&#26368;&#39640;&#35780;&#20998;</h5><span class="mt-note">&#65288;&#35780;&#20998;&#65289;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#22242;&#38431;&#25104;&#21592;&#26080;&#27861;&#26597;&#30475;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#39033;&#30446;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#22242;&#38431;&#25104;&#21592;&#26080;&#27861;&#26597;&#30475;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#39033;&#30446;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#23637;&#24320;&ldquo;&#20013;&#26631;&#20540;&rdquo;&#34892;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#23637;&#24320;&ldquo;&#20013;&#26631;&#20540;&rdquo;&#34892;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#20174;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#23548;&#20986;&#39033;&#30446;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#20174;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#23548;&#20986;&#39033;&#30446;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#39033;&#30446;&#20013;&#30475;&#19981;&#21040;&#25152;&#26377;&#25910;&#34255;&#30340;&#24037;&#20855;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#39033;&#30446;&#20013;&#30475;&#19981;&#21040;&#25152;&#26377;&#25910;&#34255;&#30340;&#24037;&#20855;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-receive-email-from-procore" title="&#20026;&#20160;&#20040;&#25910;&#19981;&#21040; Procore &#30340;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25910;&#19981;&#21040; Procore &#30340;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#35748;&#35777;&#20998;&#26512;&#20013;&#30475;&#19981;&#21040;&#25105;&#30340;&#26576;&#20301;&#29992;&#25143;&#65311;"><span class="mt-icon-article-tutorial"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#35748;&#35777;&#20998;&#26512;&#20013;&#30475;&#19981;&#21040;&#25105;&#30340;&#26576;&#20301;&#29992;&#25143;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30475;&#19981;&#21040;&#25237;&#26631;&#23460;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30475;&#19981;&#21040;&#25237;&#26631;&#23460;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30475;&#19981;&#21040;&#21512;&#21516;&#23460;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30475;&#19981;&#21040;&#21512;&#21516;&#23460;&#65311;</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="&#20026;&#20160;&#20040;&#22312;&ldquo;&#25105;&#30340;&#20010;&#20154;&#36164;&#26009;&#35774;&#32622;&rdquo;&#20013;&#30475;&#19981;&#21040;&ldquo;&#25910;&#34255;&#22841;&rdquo;&#26631;&#31614;&#39029;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#22312;&ldquo;&#25105;&#30340;&#20010;&#20154;&#36164;&#26009;&#35774;&#32622;&rdquo;&#20013;&#30475;&#19981;&#21040;&ldquo;&#25910;&#34255;&#22841;&rdquo;&#26631;&#31614;&#39029;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-update-my-procore-app-ios" title="&#20026;&#20160;&#20040;&#26080;&#27861;&#26356;&#26032;&#25105;&#30340; Procore &#24212;&#29992;&#31243;&#24207;&#65311;(iOS)"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#26080;&#27861;&#26356;&#26032;&#25105;&#30340; Procore &#24212;&#29992;&#31243;&#24207;&#65311;(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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&ldquo;&#21516;&#27493;&rdquo;&#25110;&ldquo;&#21047;&#26032;&rdquo;&#25353;&#38062;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&ldquo;&#21516;&#27493;&rdquo;&#25110;&ldquo;&#21047;&#26032;&rdquo;&#25353;&#38062;&#65311;</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="&#20026;&#20160;&#20040;&#26080;&#27861;&#20851;&#38381;&#20174;&#36865;&#23457;&#24037;&#20855;&#21457;&#36865;&#30340;&ldquo;&#24453;&#21150;&#20107;&#39033;&rdquo;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#26080;&#27861;&#20851;&#38381;&#20174;&#36865;&#23457;&#24037;&#20855;&#21457;&#36865;&#30340;&ldquo;&#24453;&#21150;&#20107;&#39033;&rdquo;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312; Navisworks&reg; &#20013;&#20351;&#29992;&#20113;&#32418;&#32447;&#24037;&#20855;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312; Navisworks&reg; &#20013;&#20351;&#29992;&#20113;&#32418;&#32447;&#24037;&#20855;&#65311;</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="&#20026;&#20160;&#20040; Planroom &#20013;&#27809;&#26377;&#25105;&#30340;&#25237;&#26631;&#25991;&#20214;&#21253;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040; Planroom &#20013;&#27809;&#26377;&#25105;&#30340;&#25237;&#26631;&#25991;&#20214;&#21253;&#65311;</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>&#26368;&#36817;&#26356;&#26032;</h5><span class="mt-note">&#65288;&#26356;&#26032;&#26085;&#26399;&#65289;</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 &#20013;&#30340;&#36136;&#37327;&#21644;&#23433;&#20840;&#21435;&#21738;&#37324;&#20102;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#20013;&#30340;&#36136;&#37327;&#21644;&#23433;&#20840;&#21435;&#21738;&#37324;&#20102;&#65311;</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="&#22914;&#20309;&#22312;&#21457;&#31080;&#20013;&#20026;&#24211;&#23384;&#26448;&#26009;&#24320;&#20855;&#36134;&#21333;&#65311; &#65288;&#27979;&#35797;&#29256;&#65289;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#21457;&#31080;&#20013;&#20026;&#24211;&#23384;&#26448;&#26009;&#24320;&#20855;&#36134;&#21333;&#65311; &#65288;&#27979;&#35797;&#29256;&#65289;</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="&#26377;&#21738;&#20123;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#20197;&#21450;&#25105;&#20204;&#30340; ERP &#38598;&#25104;&#22914;&#20309;&#25903;&#25345;&#36825;&#20123;&#25104;&#26412;&#31867;&#22411;&#65311;"><span class="mt-icon-article-faq"></span>&#26377;&#21738;&#20123;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#20197;&#21450;&#25105;&#20204;&#30340; ERP &#38598;&#25104;&#22914;&#20309;&#25903;&#25345;&#36825;&#20123;&#25104;&#26412;&#31867;&#22411;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-having-problems-playing-training-videos" title="&#20026;&#20160;&#20040;&#25105;&#22312;&#25773;&#25918;&#22521;&#35757;&#35270;&#39057;&#26102;&#36935;&#21040;&#38382;&#39064;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#25773;&#25918;&#22521;&#35757;&#35270;&#39057;&#26102;&#36935;&#21040;&#38382;&#39064;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-draft-rfi" title="&#20160;&#20040;&#26159; RFI&ldquo;&#33609;&#31295;&rdquo;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159; RFI&ldquo;&#33609;&#31295;&rdquo;&#65311;</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="&#22914;&#20309;&#19968;&#27425;&#23558;&#22810;&#20010;&#25991;&#20214;&#28155;&#21152;&#21040;&#20256;&#36755;&#35760;&#24405;&#20013;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#19968;&#27425;&#23558;&#22810;&#20010;&#25991;&#20214;&#28155;&#21152;&#21040;&#20256;&#36755;&#35760;&#24405;&#20013;&#65311;</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="&#22914;&#20309;&#22312; Procore &#20013;&#35774;&#32622;&#21644;&#36820;&#36824;&#20998;&#21253;&#21830;&#21457;&#31080;&#30340;&#20445;&#30041;&#37329;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312; Procore &#20013;&#35774;&#32622;&#21644;&#36820;&#36824;&#20998;&#21253;&#21830;&#21457;&#31080;&#30340;&#20445;&#30041;&#37329;&#65311;</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="&#24037;&#20316;&#27969;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#31867;&#22411;&#30340;&#27493;&#39588;&#65311;"><span class="mt-icon-article-faq"></span>&#24037;&#20316;&#27969;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#31867;&#22411;&#30340;&#27493;&#39588;&#65311;</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="&#25105;&#24212;&#35813;&#23558;&#21738;&#20123;&#39044;&#31639;&#35270;&#22270;&#28155;&#21152;&#21040;&#25105;&#30340; Procore &#39033;&#30446;&#20013;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#24212;&#35813;&#23558;&#21738;&#20123;&#39044;&#31639;&#35270;&#22270;&#28155;&#21152;&#21040;&#25105;&#30340; Procore &#39033;&#30446;&#20013;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#22242;&#38431;&#25104;&#21592;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#26435;&#38480;&#32423;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#22242;&#38431;&#25104;&#21592;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#26435;&#38480;&#32423;&#21035;&#65311;</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 &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procore-bim" title="&#20160;&#20040;&#26159; Procore BIM&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159; Procore BIM&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-uncategorized-invoices-in-portfolio-financials" title="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#26410;&#20998;&#31867;&#21457;&#31080;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#26410;&#20998;&#31867;&#21457;&#31080;&#65311;</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="&#25105;&#20204;&#23558;&#21738;&#20123;&#22495;&#28155;&#21152;&#21040;&#25105;&#20204;&#32593;&#32476;&#30340;&ldquo;&#20801;&#35768;&#21517;&#21333;&rdquo;&#20013;&#20197;&#30830;&#20445;&#35775;&#38382; Procore&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#20204;&#23558;&#21738;&#20123;&#22495;&#28155;&#21152;&#21040;&#25105;&#20204;&#32593;&#32476;&#30340;&ldquo;&#20801;&#35768;&#21517;&#21333;&rdquo;&#20013;&#20197;&#30830;&#20445;&#35775;&#38382; Procore&#65311;</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="&#23558;&#25991;&#20214;&#19978;&#20256;&#21040;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#26102;&#65292;Procore &#21487;&#20197;&#33258;&#21160;&#22635;&#20805;&#20160;&#20040;&#25968;&#25454;&#65311;"><span class="mt-icon-article-faq"></span>&#23558;&#25991;&#20214;&#19978;&#20256;&#21040;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#26102;&#65292;Procore &#21487;&#20197;&#33258;&#21160;&#22635;&#20805;&#20160;&#20040;&#25968;&#25454;&#65311;</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>&#26368;&#36817;&#28155;&#21152;</h5><span class="mt-note">&#65288;&#21019;&#24314;&#26085;&#26399;&#65289;</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="&#39044;&#31639;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-faq"></span>&#39044;&#31639;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#24403;&#25105;&#23558;&#25991;&#26723;&#31649;&#29702;&#25991;&#20214;&#23548;&#20837;&#22270;&#32440;&#24037;&#20855;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#24403;&#25105;&#23558;&#25991;&#26723;&#31649;&#29702;&#25991;&#20214;&#23548;&#20837;&#22270;&#32440;&#24037;&#20855;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-tools-can-attach-document-management-files" title="&#21738;&#20123;&#24037;&#20855;&#21487;&#20197;&#28155;&#21152;&#25991;&#26723;&#31649;&#29702;&#25991;&#20214;&#65311;"><span class="mt-icon-article-faq"></span>&#21738;&#20123;&#24037;&#20855;&#21487;&#20197;&#28155;&#21152;&#25991;&#26723;&#31649;&#29702;&#25991;&#20214;&#65311;</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="&#25991;&#26723;&#31649;&#29702;&#38468;&#20214;&#21644;&#26469;&#33258;&#20854;&#20182;&#24037;&#20855;&#30340;&#38468;&#20214;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>&#25991;&#26723;&#31649;&#29702;&#38468;&#20214;&#21644;&#26469;&#33258;&#20854;&#20182;&#24037;&#20855;&#30340;&#38468;&#20214;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#20851;&#20110; Procore Analytics 1.0 &#30340;&#24323;&#29992;&#65292;&#25105;&#38656;&#35201;&#20102;&#35299;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20851;&#20110; Procore Analytics 1.0 &#30340;&#24323;&#29992;&#65292;&#25105;&#38656;&#35201;&#20102;&#35299;&#20160;&#20040;&#65311;</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="&#20351;&#29992;&#22270;&#32440;&#26631;&#35760;&#36827;&#34892;&#22797;&#21046;&#21644;&#22797;&#21046;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>&#20351;&#29992;&#22270;&#32440;&#26631;&#35760;&#36827;&#34892;&#22797;&#21046;&#21644;&#22797;&#21046;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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 &#20013;&#30340;&#22320;&#22270;&#25903;&#25345;&#21738;&#20123;&#24037;&#20855;&#65311;"><span class="mt-icon-article-reference"></span>Procore &#20013;&#30340;&#22320;&#22270;&#25903;&#25345;&#21738;&#20123;&#24037;&#20855;&#65311;</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 &#22320;&#22270;&#26377;&#21738;&#20123;&#21487;&#35265;&#24615;&#35774;&#32622;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#22320;&#22270;&#26377;&#21738;&#20123;&#21487;&#35265;&#24615;&#35774;&#32622;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-conditional-logic-within-the-inspections-tool" title="&#20160;&#20040;&#26159;&#26816;&#26597;&#20219;&#21153;&#24037;&#20855;&#20013;&#30340;&#26465;&#20214;&#36923;&#36753;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#26816;&#26597;&#20219;&#21153;&#24037;&#20855;&#20013;&#30340;&#26465;&#20214;&#36923;&#36753;&#65311;</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 &#20013;&#30340;&#39033;&#22914;&#20309;&#22312;&#22320;&#22270;&#19978;&#26174;&#31034;&#65311;"><span class="mt-icon-article-reference"></span>Procore &#20013;&#30340;&#39033;&#22914;&#20309;&#22312;&#22320;&#22270;&#19978;&#26174;&#31034;&#65311;</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="&#21487;&#20197;&#22312;&#31227;&#21160;&#35774;&#22791;&#19978;&#23558;&#21738;&#20123;&#24037;&#20855;&#29992;&#20110;&#38750;&#27963;&#21160;&#39033;&#30446;&#65311;"><span class="mt-icon-article-faq"></span>&#21487;&#20197;&#22312;&#31227;&#21160;&#35774;&#22791;&#19978;&#23558;&#21738;&#20123;&#24037;&#20855;&#29992;&#20110;&#38750;&#27963;&#21160;&#39033;&#30446;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-insights-calculated" title="&#35265;&#35299;&#26159;&#22914;&#20309;&#35745;&#31639;&#30340;&#65311;"><span class="mt-icon-article-reference"></span>&#35265;&#35299;&#26159;&#22914;&#20309;&#35745;&#31639;&#30340;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/inspection-requirements-general-faq" title="&#26816;&#26597;&#20219;&#21153;&#35201;&#27714;:&#19968;&#33324;&#24120;&#35265;&#38382;&#39064;"><span class="mt-icon-article-reference"></span>&#26816;&#26597;&#20219;&#21153;&#35201;&#27714;:&#19968;&#33324;&#24120;&#35265;&#38382;&#39064;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-standard-trades-are-available-in-procore" title="Procore &#20013;&#25552;&#20379;&#21738;&#20123;&#26631;&#20934;&#34892;&#19994;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#20013;&#25552;&#20379;&#21738;&#20123;&#26631;&#20934;&#34892;&#19994;&#65311;</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 &#20013;&#30340;&#39033;&#30446;&#24037;&#20855;&#26377;&#21738;&#20123;&#35774;&#32622;&#21487;&#29992;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#20013;&#30340;&#39033;&#30446;&#24037;&#20855;&#26377;&#21738;&#20123;&#35774;&#32622;&#21487;&#29992;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#22914;&#20309;&#26356;&#26032;&#34892;&#21160;&#35745;&#21010;&#39033;&#29366;&#24577;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26356;&#26032;&#34892;&#21160;&#35745;&#21010;&#39033;&#29366;&#24577;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-action-plan-verification-methods" title="&#20160;&#20040;&#26159;&#40664;&#35748;&#34892;&#21160;&#35745;&#21010;&#39564;&#35777;&#26041;&#27861;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#40664;&#35748;&#34892;&#21160;&#35745;&#21010;&#39564;&#35777;&#26041;&#27861;&#65311;</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="&#39033;&#30446;&#30340;&#34892;&#21160;&#35745;&#21010;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#34892;&#21160;&#35745;&#21010;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-completed-action-plan-receiver" title="&#20160;&#20040;&#26159;&ldquo;&#24050;&#23436;&#25104;&#34892;&#21160;&#35745;&#21010;&#30340;&#25509;&#25910;&#32773;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&ldquo;&#24050;&#23436;&#25104;&#34892;&#21160;&#35745;&#21010;&#30340;&#25509;&#25910;&#32773;&rdquo;&#65311;</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 &#20013;&#30340;&ldquo;&#32852;&#31995;&#20154;&rdquo;&#26159;&#20160;&#20040;&#65311;&#21738;&#20123;&#39033;&#30446;&#24037;&#20855;&#25903;&#25345;&#27492;&#27010;&#24565;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&ldquo;&#32852;&#31995;&#20154;&rdquo;&#26159;&#20160;&#20040;&#65311;&#21738;&#20123;&#39033;&#30446;&#24037;&#20855;&#25903;&#25345;&#27492;&#27010;&#24565;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-action-plan-approver" title="&#20160;&#20040;&#26159;&ldquo;&#34892;&#21160;&#35745;&#21010;&#23457;&#25209;&#32773;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&ldquo;&#34892;&#21160;&#35745;&#21010;&#23457;&#25209;&#32773;&rdquo;&#65311;</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="&#20160;&#20040;&#26159;&#34892;&#21160;&#35745;&#21010;&#20013;&#30340;&ldquo;&#35745;&#21010;&#32463;&#29702;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#34892;&#21160;&#35745;&#21010;&#20013;&#30340;&ldquo;&#35745;&#21010;&#32463;&#29702;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-blocking-functionality-in-an-action-plan" title="&#20160;&#20040;&#26159;&#34892;&#21160;&#35745;&#21010;&#20013;&#30340;&ldquo;&#38145;&#23450;&#21151;&#33021;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#34892;&#21160;&#35745;&#21010;&#20013;&#30340;&ldquo;&#38145;&#23450;&#21151;&#33021;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;</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="&#34892;&#21160;&#35745;&#21010;&#20309;&#26102;&#36716;&#25442;&#20026;&ldquo;&#32534;&#36753;&rdquo;&#25110;&ldquo;&#26597;&#30475;&rdquo;&#27169;&#24335;&#65311;"><span class="mt-icon-article-none"></span>&#34892;&#21160;&#35745;&#21010;&#20309;&#26102;&#36716;&#25442;&#20026;&ldquo;&#32534;&#36753;&rdquo;&#25110;&ldquo;&#26597;&#30475;&rdquo;&#27169;&#24335;&#65311;</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="&#34892;&#21160;&#35745;&#21010;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#34892;&#21160;&#35745;&#21010;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</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="&#22914;&#20309;&#23558;&#25105;&#30340;&#20027;&#21512;&#21516;&#19982; Acumatica &#25110;MYOB Advanced Construction&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#25105;&#30340;&#20027;&#21512;&#21516;&#19982; Acumatica &#25110;MYOB Advanced Construction&#21516;&#27493;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;</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="&#21512;&#32422;&ldquo;&#26631;&#39064;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&ldquo;&#26631;&#39064;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#24403;&#39033;&#34987; ERP &#25298;&#32477;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#39033;&#34987; ERP &#25298;&#32477;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#65311;</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="&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</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="&#22914;&#20309;&#23558;&#25105;&#30340;&#20027;&#21512;&#21516;&#19982; Acumatica &#25110;MYOB Advanced Construction&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#25105;&#30340;&#20027;&#21512;&#21516;&#19982; Acumatica &#25110;MYOB Advanced Construction&#21516;&#27493;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;</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="&#21512;&#32422;&ldquo;&#26631;&#39064;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&ldquo;&#26631;&#39064;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#24403;&#39033;&#34987; ERP &#25298;&#32477;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#39033;&#34987; ERP &#25298;&#32477;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#65311;</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="&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;</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="&#26159;&#21542;&#21487;&#20197;&#23558;&#33258;&#23450;&#20041;&#32454;&#20998;&#24212;&#29992;&#20110;&#29616;&#26377;&#30340;&#38750; WBS &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#26159;&#21542;&#21487;&#20197;&#23558;&#33258;&#23450;&#20041;&#32454;&#20998;&#24212;&#29992;&#20110;&#29616;&#26377;&#30340;&#38750; WBS &#39033;&#30446;&#65311;</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="&#25105;&#21487;&#20197;&#22312; Procore &#20013;&#26356;&#25913;&#20844;&#21496;&#12289;&#39033;&#30446;&#25110;&#29992;&#25143;&#35821;&#35328;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312; Procore &#20013;&#26356;&#25913;&#20844;&#21496;&#12289;&#39033;&#30446;&#25110;&#29992;&#25143;&#35821;&#35328;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#38459;&#27490;&#22312;&#21608;&#26411;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#38459;&#27490;&#22312;&#21608;&#26411;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#21527;&#65311;</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="&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;</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 &#30340;&#21333;&#28857;&#30331;&#24405;&#38598;&#25104;&#25903;&#25345;&#21333;&#20010;&#22495;&#36824;&#26159;&#22810;&#20010;&#22495;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#21333;&#28857;&#30331;&#24405;&#38598;&#25104;&#25903;&#25345;&#21333;&#20010;&#22495;&#36824;&#26159;&#22810;&#20010;&#22495;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#22914;&#20309;&#30830;&#23450;&#22320;&#22336;&#30340;&#32428;&#24230;&#21644;&#32463;&#24230;&#20540;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#30830;&#23450;&#22320;&#22336;&#30340;&#32428;&#24230;&#21644;&#32463;&#24230;&#20540;&#65311;</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="&#22914;&#20309;&#20026;&#24037;&#20316;&#26085;&#24535;&#21551;&#29992;&#20854;&#20182;&#21171;&#21160;&#21147;&#20154;&#24037;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#24037;&#20316;&#26085;&#24535;&#21551;&#29992;&#20854;&#20182;&#21171;&#21160;&#21147;&#20154;&#24037;&#31867;&#22411;&#65311;</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="&#22914;&#20309;&#36319;&#36394;&#21464;&#26356;&#20107;&#20214;&#30340;&#38750;&#21512;&#32422;&#25104;&#26412;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#36319;&#36394;&#21464;&#26356;&#20107;&#20214;&#30340;&#38750;&#21512;&#32422;&#25104;&#26412;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-will-configured-fieldsets-affect-my-existing-projects" title="&#37197;&#32622;&#30340;&#23383;&#27573;&#38598;&#23558;&#22914;&#20309;&#24433;&#21709;&#29616;&#26377;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#37197;&#32622;&#30340;&#23383;&#27573;&#38598;&#23558;&#22914;&#20309;&#24433;&#21709;&#29616;&#26377;&#39033;&#30446;&#65311;</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="&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</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="&#26377;&#21738;&#20123;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#20197;&#21450;&#25105;&#20204;&#30340; ERP &#38598;&#25104;&#22914;&#20309;&#25903;&#25345;&#36825;&#20123;&#25104;&#26412;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#26377;&#21738;&#20123;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#20197;&#21450;&#25105;&#20204;&#30340; ERP &#38598;&#25104;&#22914;&#20309;&#25903;&#25345;&#36825;&#20123;&#25104;&#26412;&#31867;&#22411;&#65311;</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="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-project-roles" title="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#39033;&#30446;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#39033;&#30446;&#35282;&#33394;&#65311;</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="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#37096;&#20998;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#37096;&#20998;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-types" title="Procore &#26377;&#21738;&#20123;&#40664;&#35748;&#25104;&#26412;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>Procore &#26377;&#21738;&#20123;&#40664;&#35748;&#25104;&#26412;&#31867;&#22411;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-standard-budget-views" title="&#20160;&#20040;&#26159; Procore &#30340;&#26631;&#20934;&#39044;&#31639;&#35270;&#22270;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#30340;&#26631;&#20934;&#39044;&#31639;&#35270;&#22270;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-production-quantities" title="&#20160;&#20040;&#26159;&ldquo;&#29983;&#20135;&#25968;&#37327;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&ldquo;&#29983;&#20135;&#25968;&#37327;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-segments-and-segment-items" title="&#20160;&#20040;&#26159;&#32454;&#20998;&#21644;&#32454;&#20998;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32454;&#20998;&#21644;&#32454;&#20998;&#39033;&#65311;</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 &#30340;&ldquo;&#38468;&#24405;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#38468;&#24405;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#20844;&#21578;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#20844;&#21578;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#21464;&#26356;&#35831;&#27714;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#21464;&#26356;&#35831;&#27714;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#23458;&#25143;&#25351;&#31034;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#23458;&#25143;&#25351;&#31034;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#32422;&#26463;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#32422;&#26463;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#25552;&#26089;&#35686;&#21578;&#36890;&#30693;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#25552;&#26089;&#35686;&#21578;&#36890;&#30693;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#24310;&#26399;&#30003;&#35831;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#24310;&#26399;&#30003;&#35831;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#19968;&#33324;&#36890;&#20449;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#19968;&#33324;&#36890;&#20449;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#32463;&#39564;&#25945;&#35757;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#32463;&#39564;&#25945;&#35757;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#24847;&#21521;&#20070;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#24847;&#21521;&#20070;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#20449;&#20989;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#20449;&#20989;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#26448;&#26009;&#35831;&#27714;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#26448;&#26009;&#35831;&#27714;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#32531;&#35299;&#35745;&#21010;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#32531;&#35299;&#35745;&#21010;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#24310;&#36831;&#36890;&#30693;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#24310;&#36831;&#36890;&#30693;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#24320;&#24037;&#36890;&#30693;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#24320;&#24037;&#36890;&#30693;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#25187;&#27454;&#36890;&#30693;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#25187;&#27454;&#36890;&#30693;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#35768;&#21487;&#35831;&#27714;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#35768;&#21487;&#35831;&#27714;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#39033;&#30446;&#35831;&#27714;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#39033;&#30446;&#35831;&#27714;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#39118;&#38505;&#35782;&#21035;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#39118;&#38505;&#35782;&#21035;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#29616;&#22330;&#25351;&#31034;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#29616;&#22330;&#25351;&#31034;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#20256;&#36755;&#35760;&#24405;&rdquo;&#27169;&#26495;&#36890;&#20449; &#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#20256;&#36755;&#35760;&#24405;&rdquo;&#27169;&#26495;&#36890;&#20449; &#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#20013;&#30340;&#40664;&#35748;&#39033;&#30446;&#38454;&#27573;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#40664;&#35748;&#39033;&#30446;&#38454;&#27573;&#26159;&#20160;&#20040;&#65311;</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="&#25105;&#20204;&#24212;&#35813;&#20026;&#20844;&#21496;&#30340;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#21019;&#24314;&#21738;&#20123;&#33258;&#23450;&#20041;&#32454;&#20998;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#20204;&#24212;&#35813;&#20026;&#20844;&#21496;&#30340;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#21019;&#24314;&#21738;&#20123;&#33258;&#23450;&#20041;&#32454;&#20998;&#65311;</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="&#39033;&#30446;&#31649;&#29702;&#21592;&#24037;&#20855;&#20013;&#30340;&#26085;&#26399;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#31649;&#29702;&#21592;&#24037;&#20855;&#20013;&#30340;&#26085;&#26399;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-fieldset-configurations-are-recommended-for-configurable-fieldsets" title="&#23545;&#20110;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#25512;&#33616;&#20351;&#29992;&#21738;&#20123;&#37197;&#32622;&#65311;"><span class="mt-icon-article-none"></span>&#23545;&#20110;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#25512;&#33616;&#20351;&#29992;&#21738;&#20123;&#37197;&#32622;&#65311;</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 &#24037;&#20855;&#20013;&#30340;&#33258;&#23450;&#20041;&#23383;&#27573;&#26377;&#21738;&#20123;&#23383;&#27573;&#31867;&#22411;&#21487;&#29992;&#65311;"><span class="mt-icon-article-none"></span>Procore &#24037;&#20855;&#20013;&#30340;&#33258;&#23450;&#20041;&#23383;&#27573;&#26377;&#21738;&#20123;&#23383;&#27573;&#31867;&#22411;&#21487;&#29992;&#65311;</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="&#23558;&#21738;&#20123;&#20869;&#23481;&#20174;&#39033;&#30446;&#27169;&#26495;&#22797;&#21046;&#21040;&#26032;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#23558;&#21738;&#20123;&#20869;&#23481;&#20174;&#39033;&#30446;&#27169;&#26495;&#22797;&#21046;&#21040;&#26032;&#39033;&#30446;&#65311;</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="&#39033;&#30446;&#32423;&#21035;&#31649;&#29702;&#21592;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#32423;&#21035;&#31649;&#29702;&#21592;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-project-template" title="&#20160;&#20040;&#26159;&#39033;&#30446;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#39033;&#30446;&#27169;&#26495;&#65311;</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="&#39033;&#30446;&#21019;&#24314;&#39029;&#38754;&#19978;&#30340;&ldquo;Code&rdquo;&#23383;&#27573;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#21019;&#24314;&#39029;&#38754;&#19978;&#30340;&ldquo;Code&rdquo;&#23383;&#27573;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#20013;&#30340;&#40664;&#35748;&#32454;&#20998;&#21644;&#33258;&#23450;&#20041;&#32454;&#20998;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#20013;&#30340;&#40664;&#35748;&#32454;&#20998;&#21644;&#33258;&#23450;&#20041;&#32454;&#20998;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#33258;&#23450;&#20041;&#23383;&#27573;&#21644;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#33258;&#23450;&#20041;&#23383;&#27573;&#21644;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#20160;&#20040;&#26159; Procore&#25554;&#20214;&#65292;&#26377;&#20309;&#29992;&#36884;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore&#25554;&#20214;&#65292;&#26377;&#20309;&#29992;&#36884;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-work-breakdown-structure-wbs" title="&#20160;&#20040;&#26159;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500; (WBS)&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500; (WBS)&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-languages-are-available-in-procore" title="Procore &#20013;&#26377;&#21738;&#20123;&#35821;&#35328;&#21487;&#29992;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#26377;&#21738;&#20123;&#35821;&#35328;&#21487;&#29992;&#65311;</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 &#20013;&#30340;&#39033;&#30446;&#24037;&#20855;&#26377;&#21738;&#20123;&#35774;&#32622;&#21487;&#29992;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#39033;&#30446;&#24037;&#20855;&#26377;&#21738;&#20123;&#35774;&#32622;&#21487;&#29992;&#65311;</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="&#33258;&#23450;&#20041; &#39044;&#31639; &#35270;&#22270;&#20013;&#26377;&#21738;&#20123;&#28304;&#21015;&#65311;"><span class="mt-icon-article-none"></span>&#33258;&#23450;&#20041; &#39044;&#31639; &#35270;&#22270;&#20013;&#26377;&#21738;&#20123;&#28304;&#21015;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-standard-trades-are-available-in-procore" title="Procore &#20013;&#25552;&#20379;&#21738;&#20123;&#26631;&#20934;&#34892;&#19994;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#25552;&#20379;&#21738;&#20123;&#26631;&#20934;&#34892;&#19994;&#65311;</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="&#20316;&#19994;&#12289;&#29238;&#20316;&#19994;&#21644;&#23376;&#20316;&#19994;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#20316;&#19994;&#12289;&#29238;&#20316;&#19994;&#21644;&#23376;&#20316;&#19994;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;</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="&#32771;&#21220;&#34920;&#21644;&#25105;&#30340;&#24037;&#26102;&#24037;&#20855;&#23383;&#27573;&#38598;&#19978;&#30340;&#32534;&#21495;&#27169;&#26495;&#20174;&#20309;&#32780;&#26469;&#65311;"><span class="mt-icon-article-none"></span>&#32771;&#21220;&#34920;&#21644;&#25105;&#30340;&#24037;&#26102;&#24037;&#20855;&#23383;&#27573;&#38598;&#19978;&#30340;&#32534;&#21495;&#27169;&#26495;&#20174;&#20309;&#32780;&#26469;&#65311;</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="&quot;&#35268;&#33539;&#20998;&#39033;&quot;&#19979;&#25289;&#21015;&#34920;&#20013;&#30340;&#36873;&#39033;&#20174;&#20309;&#32780;&#26469;&#65311;"><span class="mt-icon-article-none"></span>&quot;&#35268;&#33539;&#20998;&#39033;&quot;&#19979;&#25289;&#21015;&#34920;&#20013;&#30340;&#36873;&#39033;&#20174;&#20309;&#32780;&#26469;&#65311;</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 &#30340; WBS &#20013;&ldquo;&#25104;&#26412;&#32534;&#21495;&rdquo;&#32454;&#20998;&#20013;&#30340;&ldquo;&#20998;&#37096;&rdquo;&#22312;&#21738;&#37324;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340; WBS &#20013;&ldquo;&#25104;&#26412;&#32534;&#21495;&rdquo;&#32454;&#20998;&#20013;&#30340;&ldquo;&#20998;&#37096;&rdquo;&#22312;&#21738;&#37324;&#65311;</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="&#25105;&#24212;&#35813;&#23558;&#21738;&#20123;&#39044;&#31639;&#35270;&#22270;&#28155;&#21152;&#21040;&#25105;&#30340; Procore &#39033;&#30446;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#24212;&#35813;&#23558;&#21738;&#20123;&#39044;&#31639;&#35270;&#22270;&#28155;&#21152;&#21040;&#25105;&#30340; Procore &#39033;&#30446;&#20013;&#65311;</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="&#34892;&#21160;&#35745;&#21010;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#34892;&#21160;&#35745;&#21010;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#39044;&#31639;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#39044;&#31639;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#21512;&#32422;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#21327;&#35843;&#38382;&#39064;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#21327;&#35843;&#38382;&#39064;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#36890;&#20449;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#36890;&#20449;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#24037;&#20316;&#26085;&#24535;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#24037;&#20316;&#26085;&#24535;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#30446;&#24405;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#30446;&#24405;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#25991;&#26723;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#25991;&#26723;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#22270;&#32440;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#22270;&#32440;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#20107;&#20214;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#20107;&#20214;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#26816;&#26597;&#20219;&#21153;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#26816;&#26597;&#20219;&#21153;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#21457;&#31080;&#25110;&#25353;&#36827;&#24230;&#25910;&#27454;&#36134;&#21333;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#36873;&#22635;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#21457;&#31080;&#25110;&#25353;&#36827;&#24230;&#25910;&#27454;&#36134;&#21333;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#36873;&#22635;&#25110;&#38544;&#34255;&#65311;</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="&#25105;&#30340;&#24037;&#26102;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#30340;&#24037;&#26102;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#35266;&#23519;&#20219;&#21153;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#35266;&#23519;&#20219;&#21153;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#20027;&#21512;&#21516;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#20027;&#21512;&#21516;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#23614;&#39033;&#28165;&#21333;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#23614;&#39033;&#28165;&#21333;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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 &#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>RFI &#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#35268;&#33539;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#35268;&#33539;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#36865;&#23457;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#36865;&#23457;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#32771;&#21220;&#34920;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#32771;&#21220;&#34920;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#24037;&#26102;&#21644;&#26448;&#26009;&#21333;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#24037;&#26102;&#21644;&#26448;&#26009;&#21333;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#21019;&#24314;&#25110;&#26356;&#26032;&#39033;&#30446;&#39029;&#38754;&#19978;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#21019;&#24314;&#25110;&#26356;&#26032;&#39033;&#30446;&#39029;&#38754;&#19978;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-logos-appear-on-pdf-exports-in-procore" title="&#21738;&#20123;&#24509;&#26631;&#20250;&#22312; Procore &#30340; PDF &#23548;&#20986;&#20013;&#26174;&#31034;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#24509;&#26631;&#20250;&#22312; Procore &#30340; PDF &#23548;&#20986;&#20013;&#26174;&#31034;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-platforms-support-azure-ad-sso" title="&#21738;&#20123; Procore &#24179;&#21488;&#25903;&#25345;Azure AD &#65288;Entra ID&#65289;&#21333;&#28857;&#30331;&#24405;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24179;&#21488;&#25903;&#25345;Azure AD &#65288;Entra ID&#65289;&#21333;&#28857;&#30331;&#24405;&#65311;</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="&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#20250;&#26356;&#26032;&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#20013;&#30340;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#20250;&#26356;&#26032;&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#20013;&#30340;&#25968;&#25454;&#65311;</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="&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#23558;&#29983;&#20135;&#25968;&#37327;&#28155;&#21152;&#21040;&#25105;&#30340;&#39033;&#30446;&#39044;&#31639;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#23558;&#29983;&#20135;&#25968;&#37327;&#28155;&#21152;&#21040;&#25105;&#30340;&#39033;&#30446;&#39044;&#31639;&#20013;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-classifications" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&ldquo;&#24037;&#31181;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&ldquo;&#24037;&#31181;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-work-breakdown-structure" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#65311;</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 &#30340;&#20027;&#21015;&#34920;&#20013;&#21253;&#21547;&#21738;&#20123;&#35745;&#37327;&#21333;&#20301;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#20027;&#21015;&#34920;&#20013;&#21253;&#21547;&#21738;&#20123;&#35745;&#37327;&#21333;&#20301;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#24037;&#20316;&#26085;&#24535;&#22825;&#27668;&#26085;&#24535;&#20013;&#19981;&#26174;&#31034;&#22825;&#27668;&#26465;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#24037;&#20316;&#26085;&#24535;&#22825;&#27668;&#26085;&#24535;&#20013;&#19981;&#26174;&#31034;&#22825;&#27668;&#26465;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-or-activate-procore-projects" title="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#25110;&#28608;&#27963; Procore &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#25110;&#28608;&#27963; Procore &#39033;&#30446;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-wbs-custom-segments" title="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21019;&#24314; WBS &#33258;&#23450;&#20041;&#32454;&#20998;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21019;&#24314; WBS &#33258;&#23450;&#20041;&#32454;&#20998;&#65311;</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="&#20026;&#20160;&#20040;&#26080;&#27861;&#30331;&#24405;&#35748;&#35777;&#20998;&#26512;&#20202;&#34920;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#26080;&#27861;&#30331;&#24405;&#35748;&#35777;&#20998;&#26512;&#20202;&#34920;&#26495;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#35748;&#35777;&#20998;&#26512;&#20013;&#30475;&#19981;&#21040;&#25105;&#30340;&#26576;&#20301;&#29992;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#35748;&#35777;&#20998;&#26512;&#20013;&#30475;&#19981;&#21040;&#25105;&#30340;&#26576;&#20301;&#29992;&#25143;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-certification-analytics-page-blank" title="&#20026;&#20160;&#20040;&#25105;&#30340;&#35748;&#35777;&#20998;&#26512;&#39029;&#38754;&#26159;&#31354;&#30333;&#30340;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#35748;&#35777;&#20998;&#26512;&#39029;&#38754;&#26159;&#31354;&#30333;&#30340;&#65311;</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 &#19968;&#33324;&#24120;&#35265;&#38382;&#39064;"><span class="mt-icon-article-none"></span>Analytics 2.0 &#19968;&#33324;&#24120;&#35265;&#38382;&#39064;</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 &#30340;&#26435;&#38480;&#22914;&#20309;&#24037;&#20316;&#65311;"><span class="mt-icon-article-none"></span>Analytics 2.0 &#30340;&#26435;&#38480;&#22914;&#20309;&#24037;&#20316;&#65311;</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="&#19982; Procore &#38598;&#25104;&#22914;&#20309;&#35775;&#38382;&#20844;&#21496;&#30340;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>&#19982; Procore &#38598;&#25104;&#22914;&#20309;&#35775;&#38382;&#20844;&#21496;&#30340;&#25968;&#25454;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/plug-icon-missing-marketplace-nav-how-to" title="&ldquo;&#25554;&#22836;&rdquo;&#22270;&#26631;&#24050;&#31227;&#38500;&#65292;&#25105;&#22914;&#20309;&#23548;&#33322;&#21040;&#24212;&#29992;&#21830;&#24215;&#65311;"><span class="mt-icon-article-none"></span>&ldquo;&#25554;&#22836;&rdquo;&#22270;&#26631;&#24050;&#31227;&#38500;&#65292;&#25105;&#22914;&#20309;&#23548;&#33322;&#21040;&#24212;&#29992;&#21830;&#24215;&#65311;</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="&#22914;&#20309;&#25552;&#39640;&#22270;&#32440;&#19978; OCR &#30340;&#20934;&#30830;&#24615;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#25552;&#39640;&#22270;&#32440;&#19978; OCR &#30340;&#20934;&#30830;&#24615;&#65311;</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="&#22914;&#20309;&#25552;&#39640;&#35268;&#33539;&#20998;&#39033;&#35782;&#21035;&#30340;&#20934;&#30830;&#24615;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#25552;&#39640;&#35268;&#33539;&#20998;&#39033;&#35782;&#21035;&#30340;&#20934;&#30830;&#24615;&#65311;</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="&#22914;&#20309;&#23558;&#20808;&#21069;&#20462;&#35746;&#20013;&#30340;&#26631;&#35760;&#24212;&#29992;&#21040;&#26032;&#20462;&#35746;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#20808;&#21069;&#20462;&#35746;&#20013;&#30340;&#26631;&#35760;&#24212;&#29992;&#21040;&#26032;&#20462;&#35746;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-construction-projects-schedule" title="&#20160;&#20040;&#26159;&#24314;&#35774;&#24037;&#31243;&#39033;&#30446;&#30340;&#36827;&#24230;&#35745;&#21010;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#24314;&#35774;&#24037;&#31243;&#39033;&#30446;&#30340;&#36827;&#24230;&#35745;&#21010;&#65311;</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="&#20351;&#29992;&#22270;&#32440;&#26631;&#35760;&#36827;&#34892;&#22797;&#21046;&#21644;&#22797;&#21046;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#20351;&#29992;&#22270;&#32440;&#26631;&#35760;&#36827;&#34892;&#22797;&#21046;&#21644;&#22797;&#21046;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#20010;&#20154;&#22270;&#32440;&#26631;&#35760;&#19982;&#24050;&#21457;&#24067;&#22270;&#32440;&#26631;&#35760;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#20010;&#20154;&#22270;&#32440;&#26631;&#35760;&#19982;&#24050;&#21457;&#24067;&#22270;&#32440;&#26631;&#35760;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#19978;&#20256;&#22270;&#32440;&#26102;&#65292;Procore &#21487;&#20197;&#33258;&#21160;&#22635;&#20805;&#21738;&#20123;&#23383;&#27573;&#65311;"><span class="mt-icon-article-none"></span>&#19978;&#20256;&#22270;&#32440;&#26102;&#65292;Procore &#21487;&#20197;&#33258;&#21160;&#22635;&#20805;&#21738;&#20123;&#23383;&#27573;&#65311;</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="&#19978;&#20256;&#35268;&#33539;&#26102;&#65292;Procore &#21487;&#20197;&#33258;&#21160;&#22635;&#20805;&#21738;&#20123;&#23383;&#27573;&#65311;"><span class="mt-icon-article-none"></span>&#19978;&#20256;&#35268;&#33539;&#26102;&#65292;Procore &#21487;&#20197;&#33258;&#21160;&#22635;&#20805;&#21738;&#20123;&#23383;&#27573;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-automatic-drawing-sheet-links-missing" title="&#20026;&#20160;&#20040;&#33258;&#21160;&#22270;&#32440;&#39029;&#38142;&#25509;&#20002;&#22833;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#33258;&#21160;&#22270;&#32440;&#39029;&#38142;&#25509;&#20002;&#22833;&#65311;</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="&#20160;&#20040;&#26159; Asta Powerproject &#20197;&#21450;&#23427;&#22914;&#20309;&#19982; Procore &#38598;&#25104;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Asta Powerproject &#20197;&#21450;&#23427;&#22914;&#20309;&#19982; Procore &#38598;&#25104;&#65311;</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 &#25903;&#25345;&#21738;&#20123; Asta Powerproject &#25991;&#20214;&#26684;&#24335;&#65311;"><span class="mt-icon-article-none"></span>Procore &#25903;&#25345;&#21738;&#20123; Asta Powerproject &#25991;&#20214;&#26684;&#24335;&#65311;</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="&#22914;&#26524;&#25105;&#20204;&#20844;&#21496;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#26159;&#21542;&#38656;&#35201;&#21019;&#24314; Procore &#29992;&#25143;&#36134;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#25105;&#20204;&#20844;&#21496;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#26159;&#21542;&#38656;&#35201;&#21019;&#24314; Procore &#29992;&#25143;&#36134;&#25143;&#65311;</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="&#22312;&#25105;&#30340; Procore &#20844;&#21496;&#36134;&#25143;&#20013;&#23454;&#26045; SSO &#20043;&#21069;&#65292;&#22914;&#20309;&#22312;&#27801;&#31665;&#29615;&#22659;&#20013;&#37197;&#32622; SSO &#20197;&#36827;&#34892;&#27979;&#35797;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#25105;&#30340; Procore &#20844;&#21496;&#36134;&#25143;&#20013;&#23454;&#26045; SSO &#20043;&#21069;&#65292;&#22914;&#20309;&#22312;&#27801;&#31665;&#29615;&#22659;&#20013;&#37197;&#32622; SSO &#20197;&#36827;&#34892;&#27979;&#35797;&#65311;</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="&#22914;&#20309;&#20351;&#29992;Microsoft Azure AD &#65288;Entra ID&#65289;&#21333;&#28857;&#30331;&#24405;&#26469;&#30331;&#24405; Procore&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20351;&#29992;Microsoft Azure AD &#65288;Entra ID&#65289;&#21333;&#28857;&#30331;&#24405;&#26469;&#30331;&#24405; Procore&#65311;</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="&#22914;&#20309;&#20351;&#29992; Procore &#35774;&#32622;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20351;&#29992; Procore &#35774;&#32622;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;</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="&#22914;&#20309;&#22312;&#20844;&#21496;&#30340; Procore &#21333;&#28857;&#30331;&#24405;&#37197;&#32622;&#35774;&#32622;&#20013;&#26356;&#26032;&#21363;&#23558;&#21040;&#26399;&#30340; x509 &#35777;&#20070;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#20844;&#21496;&#30340; Procore &#21333;&#28857;&#30331;&#24405;&#37197;&#32622;&#35774;&#32622;&#20013;&#26356;&#26032;&#21363;&#23558;&#21040;&#26399;&#30340; x509 &#35777;&#20070;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-single-sign-on-sso" title="&#20160;&#20040;&#26159;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-platforms-support-azure-ad-sso" title="&#21738;&#20123; Procore &#24179;&#21488;&#25903;&#25345;Azure AD &#65288;Entra ID&#65289;&#21333;&#28857;&#30331;&#24405;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24179;&#21488;&#25903;&#25345;Azure AD &#65288;Entra ID&#65289;&#21333;&#28857;&#30331;&#24405;&#65311;</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="&#22914;&#26524;&#25105;&#30340;&#20844;&#21496;&#24050;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#21487;&#20197;&#30452;&#25509;&#30331;&#24405; Procore Web &#24212;&#29992;&#31243;&#24207;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#25105;&#30340;&#20844;&#21496;&#24050;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#21487;&#20197;&#30452;&#25509;&#30331;&#24405; Procore Web &#24212;&#29992;&#31243;&#24207;&#21527;&#65311;</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="&#22914;&#26524;&#25105;&#20204;&#20844;&#21496;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#26159;&#21542;&#38656;&#35201;&#21019;&#24314; Procore &#29992;&#25143;&#36134;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#25105;&#20204;&#20844;&#21496;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#26159;&#21542;&#38656;&#35201;&#21019;&#24314; Procore &#29992;&#25143;&#36134;&#25143;&#65311;</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="&#22312;&#25105;&#30340; Procore &#20844;&#21496;&#36134;&#25143;&#20013;&#23454;&#26045; SSO &#20043;&#21069;&#65292;&#22914;&#20309;&#22312;&#27801;&#31665;&#29615;&#22659;&#20013;&#37197;&#32622; SSO &#20197;&#36827;&#34892;&#27979;&#35797;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#25105;&#30340; Procore &#20844;&#21496;&#36134;&#25143;&#20013;&#23454;&#26045; SSO &#20043;&#21069;&#65292;&#22914;&#20309;&#22312;&#27801;&#31665;&#29615;&#22659;&#20013;&#37197;&#32622; SSO &#20197;&#36827;&#34892;&#27979;&#35797;&#65311;</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="&#22914;&#20309;&#20351;&#29992;Microsoft Azure AD &#65288;Entra ID&#65289;&#21333;&#28857;&#30331;&#24405;&#26469;&#30331;&#24405; Procore&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20351;&#29992;Microsoft Azure AD &#65288;Entra ID&#65289;&#21333;&#28857;&#30331;&#24405;&#26469;&#30331;&#24405; Procore&#65311;</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="&#22914;&#20309;&#20351;&#29992; Procore &#35774;&#32622;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20351;&#29992; Procore &#35774;&#32622;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;</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="&#22914;&#20309;&#22312;&#20844;&#21496;&#30340; Procore &#21333;&#28857;&#30331;&#24405;&#37197;&#32622;&#35774;&#32622;&#20013;&#26356;&#26032;&#21363;&#23558;&#21040;&#26399;&#30340; x509 &#35777;&#20070;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#20844;&#21496;&#30340; Procore &#21333;&#28857;&#30331;&#24405;&#37197;&#32622;&#35774;&#32622;&#20013;&#26356;&#26032;&#21363;&#23558;&#21040;&#26399;&#30340; x509 &#35777;&#20070;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-single-sign-on-sso" title="&#20160;&#20040;&#26159;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;</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 &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#21644; IdP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>SP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#21644; IdP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-platforms-support-azure-ad-sso" title="&#21738;&#20123; Procore &#24179;&#21488;&#25903;&#25345;Azure AD &#65288;Entra ID&#65289;&#21333;&#28857;&#30331;&#24405;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24179;&#21488;&#25903;&#25345;Azure AD &#65288;Entra ID&#65289;&#21333;&#28857;&#30331;&#24405;&#65311;</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 &#25903;&#25345;&#21738;&#20123;&#21333;&#28857;&#30331;&#24405;&#36523;&#20221;&#25552;&#20379;&#21830;&#65311;"><span class="mt-icon-article-none"></span>Procore &#25903;&#25345;&#21738;&#20123;&#21333;&#28857;&#30331;&#24405;&#36523;&#20221;&#25552;&#20379;&#21830;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#20351;&#29992; SSO &#30331;&#24405;&#26102;&#25910;&#21040;&ldquo;&#26410;&#21457;&#29616;&#26377;&#29992;&#25143;&#20351;&#29992;&#32473;&#23450;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&rdquo;&#38169;&#35823;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#20351;&#29992; SSO &#30331;&#24405;&#26102;&#25910;&#21040;&ldquo;&#26410;&#21457;&#29616;&#26377;&#29992;&#25143;&#20351;&#29992;&#32473;&#23450;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&rdquo;&#38169;&#35823;&#65311;</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="&#22914;&#26524;&#25105;&#30340;&#20844;&#21496;&#24050;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#21487;&#20197;&#30452;&#25509;&#30331;&#24405; Procore Web &#24212;&#29992;&#31243;&#24207;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#25105;&#30340;&#20844;&#21496;&#24050;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#21487;&#20197;&#30452;&#25509;&#30331;&#24405; Procore Web &#24212;&#29992;&#31243;&#24207;&#21527;&#65311;</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="&#22914;&#26524;&#25105;&#20204;&#20844;&#21496;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#26159;&#21542;&#38656;&#35201;&#21019;&#24314; Procore &#29992;&#25143;&#36134;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#25105;&#20204;&#20844;&#21496;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#26159;&#21542;&#38656;&#35201;&#21019;&#24314; Procore &#29992;&#25143;&#36134;&#25143;&#65311;</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 &#30340;&#21333;&#28857;&#30331;&#24405;&#38598;&#25104;&#25903;&#25345;&#21333;&#20010;&#22495;&#36824;&#26159;&#22810;&#20010;&#22495;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#21333;&#28857;&#30331;&#24405;&#38598;&#25104;&#25903;&#25345;&#21333;&#20010;&#22495;&#36824;&#26159;&#22810;&#20010;&#22495;&#65311;</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="&#22312;&#25105;&#30340; Procore &#20844;&#21496;&#36134;&#25143;&#20013;&#23454;&#26045; SSO &#20043;&#21069;&#65292;&#22914;&#20309;&#22312;&#27801;&#31665;&#29615;&#22659;&#20013;&#37197;&#32622; SSO &#20197;&#36827;&#34892;&#27979;&#35797;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#25105;&#30340; Procore &#20844;&#21496;&#36134;&#25143;&#20013;&#23454;&#26045; SSO &#20043;&#21069;&#65292;&#22914;&#20309;&#22312;&#27801;&#31665;&#29615;&#22659;&#20013;&#37197;&#32622; SSO &#20197;&#36827;&#34892;&#27979;&#35797;&#65311;</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="&#22914;&#20309;&#20351;&#29992;Microsoft Azure AD &#65288;Entra ID&#65289;&#21333;&#28857;&#30331;&#24405;&#26469;&#30331;&#24405; Procore&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20351;&#29992;Microsoft Azure AD &#65288;Entra ID&#65289;&#21333;&#28857;&#30331;&#24405;&#26469;&#30331;&#24405; Procore&#65311;</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="&#22914;&#20309;&#20351;&#29992; Procore &#35774;&#32622;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20351;&#29992; Procore &#35774;&#32622;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;</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="&#22914;&#20309;&#22312;&#20844;&#21496;&#30340; Procore &#21333;&#28857;&#30331;&#24405;&#37197;&#32622;&#35774;&#32622;&#20013;&#26356;&#26032;&#21363;&#23558;&#21040;&#26399;&#30340; x509 &#35777;&#20070;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#20844;&#21496;&#30340; Procore &#21333;&#28857;&#30331;&#24405;&#37197;&#32622;&#35774;&#32622;&#20013;&#26356;&#26032;&#21363;&#23558;&#21040;&#26399;&#30340; x509 &#35777;&#20070;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-single-sign-on-sso" title="&#20160;&#20040;&#26159;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;</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 &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#21644; IdP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>SP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#21644; IdP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-platforms-support-azure-ad-sso" title="&#21738;&#20123; Procore &#24179;&#21488;&#25903;&#25345;Azure AD &#65288;Entra ID&#65289;&#21333;&#28857;&#30331;&#24405;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24179;&#21488;&#25903;&#25345;Azure AD &#65288;Entra ID&#65289;&#21333;&#28857;&#30331;&#24405;&#65311;</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 &#25903;&#25345;&#21738;&#20123;&#21333;&#28857;&#30331;&#24405;&#36523;&#20221;&#25552;&#20379;&#21830;&#65311;"><span class="mt-icon-article-none"></span>Procore &#25903;&#25345;&#21738;&#20123;&#21333;&#28857;&#30331;&#24405;&#36523;&#20221;&#25552;&#20379;&#21830;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#20351;&#29992; SSO &#30331;&#24405;&#26102;&#25910;&#21040;&ldquo;&#26410;&#21457;&#29616;&#26377;&#29992;&#25143;&#20351;&#29992;&#32473;&#23450;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&rdquo;&#38169;&#35823;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#20351;&#29992; SSO &#30331;&#24405;&#26102;&#25910;&#21040;&ldquo;&#26410;&#21457;&#29616;&#26377;&#29992;&#25143;&#20351;&#29992;&#32473;&#23450;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&rdquo;&#38169;&#35823;&#65311;</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="&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;</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="&#25105;&#30340;&#20844;&#21496;&#22914;&#20309;&#36890;&#36807; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#25509;&#25910;&#25237;&#26631;&#36992;&#35831;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#30340;&#20844;&#21496;&#22914;&#20309;&#36890;&#36807; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#25509;&#25910;&#25237;&#26631;&#36992;&#35831;&#65311;</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="&#20272;&#31639;&#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#22914;&#20309;&#21019;&#24314;&#39044;&#31639;&#20013;&#30340;&#26126;&#32454;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20272;&#31639;&#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#22914;&#20309;&#21019;&#24314;&#39044;&#31639;&#20013;&#30340;&#26126;&#32454;&#39033;&#65311;</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="&#22914;&#20309;&#23558;&#25237;&#26631;&#38754;&#26495;&#39033;&#30446;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#30446;&#38598;&#21512;&#24037;&#20855;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#25237;&#26631;&#38754;&#26495;&#39033;&#30446;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#30446;&#38598;&#21512;&#24037;&#20855;&#65311;</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="&#20272;&#31639;&#20013;&#26377;&#21738;&#20123;&#23383;&#27573;&#20197;&#21450;&#23427;&#20204;&#26159;&#22914;&#20309;&#35745;&#31639;&#30340;&#65311;"><span class="mt-icon-article-none"></span>&#20272;&#31639;&#20013;&#26377;&#21738;&#20123;&#23383;&#27573;&#20197;&#21450;&#23427;&#20204;&#26159;&#22914;&#20309;&#35745;&#31639;&#30340;&#65311;</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="&#20844;&#21496;&#25237;&#26631;&#26495;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#20844;&#21496;&#25237;&#26631;&#26495;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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 &#20013;&#30340;&#21738;&#20123;&#24037;&#20855;&#21517;&#31216;&#21644;&#26415;&#35821;&#23545;&#20110;&#24635;&#25215;&#21253;&#21830;&#12289;&#19994;&#20027;&#21644;&#19987;&#19994;&#25215;&#21253;&#21830;&#26159;&#19981;&#21516;&#30340;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#21738;&#20123;&#24037;&#20855;&#21517;&#31216;&#21644;&#26415;&#35821;&#23545;&#20110;&#24635;&#25215;&#21253;&#21830;&#12289;&#19994;&#20027;&#21644;&#19987;&#19994;&#25215;&#21253;&#21830;&#26159;&#19981;&#21516;&#30340;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#25237;&#26631;&#20154;&#21487;&#20197;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#25552;&#20132;&#25237;&#26631;&#36824;&#26159;&#24517;&#39035;&#30331;&#24405;&#65311;"><span class="mt-icon-article-none"></span>&#25237;&#26631;&#20154;&#21487;&#20197;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#25552;&#20132;&#25237;&#26631;&#36824;&#26159;&#24517;&#39035;&#30331;&#24405;&#65311;</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="&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;</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="&#33021;&#21542;&#20174;&#25237;&#26631;&#20013;&#31227;&#38500;&#26126;&#32454;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#33021;&#21542;&#20174;&#25237;&#26631;&#20013;&#31227;&#38500;&#26126;&#32454;&#39033;&#65311;</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="&#25105;&#33021;&#21542;&#21521;&#27599;&#20010;&#20379;&#24212;&#21830;/&#20998;&#21253;&#21830;&#21457;&#36865;&#25237;&#26631;&#26356;&#26032;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#21521;&#27599;&#20010;&#20379;&#24212;&#21830;/&#20998;&#21253;&#21830;&#21457;&#36865;&#25237;&#26631;&#26356;&#26032;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#25105;&#21487;&#20197;&#22312;&#25237;&#26631;&#25130;&#27490;&#26085;&#26399;&#20043;&#21518;&#21457;&#36865;&#36890;&#20449;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312;&#25237;&#26631;&#25130;&#27490;&#26085;&#26399;&#20043;&#21518;&#21457;&#36865;&#36890;&#20449;&#21527;&#65311;</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="&#25105;&#26159;&#21542;&#38656;&#35201;&#22312;&#25237;&#26631;&#34920;&#21333;&#19978;&#20351;&#29992;&#25104;&#26412;&#32534;&#21495;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#26159;&#21542;&#38656;&#35201;&#22312;&#25237;&#26631;&#34920;&#21333;&#19978;&#20351;&#29992;&#25104;&#26412;&#32534;&#21495;&#65311;</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="&#22914;&#20309;&#22788;&#29702;&#30446;&#24405;&#24037;&#20855;&#21644; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#20043;&#38388;&#30340;&#37325;&#22797;&#20844;&#21496;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22788;&#29702;&#30446;&#24405;&#24037;&#20855;&#21644; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#20043;&#38388;&#30340;&#37325;&#22797;&#20844;&#21496;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#22914;&#20309;&#22312;&#26032;&#30340;&#25237;&#26631;&#31649;&#29702;&#20307;&#39564;&#20013;&#28155;&#21152;&#25237;&#26631;&#20154;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#26032;&#30340;&#25237;&#26631;&#31649;&#29702;&#20307;&#39564;&#20013;&#28155;&#21152;&#25237;&#26631;&#20154;&#65311;</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="&#22914;&#20309;&#28155;&#21152;&#32570;&#22833;&#30340;&#25104;&#26412;&#32534;&#21495;&#20197;&#20415;&#23558;&#39033;&#30446;&#36801;&#31227;&#21040;&#26032;&#29256;&#25237;&#26631;&#31649;&#29702;&#20307;&#39564;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#28155;&#21152;&#32570;&#22833;&#30340;&#25104;&#26412;&#32534;&#21495;&#20197;&#20415;&#23558;&#39033;&#30446;&#36801;&#31227;&#21040;&#26032;&#29256;&#25237;&#26631;&#31649;&#29702;&#20307;&#39564;&#65311;</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="&#22914;&#20309;&#20026;&#25237;&#26631;&#35774;&#32622;&#20250;&#35745;&#26041;&#27861;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#25237;&#26631;&#35774;&#32622;&#20250;&#35745;&#26041;&#27861;&#65311;</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="&#22312; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#19978;&#21015;&#20986;&#30340;&#20844;&#21496;&#65292;&#25105;&#21487;&#20197;&#26597;&#30475;&#21738;&#20123;&#27963;&#21160;&#25351;&#26631;&#65311;"><span class="mt-icon-article-none"></span>&#22312; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#19978;&#21015;&#20986;&#30340;&#20844;&#21496;&#65292;&#25105;&#21487;&#20197;&#26597;&#30475;&#21738;&#20123;&#27963;&#21160;&#25351;&#26631;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-specifications" title="&#20160;&#20040;&#26159;&#35268;&#33539;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#35268;&#33539;&#65311;</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="&#39033;&#30446;&#30340;&#25237;&#26631;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#25237;&#26631;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#20174; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#20013;&#23558;&#20844;&#21496;&#21644;&#29992;&#25143;&#28155;&#21152;&#21040;&#20844;&#21496;&#30446;&#24405;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20174; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#20013;&#23558;&#20844;&#21496;&#21644;&#29992;&#25143;&#28155;&#21152;&#21040;&#20844;&#21496;&#30446;&#24405;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;</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="&#23558;&#39033;&#30446;&#26356;&#26032;&#21040;&#26032;&#29256;&#25237;&#26631; &#31649;&#29702;&#20307;&#39564;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#23558;&#39033;&#30446;&#26356;&#26032;&#21040;&#26032;&#29256;&#25237;&#26631; &#31649;&#29702;&#20307;&#39564;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-blind-bidding" title="&#20160;&#20040;&#26159;&#25237;&#30450;&#26631;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#25237;&#30450;&#26631;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-construction-bidding-process" title="&#20160;&#20040;&#26159;&#24314;&#35774;&#24037;&#31243;&#25237;&#26631;&#27969;&#31243;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#24314;&#35774;&#24037;&#31243;&#25237;&#26631;&#27969;&#31243;&#65311;</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 &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#25237;&#26631;&#24037;&#20855;&#20013;&#26087;&#29256;&#21644;&#26032;&#29256;&#25237;&#26631;&#31649;&#29702;&#20307;&#39564;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#25237;&#26631;&#24037;&#20855;&#20013;&#26087;&#29256;&#21644;&#26032;&#29256;&#25237;&#26631;&#31649;&#29702;&#20307;&#39564;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#25237;&#26631;&#20154;&#38656;&#35201;&#21738;&#20123;&#26435;&#38480;&#25165;&#33021;&#21463;&#36992;&#25237;&#26631;&#21644;&#25552;&#20132;&#25237;&#26631;&#65311;"><span class="mt-icon-article-none"></span>&#25237;&#26631;&#20154;&#38656;&#35201;&#21738;&#20123;&#26435;&#38480;&#25165;&#33021;&#21463;&#36992;&#25237;&#26631;&#21644;&#25552;&#20132;&#25237;&#26631;&#65311;</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="&#25628;&#32034;&#25237;&#26631;&#20154;&#26102;&#65292;&quot;&#36164;&#26684;&quot;&#25968;&#25454;&#20174;&#20309;&#32780;&#26469;&#65311;"><span class="mt-icon-article-none"></span>&#25628;&#32034;&#25237;&#26631;&#20154;&#26102;&#65292;&quot;&#36164;&#26684;&quot;&#25968;&#25454;&#20174;&#20309;&#32780;&#26469;&#65311;</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="&#22312; Procore &#20013;&#65292;&#25105;&#24212;&#35813;&#23558;&#25237;&#26631;&#25991;&#20214;&#25918;&#22312;&#21738;&#37324;&#65311;"><span class="mt-icon-article-none"></span>&#22312; Procore &#20013;&#65292;&#25105;&#24212;&#35813;&#23558;&#25237;&#26631;&#25991;&#20214;&#25918;&#22312;&#21738;&#37324;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#20174; Procore &#19979;&#36733;&#21644;&#25171;&#24320; .ZIP &#25991;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#20174; Procore &#19979;&#36733;&#21644;&#25171;&#24320; .ZIP &#25991;&#20214;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#25237;&#26631;&#20154;&#19979;&#36733;[&#25237;&#26631;&#25991;&#20214;]&#25991;&#20214;&#22841;&#20013;&#30340;&#23376;&#25991;&#20214;&#22841;&#26102;&#65292;&#26576;&#20123;&#23376;&#25991;&#20214;&#22841;&#27809;&#26377;&#26174;&#31034;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#25237;&#26631;&#20154;&#19979;&#36733;[&#25237;&#26631;&#25991;&#20214;]&#25991;&#20214;&#22841;&#20013;&#30340;&#23376;&#25991;&#20214;&#22841;&#26102;&#65292;&#26576;&#20123;&#23376;&#25991;&#20214;&#22841;&#27809;&#26377;&#26174;&#31034;&#65311;</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="&#20026;&#20160;&#20040; Planroom &#20013;&#27809;&#26377;&#25105;&#30340;&#25237;&#26631;&#25991;&#20214;&#21253;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; Planroom &#20013;&#27809;&#26377;&#25105;&#30340;&#25237;&#26631;&#25991;&#20214;&#21253;&#65311;</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="&#22914;&#20309;&#22788;&#29702;&#30446;&#24405;&#24037;&#20855;&#21644; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#20043;&#38388;&#30340;&#37325;&#22797;&#20844;&#21496;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22788;&#29702;&#30446;&#24405;&#24037;&#20855;&#21644; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#20043;&#38388;&#30340;&#37325;&#22797;&#20844;&#21496;&#65311;</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="&#22914;&#20309;&#22312;&#26032;&#30340;&#25237;&#26631;&#31649;&#29702;&#20307;&#39564;&#20013;&#28155;&#21152;&#25237;&#26631;&#20154;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#26032;&#30340;&#25237;&#26631;&#31649;&#29702;&#20307;&#39564;&#20013;&#28155;&#21152;&#25237;&#26631;&#20154;&#65311;</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="&#20174; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#20013;&#23558;&#20844;&#21496;&#21644;&#29992;&#25143;&#28155;&#21152;&#21040;&#20844;&#21496;&#30446;&#24405;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20174; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#20013;&#23558;&#20844;&#21496;&#21644;&#29992;&#25143;&#28155;&#21152;&#21040;&#20844;&#21496;&#30446;&#24405;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;</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="&#25237;&#26631;&#24037;&#20855;&#20013;&#26087;&#29256;&#21644;&#26032;&#29256;&#25237;&#26631;&#31649;&#29702;&#20307;&#39564;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#25237;&#26631;&#24037;&#20855;&#20013;&#26087;&#29256;&#21644;&#26032;&#29256;&#25237;&#26631;&#31649;&#29702;&#20307;&#39564;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#20160;&#20040;&#26159; Bluebeam Studio&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Bluebeam Studio&#65311;</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="&#25105;&#21487;&#20197;&#23558; Procore &#39044;&#31639;&#20462;&#25913;&#23548;&#20986;&#21040;&#38598;&#25104; ERP &#31995;&#32479;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#23558; Procore &#39044;&#31639;&#20462;&#25913;&#23548;&#20986;&#21040;&#38598;&#25104; ERP &#31995;&#32479;&#21527;&#65311;</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="&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;</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="&#25105;&#20204;&#33021;&#21542;&#23548;&#20837;&#31532;&#19977;&#26041;&#32771;&#21220;&#21345;&#26465;&#30446;&#20197;&#19982; Procore &#39044;&#31639;&#24037;&#20855;&#20013;&#30340;&ldquo;&#32771;&#21220;&#34920;&#24037;&#26102;&rdquo;&#21015;&#37197;&#21512;&#20351;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#20204;&#33021;&#21542;&#23548;&#20837;&#31532;&#19977;&#26041;&#32771;&#21220;&#21345;&#26465;&#30446;&#20197;&#19982; Procore &#39044;&#31639;&#24037;&#20855;&#20013;&#30340;&ldquo;&#32771;&#21220;&#34920;&#24037;&#26102;&rdquo;&#21015;&#37197;&#21512;&#20351;&#29992;&#65311;</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="&#25105;&#24212;&#35813;&#20026; Procore &#20013;&#30340;&#21738;&#20123;&#39033;&#21046;&#20316;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#24212;&#35813;&#20026; Procore &#20013;&#30340;&#21738;&#20123;&#39033;&#21046;&#20316;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#26597;&#30475;&#26410;&#32534;&#21046;&#39044;&#31639;&#30340;&#26126;&#32454;&#39033;&#30340;&#26469;&#28304;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26597;&#30475;&#26410;&#32534;&#21046;&#39044;&#31639;&#30340;&#26126;&#32454;&#39033;&#30340;&#26469;&#28304;&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#30340;&#39044;&#31639;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#30340;&#39044;&#31639;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&ldquo;&#25353;&#26085;&#26399;&#30340;&#23454;&#38469;&#20540;&rdquo;&#31579;&#36873;&#22120;&#22914;&#20309;&#22312;&#39044;&#31639;&#35270;&#22270;&#20013;&#24037;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&ldquo;&#25353;&#26085;&#26399;&#30340;&#23454;&#38469;&#20540;&rdquo;&#31579;&#36873;&#22120;&#22914;&#20309;&#22312;&#39044;&#31639;&#35270;&#22270;&#20013;&#24037;&#20316;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-the-budget-forecast-report" title="&#20160;&#20040;&#26159;&#39044;&#31639;&#39044;&#27979;&#25253;&#21578;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#39044;&#31639;&#39044;&#27979;&#25253;&#21578;&#65311;</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="&#22914;&#20309;&#23558;&ldquo;&#32771;&#21220;&#34920;&#24037;&#26102;&rdquo;&#21015;&#28155;&#21152;&#21040;&#39044;&#31639;&#35270;&#22270;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&ldquo;&#32771;&#21220;&#34920;&#24037;&#26102;&rdquo;&#21015;&#28155;&#21152;&#21040;&#39044;&#31639;&#35270;&#22270;&#65311;</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="&#22914;&#20309;&#22312; Procore &#30340;&#39044;&#31639;&#23548;&#20837;&#27169;&#26495;&#20013;&#28155;&#21152;&#22522;&#20110;&#21333;&#20301;&#30340;&#26126;&#32454;&#39033;&#35814;&#32454;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#30340;&#39044;&#31639;&#23548;&#20837;&#27169;&#26495;&#20013;&#28155;&#21152;&#22522;&#20110;&#21333;&#20301;&#30340;&#26126;&#32454;&#39033;&#35814;&#32454;&#20449;&#24687;&#65311;</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="&#24403;&#25105;&#20844;&#21496; Procore &#36134;&#25143;&#31105;&#29992;&#23458;&#25143;&#21512;&#21516;&#12289;&#36164;&#37329;&#25110;&#20027;&#21512;&#21516;&#24037;&#20855;&#26102;&#65292;&#25105;&#33021;&#22914;&#20309;&#35843;&#25972;&#39044;&#31639;&#35270;&#22270;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#25105;&#20844;&#21496; Procore &#36134;&#25143;&#31105;&#29992;&#23458;&#25143;&#21512;&#21516;&#12289;&#36164;&#37329;&#25110;&#20027;&#21512;&#21516;&#24037;&#20855;&#26102;&#65292;&#25105;&#33021;&#22914;&#20309;&#35843;&#25972;&#39044;&#31639;&#35270;&#22270;&#65311;</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="&#24403;&#23458;&#25143;&#21512;&#21516;&#12289;&#36164;&#37329;&#25110;&#20027;&#21512;&#21516;&#24037;&#20855;&#34987;&#31105;&#29992;&#26102;&#65292;&#25105;&#22914;&#20309;&#35843;&#25972; Procore &#26631;&#20934;&#39044;&#27979;&#35270;&#22270;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#23458;&#25143;&#21512;&#21516;&#12289;&#36164;&#37329;&#25110;&#20027;&#21512;&#21516;&#24037;&#20855;&#34987;&#31105;&#29992;&#26102;&#65292;&#25105;&#22914;&#20309;&#35843;&#25972; Procore &#26631;&#20934;&#39044;&#27979;&#35270;&#22270;&#65311;</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="&#22914;&#20309;&#23558;&#25104;&#26412;&#39044;&#27979;&#25968;&#25454;&#20174; Procore &#39044;&#31639;&#23548;&#20986;&#21040;CMiC"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#25104;&#26412;&#39044;&#27979;&#25968;&#25454;&#20174; Procore &#39044;&#31639;&#23548;&#20986;&#21040;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="&#22914;&#20309;&#23558;&#25104;&#26412;&#39044;&#27979;&#25968;&#25454;&#20174; Procore &#39044;&#31639;&#23548;&#20986;&#21040; ERP"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#25104;&#26412;&#39044;&#27979;&#25968;&#25454;&#20174; Procore &#39044;&#31639;&#23548;&#20986;&#21040; 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="&#22914;&#20309;&#22312; Excel &#20013;&#20445;&#30041;&#25104;&#26412;&#32534;&#21495;&#26684;&#24335;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Excel &#20013;&#20445;&#30041;&#25104;&#26412;&#32534;&#21495;&#26684;&#24335;&#65311;</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="&#22914;&#20309;&#35774;&#32622;&#21512;&#21516;&#25110;&#36164;&#37329;&#30340;&#20250;&#35745;&#26041;&#27861;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35774;&#32622;&#21512;&#21516;&#25110;&#36164;&#37329;&#30340;&#20250;&#35745;&#26041;&#27861;&#65311;</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="&#22914;&#20309;&#20026;&#23454;&#26102;&#20154;&#24037;&#29983;&#20135;&#21147;&#35774;&#32622;&#39044;&#31639;&#35270;&#22270;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#23454;&#26102;&#20154;&#24037;&#29983;&#20135;&#21147;&#35774;&#32622;&#39044;&#31639;&#35270;&#22270;&#65311;</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="&#22914;&#20309;&#35774;&#32622;&ldquo;Procore &#20154;&#24037;&#29983;&#20135;&#21147;&#25104;&#26412;&rdquo;&#39044;&#31639;&#35270;&#22270;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35774;&#32622;&ldquo;Procore &#20154;&#24037;&#29983;&#20135;&#21147;&#25104;&#26412;&rdquo;&#39044;&#31639;&#35270;&#22270;&#65311;</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="&#22914;&#20309;&#36319;&#36394;&#21464;&#26356;&#20107;&#20214;&#30340;&#38750;&#21512;&#32422;&#25104;&#26412;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#36319;&#36394;&#21464;&#26356;&#20107;&#20214;&#30340;&#38750;&#21512;&#32422;&#25104;&#26412;&#65311;</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="&#26159;&#21542;&#24212;&#35813;&#26356;&#26032;&#39044;&#31639;&#35270;&#22270;&#20197;&#23558; RFQ &#20540;&#28155;&#21152;&#21040;&#39044;&#31639;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#26159;&#21542;&#24212;&#35813;&#26356;&#26032;&#39044;&#31639;&#35270;&#22270;&#20197;&#23558; RFQ &#20540;&#28155;&#21152;&#21040;&#39044;&#31639;&#20013;&#65311;</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="&#20351;&#29992;&#22810;&#20010;&#65288;&#20998;&#38454;&#27573;&#65289;&#39044;&#31639;&#19978;&#20256;&#30340;&#26368;&#20339;&#20570;&#27861;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20351;&#29992;&#22810;&#20010;&#65288;&#20998;&#38454;&#27573;&#65289;&#39044;&#31639;&#19978;&#20256;&#30340;&#26368;&#20339;&#20570;&#27861;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-types" title="Procore &#26377;&#21738;&#20123;&#40664;&#35748;&#25104;&#26412;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>Procore &#26377;&#21738;&#20123;&#40664;&#35748;&#25104;&#26412;&#31867;&#22411;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-standard-budget-views" title="&#20160;&#20040;&#26159; Procore &#30340;&#26631;&#20934;&#39044;&#31639;&#35270;&#22270;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#30340;&#26631;&#20934;&#39044;&#31639;&#35270;&#22270;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-production-quantities" title="&#20160;&#20040;&#26159;&ldquo;&#29983;&#20135;&#25968;&#37327;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&ldquo;&#29983;&#20135;&#25968;&#37327;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-budget-warning-banner-changes" title="&#39044;&#31639;&#35686;&#21578;&#27178;&#24133;&#26377;&#21738;&#20123;&#21464;&#21270;&#65311;"><span class="mt-icon-article-none"></span>&#39044;&#31639;&#35686;&#21578;&#27178;&#24133;&#26377;&#21738;&#20123;&#21464;&#21270;&#65311;</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 &#20013;&#21464;&#26356;&#36890;&#30693;&#21333;&#30340;&#40664;&#35748;&#29366;&#24577;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#21464;&#26356;&#36890;&#30693;&#21333;&#30340;&#40664;&#35748;&#29366;&#24577;&#26159;&#20160;&#20040;&#65311;</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 &#24230;&#25253;&#21578;&#20013;&#26377;&#21738;&#20123;&#36130;&#21153;&#26126;&#32454;&#39033;&#65311;"><span class="mt-icon-article-none"></span>360 &#24230;&#25253;&#21578;&#20013;&#26377;&#21738;&#20123;&#36130;&#21153;&#26126;&#32454;&#39033;&#65311;</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="&#39033;&#30446;&#30340;&#39044;&#31639;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#39044;&#31639;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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 &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-partial-budget-line-item" title="&#20160;&#20040;&#26159;&#37096;&#20998;&#39044;&#31639;&#26126;&#32454;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#37096;&#20998;&#39044;&#31639;&#26126;&#32454;&#39033;&#65311;</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 &#39044;&#31639;&#24037;&#20855;&#20013;&#30340;&ldquo;&#39044;&#31639; ROM&rdquo;&#21015;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#39044;&#31639;&#24037;&#20855;&#20013;&#30340;&ldquo;&#39044;&#31639; ROM&rdquo;&#21015;&#26159;&#20160;&#20040;&#65311;</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="&#20154;&#24037;&#29983;&#20135;&#21147;&#39044;&#31639;&#35270;&#22270;&#21644;&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#20154;&#24037;&#29983;&#20135;&#21147;&#39044;&#31639;&#35270;&#22270;&#21644;&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#33258;&#23450;&#20041; &#39044;&#31639; &#35270;&#22270;&#20013;&#26377;&#21738;&#20123;&#28304;&#21015;&#65311;"><span class="mt-icon-article-none"></span>&#33258;&#23450;&#20041; &#39044;&#31639; &#35270;&#22270;&#20013;&#26377;&#21738;&#20123;&#28304;&#21015;&#65311;</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 &#30340; WBS &#20013;&ldquo;&#25104;&#26412;&#32534;&#21495;&rdquo;&#32454;&#20998;&#20013;&#30340;&ldquo;&#20998;&#37096;&rdquo;&#22312;&#21738;&#37324;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340; WBS &#20013;&ldquo;&#25104;&#26412;&#32534;&#21495;&rdquo;&#32454;&#20998;&#20013;&#30340;&ldquo;&#20998;&#37096;&rdquo;&#22312;&#21738;&#37324;&#65311;</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="&#25105;&#24212;&#35813;&#23558;&#21738;&#20123;&#39044;&#31639;&#35270;&#22270;&#28155;&#21152;&#21040;&#25105;&#30340; Procore &#39033;&#30446;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#24212;&#35813;&#23558;&#21738;&#20123;&#39044;&#31639;&#35270;&#22270;&#28155;&#21152;&#21040;&#25105;&#30340; Procore &#39033;&#30446;&#20013;&#65311;</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="&#20351;&#29992;&ldquo;&#23436;&#24037;&#39044;&#27979;&rdquo;&#21151;&#33021;&#26102;&#24212;&#35813;&#36873;&#25321;&#21738;&#31181;&#35745;&#31639;&#26041;&#27861;&#65311;"><span class="mt-icon-article-none"></span>&#20351;&#29992;&ldquo;&#23436;&#24037;&#39044;&#27979;&rdquo;&#21151;&#33021;&#26102;&#24212;&#35813;&#36873;&#25321;&#21738;&#31181;&#35745;&#31639;&#26041;&#27861;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-cost-code-formats-are-supported-by-erp" title="&#25105;&#30340; ERP &#38598;&#25104;&#25903;&#25345;&#21738;&#20123;&#25104;&#26412;&#32534;&#21495;&#26684;&#24335;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#30340; ERP &#38598;&#25104;&#25903;&#25345;&#21738;&#20123;&#25104;&#26412;&#32534;&#21495;&#26684;&#24335;&#65311;</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="&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#20013;&#21253;&#21547;&#21738;&#20123;&#25968;&#25454;&#21015;&#65311;"><span class="mt-icon-article-none"></span>&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#20013;&#21253;&#21547;&#21738;&#20123;&#25968;&#25454;&#21015;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</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="&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#20250;&#26356;&#26032;&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#20013;&#30340;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#20250;&#26356;&#26032;&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#20013;&#30340;&#25968;&#25454;&#65311;</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="&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#23558;&#29983;&#20135;&#25968;&#37327;&#28155;&#21152;&#21040;&#25105;&#30340;&#39033;&#30446;&#39044;&#31639;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#23558;&#29983;&#20135;&#25968;&#37327;&#28155;&#21152;&#21040;&#25105;&#30340;&#39033;&#30446;&#39044;&#31639;&#20013;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-work-breakdown-structure" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#65311;</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 &#30340;&#20027;&#21015;&#34920;&#20013;&#21253;&#21547;&#21738;&#20123;&#35745;&#37327;&#21333;&#20301;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#20027;&#21015;&#34920;&#20013;&#21253;&#21547;&#21738;&#20123;&#35745;&#37327;&#21333;&#20301;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-wbs-custom-segments" title="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21019;&#24314; WBS &#33258;&#23450;&#20041;&#32454;&#20998;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21019;&#24314; WBS &#33258;&#23450;&#20041;&#32454;&#20998;&#65311;</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="&#20026;&#20160;&#20040;&#27809;&#26377;&#37197;&#32622;&#20581;&#24247;&#20202;&#34920;&#26495;&#30340;&#36130;&#21153;&#20581;&#24247;&#37096;&#20998;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#27809;&#26377;&#37197;&#32622;&#20581;&#24247;&#20202;&#34920;&#26495;&#30340;&#36130;&#21153;&#20581;&#24247;&#37096;&#20998;&#65311;</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="&#20026;&#20160;&#20040;&#39044;&#31639;&#20013;&#30340;&ldquo;&#24320;&#24037;&#33267;&#20170;&#25104;&#26412;&rdquo;&#21015;&#19982;&#20998;&#21253;&#21830;&#21457;&#31080;&#37329;&#39069;&#19981;&#19968;&#33268;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#39044;&#31639;&#20013;&#30340;&ldquo;&#24320;&#24037;&#33267;&#20170;&#25104;&#26412;&rdquo;&#21015;&#19982;&#20998;&#21253;&#21830;&#21457;&#31080;&#37329;&#39069;&#19981;&#19968;&#33268;&#65311;</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="&#20026;&#20160;&#20040;&#39033;&#30446;&#30340;&#39044;&#31639;&#35270;&#22270;&#27809;&#26377;&#21453;&#26144;&#32771;&#21220;&#21345;&#26465;&#30446;&#20013;&#30340;&#20154;&#24037;&#25104;&#26412;&#21644;&#29983;&#20135;&#25968;&#37327;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#39033;&#30446;&#30340;&#39044;&#31639;&#35270;&#22270;&#27809;&#26377;&#21453;&#26144;&#32771;&#21220;&#21345;&#26465;&#30446;&#20013;&#30340;&#20154;&#24037;&#25104;&#26412;&#21644;&#29983;&#20135;&#25968;&#37327;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#26159;&#21542;&#25552;&#20379;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#26159;&#21542;&#25552;&#20379;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#33258;&#23450;&#20041;&#39033;&#30446;&#31867;&#22411;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#33258;&#23450;&#20041;&#39033;&#30446;&#31867;&#22411;&#36873;&#39033;&#65311;</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="&#25105;&#33021;&#21542;&#25509;&#25910;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&#27599;&#26085;&#27963;&#21160;&#25688;&#35201;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#25509;&#25910;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&#27599;&#26085;&#27963;&#21160;&#25688;&#35201;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30417;&#25511;&#25105;&#25152;&#26377;&#24314;&#31569;&#29289;&#30340;&#27963;&#21160;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30417;&#25511;&#25105;&#25152;&#26377;&#24314;&#31569;&#29289;&#30340;&#27963;&#21160;&#65311;</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="&#22914;&#20309;&#30331;&#24405;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#30331;&#24405;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21153;&#21644;&#36164;&#37329;&#35268;&#21010;&#25253;&#21578;&#30340;&#19968;&#20123;&#26368;&#20339;&#23454;&#36341;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21153;&#21644;&#36164;&#37329;&#35268;&#21010;&#25253;&#21578;&#30340;&#19968;&#20123;&#26368;&#20339;&#23454;&#36341;&#26159;&#20160;&#20040;&#65311;</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="&#21487;&#20197;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#29983;&#25104;&#21738;&#20123;&#25253;&#21578;&#31034;&#20363;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#29983;&#25104;&#21738;&#20123;&#25253;&#21578;&#31034;&#20363;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#36164;&#37329;&#35268;&#21010;&#30340;&#25968;&#25454;&#28857;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#36164;&#37329;&#35268;&#21010;&#30340;&#25968;&#25454;&#28857;&#26159;&#20160;&#20040;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&ldquo;&#39033;&#30446;&#27604;&#36739;&rdquo;&#26631;&#31614;&#39029;&#20013;&#30340;&#31661;&#22836;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&ldquo;&#39033;&#30446;&#27604;&#36739;&rdquo;&#26631;&#31614;&#39029;&#20013;&#30340;&#31661;&#22836;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;</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="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#39033;&#30446;&#27604;&#36739;&#30340;&#31034;&#20363;&#29992;&#20363;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#39033;&#30446;&#27604;&#36739;&#30340;&#31034;&#20363;&#29992;&#20363;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-capital-planning" title="&#20160;&#20040;&#26159; Capital Planning &#36164;&#37329;&#35268;&#21010;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Capital Planning &#36164;&#37329;&#35268;&#21010;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procore-community" title="&#20160;&#20040;&#26159; Procore &#31038;&#21306;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#31038;&#21306;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&ldquo;&#25105;&#30340;&#20219;&#21153;&rdquo;&#39029;&#38754;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&ldquo;&#25105;&#30340;&#20219;&#21153;&rdquo;&#39029;&#38754;&#26159;&#20160;&#20040;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#39033;&#30446;&#39029;&#38754;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#39033;&#30446;&#39029;&#38754;&#26159;&#20160;&#20040;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#27809;&#26377;&#25910;&#21040;&#26469;&#33258;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#27809;&#26377;&#25910;&#21040;&#26469;&#33258;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#23637;&#24320;&ldquo;&#20013;&#26631;&#20540;&rdquo;&#34892;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#23637;&#24320;&ldquo;&#20013;&#26631;&#20540;&rdquo;&#34892;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#20174;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#23548;&#20986;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#20174;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#23548;&#20986;&#39033;&#30446;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#22242;&#38431;&#25104;&#21592;&#26080;&#27861;&#26597;&#30475;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#22242;&#38431;&#25104;&#21592;&#26080;&#27861;&#26597;&#30475;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#39033;&#30446;&#65311;</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="&#25105;&#21487;&#20197;&#23558;&#25105;&#30340; LMS &#19982; Procore &#35748;&#35777;&#38598;&#25104;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#23558;&#25105;&#30340; LMS &#19982; Procore &#35748;&#35777;&#38598;&#25104;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#20174;&#25105;&#30340;&#31227;&#21160;&#35774;&#22791;&#35266;&#30475; Procore &#35748;&#35777;&#21644;&#25104;&#20154;&#25945;&#32946;&#35838;&#31243;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#20174;&#25105;&#30340;&#31227;&#21160;&#35774;&#22791;&#35266;&#30475; Procore &#35748;&#35777;&#21644;&#25104;&#20154;&#25945;&#32946;&#35838;&#31243;&#21527;&#65311;</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="&#22914;&#20309;&#26356;&#25913;&#25105;&#22312; Procore &#35748;&#35777;&#20013;&#30340;&#22995;&#21517;&#25110;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26356;&#25913;&#25105;&#22312; Procore &#35748;&#35777;&#20013;&#30340;&#22995;&#21517;&#25110;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&#65311;</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="&#22914;&#20309;&#26597;&#30475;&#25105;&#30340; Procore &#36134;&#25143;&#20013;&#21253;&#21547;&#21738;&#20123; Procore &#24037;&#20855;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26597;&#30475;&#25105;&#30340; Procore &#36134;&#25143;&#20013;&#21253;&#21547;&#21738;&#20123; Procore &#24037;&#20855;&#65311;</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="&#25105;&#22914;&#20309;&#26597;&#30475;&#26410;&#23436;&#25104;&#30340;&#35748;&#35777;&#25110;&#25104;&#20154;&#25945;&#32946;&#35838;&#31243;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#22914;&#20309;&#26597;&#30475;&#26410;&#23436;&#25104;&#30340;&#35748;&#35777;&#25110;&#25104;&#20154;&#25945;&#32946;&#35838;&#31243;&#65311;</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="&#22312;&#26576;&#20123;&#27983;&#35272;&#22120;&#19978;&#25773;&#25918;&#35748;&#35777;&#35270;&#39057;&#30340;&#40664;&#35748;&#34892;&#20026;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#26576;&#20123;&#27983;&#35272;&#22120;&#19978;&#25773;&#25918;&#35748;&#35777;&#35270;&#39057;&#30340;&#40664;&#35748;&#34892;&#20026;&#26159;&#20160;&#20040;&#65311;</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="&#27491;&#22312;&#23547;&#25214;&#30340; Procore &#35748;&#35777;&#35838;&#31243;&#22312;&#21738;&#37324;&#65311;"><span class="mt-icon-article-none"></span>&#27491;&#22312;&#23547;&#25214;&#30340; Procore &#35748;&#35777;&#35838;&#31243;&#22312;&#21738;&#37324;&#65311;</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="&#20026;&#20160;&#20040;&#22312;&#26597;&#30475;&#35748;&#35777;&#35838;&#31243;&#26102;&#20250;&#25910;&#21040;&ldquo;&#32570;&#23569;&#36523;&#20221;&#39564;&#35777; Cookie&rdquo;&#38169;&#35823;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#22312;&#26597;&#30475;&#35748;&#35777;&#35838;&#31243;&#26102;&#20250;&#25910;&#21040;&ldquo;&#32570;&#23569;&#36523;&#20221;&#39564;&#35777; Cookie&rdquo;&#38169;&#35823;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-having-problems-playing-training-videos" title="&#20026;&#20160;&#20040;&#25105;&#22312;&#25773;&#25918;&#22521;&#35757;&#35270;&#39057;&#26102;&#36935;&#21040;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#25773;&#25918;&#22521;&#35757;&#35270;&#39057;&#26102;&#36935;&#21040;&#38382;&#39064;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#30331;&#24405; Procore &#35748;&#35777;&#32593;&#31449;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#30331;&#24405; Procore &#35748;&#35777;&#32593;&#31449;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#35748;&#35777;&#20998;&#26512;&#20013;&#30475;&#19981;&#21040;&#25105;&#30340;&#26576;&#20301;&#29992;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#35748;&#35777;&#20998;&#26512;&#20013;&#30475;&#19981;&#21040;&#25105;&#30340;&#26576;&#20301;&#29992;&#25143;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-certification-analytics-page-blank" title="&#20026;&#20160;&#20040;&#25105;&#30340;&#35748;&#35777;&#20998;&#26512;&#39029;&#38754;&#26159;&#31354;&#30333;&#30340;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#35748;&#35777;&#20998;&#26512;&#39029;&#38754;&#26159;&#31354;&#30333;&#30340;&#65311;</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="&#20026;&#20160;&#20040; Procore &#35748;&#35777;&#35838;&#31243;&#30340;&#23436;&#25104;&#30334;&#20998;&#27604;&#20302;&#20110; 100%&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; Procore &#35748;&#35777;&#35838;&#31243;&#30340;&#23436;&#25104;&#30334;&#20998;&#27604;&#20302;&#20110; 100%&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-was-the-procore-fundamentals-training-course-deprecated" title="&#20026;&#20160;&#20040;&ldquo;Procore &#22522;&#30784;&#30693;&#35782;&rdquo;&#22521;&#35757;&#35838;&#31243;&#34987;&#24323;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&ldquo;Procore &#22522;&#30784;&#30693;&#35782;&rdquo;&#22521;&#35757;&#35838;&#31243;&#34987;&#24323;&#29992;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-were-the-deep-dive-training-courses-deprecated" title="&#20026;&#20160;&#20040;&ldquo;&#28145;&#20837;&#30740;&#31350;&#22521;&#35757;&rdquo;&#35838;&#31243;&#34987;&#24323;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&ldquo;&#28145;&#20837;&#30740;&#31350;&#22521;&#35757;&rdquo;&#35838;&#31243;&#34987;&#24323;&#29992;&#65311;</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="&#25105;&#21487;&#20197;&#22312;&#19979;&#28216;&#21327;&#20316;&#32773;&#21709;&#24212;&#21464;&#26356;&#20107;&#20214;&#30340; RFQ &#20043;&#21069;&#20026;&#21512;&#21516;&#25110;&#36164;&#37329;&#21019;&#24314;&#21464;&#26356;&#36890;&#30693;&#21333;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312;&#19979;&#28216;&#21327;&#20316;&#32773;&#21709;&#24212;&#21464;&#26356;&#20107;&#20214;&#30340; RFQ &#20043;&#21069;&#20026;&#21512;&#21516;&#25110;&#36164;&#37329;&#21019;&#24314;&#21464;&#26356;&#36890;&#30693;&#21333;&#21527;&#65311;</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="&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-disable-the-change-events-tool" title="&#25105;&#21487;&#20197;&#31105;&#29992;&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#31105;&#29992;&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#21527;&#65311;</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="&#21487;&#20197;&#22312;&#29616;&#26377;&#39033;&#30446;&#19978;&#21551;&#29992;&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#22312;&#29616;&#26377;&#39033;&#30446;&#19978;&#21551;&#29992;&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#21527;&#65311;</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="&#22914;&#20309;&#36328;&#21464;&#26356;&#23545;&#35937;&#26356;&#26032;&#36130;&#21153;&#26126;&#32454;&#39033;&#21644;&#39044;&#31639;&#32534;&#21495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#36328;&#21464;&#26356;&#23545;&#35937;&#26356;&#26032;&#36130;&#21153;&#26126;&#32454;&#39033;&#21644;&#39044;&#31639;&#32534;&#21495;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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 &#22914;&#20309;&#35745;&#31639;&#21464;&#26356;&#20107;&#20214;&#20013;&#30340;&#36229;&#25903;/&#32467;&#20313;&#20540;&#65311;"><span class="mt-icon-article-none"></span>Procore &#22914;&#20309;&#35745;&#31639;&#21464;&#26356;&#20107;&#20214;&#20013;&#30340;&#36229;&#25903;/&#32467;&#20313;&#20540;&#65311;</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="&#22914;&#20309;&#36319;&#36394;&#21464;&#26356;&#20107;&#20214;&#30340;&#38750;&#21512;&#32422;&#25104;&#26412;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#36319;&#36394;&#21464;&#26356;&#20107;&#20214;&#30340;&#38750;&#21512;&#32422;&#25104;&#26412;&#65311;</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="&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#30340;&#21015;&#26174;&#31034;&#35774;&#32622;&#22914;&#20309;&#24037;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#30340;&#21015;&#26174;&#31034;&#35774;&#32622;&#22914;&#20309;&#24037;&#20316;&#65311;</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="&#26159;&#21542;&#24212;&#35813;&#26356;&#26032;&#39044;&#31639;&#35270;&#22270;&#20197;&#23558; RFQ &#20540;&#28155;&#21152;&#21040;&#39044;&#31639;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#26159;&#21542;&#24212;&#35813;&#26356;&#26032;&#39044;&#31639;&#35270;&#22270;&#20197;&#23558; RFQ &#20540;&#28155;&#21152;&#21040;&#39044;&#31639;&#20013;&#65311;</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="&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</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="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</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="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#37096;&#20998;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#37096;&#20998;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</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 &#30340;&#40664;&#35748;&#21464;&#26356;&#31867;&#22411;&#21644;&#21464;&#26356;&#21407;&#22240;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#40664;&#35748;&#21464;&#26356;&#31867;&#22411;&#21644;&#21464;&#26356;&#21407;&#22240;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-types" title="Procore &#26377;&#21738;&#20123;&#40664;&#35748;&#25104;&#26412;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>Procore &#26377;&#21738;&#20123;&#40664;&#35748;&#25104;&#26412;&#31867;&#22411;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-production-quantities" title="&#20160;&#20040;&#26159;&ldquo;&#29983;&#20135;&#25968;&#37327;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&ldquo;&#29983;&#20135;&#25968;&#37327;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;</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 &#20013;&#21464;&#26356;&#20107;&#20214;&#30340;&#40664;&#35748;&ldquo;&#33539;&#22260;&rdquo;&#36873;&#39033;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#21464;&#26356;&#20107;&#20214;&#30340;&#40664;&#35748;&ldquo;&#33539;&#22260;&rdquo;&#36873;&#39033;&#26377;&#21738;&#20123;&#65311;</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 &#20013;&#21464;&#26356;&#20107;&#20214;&#30340;&#40664;&#35748;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#21464;&#26356;&#20107;&#20214;&#30340;&#40664;&#35748;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;</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="&#39033;&#30446;&#36130;&#21153;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#23618;&#35774;&#32622;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#36130;&#21153;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#23618;&#35774;&#32622;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-rfq-statuses" title="&#26377;&#21738;&#20123;&#19981;&#21516;&#30340; RFQ &#29366;&#24577;&#20197;&#21450;&#23427;&#20204;&#22914;&#20309;&#24433;&#21709;&#25104;&#26412;&#21644;&#21464;&#26356;&#36890;&#30693;&#21333;&#37329;&#39069;&#65311;"><span class="mt-icon-article-none"></span>&#26377;&#21738;&#20123;&#19981;&#21516;&#30340; RFQ &#29366;&#24577;&#20197;&#21450;&#23427;&#20204;&#22914;&#20309;&#24433;&#21709;&#25104;&#26412;&#21644;&#21464;&#26356;&#36890;&#30693;&#21333;&#37329;&#39069;&#65311;</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 &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-change-event" title="&#20160;&#20040;&#26159;&#21464;&#26356;&#20107;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21464;&#26356;&#20107;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-change-order" title="&#20160;&#20040;&#26159;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-downstream-collaborator" title="&#20160;&#20040;&#26159;&#19979;&#28216;&#21327;&#20316;&#32773;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#19979;&#28216;&#21327;&#20316;&#32773;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-upstream-collaborator" title="&#20160;&#20040;&#26159;&#19978;&#28216;&#21327;&#20316;&#32773;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#19978;&#28216;&#21327;&#20316;&#32773;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;</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 &#39044;&#31639;&#24037;&#20855;&#20013;&#30340;&ldquo;&#39044;&#31639; ROM&rdquo;&#21015;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#39044;&#31639;&#24037;&#20855;&#20013;&#30340;&ldquo;&#39044;&#31639; ROM&rdquo;&#21015;&#26159;&#20160;&#20040;&#65311;</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="&#20174;&#21464;&#26356;&#20107;&#20214;&#20013;&#23558;&#21738;&#20123;&#20540;&#25552;&#21462;&#21040;&#21464;&#26356;&#36890;&#30693;&#21333; SOV&#65311;"><span class="mt-icon-article-none"></span>&#20174;&#21464;&#26356;&#20107;&#20214;&#20013;&#23558;&#21738;&#20123;&#20540;&#25552;&#21462;&#21040;&#21464;&#26356;&#36890;&#30693;&#21333; SOV&#65311;</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="&#39044;&#31639;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#39044;&#31639;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#25105;&#21487;&#20197;&#23558;&#21738;&#20123;&#31579;&#36873;&#22120;&#24212;&#29992;&#20110;&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#23558;&#21738;&#20123;&#31579;&#36873;&#22120;&#24212;&#29992;&#20110;&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</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="&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#23558;&#29983;&#20135;&#25968;&#37327;&#28155;&#21152;&#21040;&#25105;&#30340;&#39033;&#30446;&#39044;&#31639;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#23558;&#29983;&#20135;&#25968;&#37327;&#28155;&#21152;&#21040;&#25105;&#30340;&#39033;&#30446;&#39044;&#31639;&#20013;&#65311;</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="&#25105;&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#21019;&#24314;&#21464;&#26356;&#20107;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#21019;&#24314;&#21464;&#26356;&#20107;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-work-breakdown-structure" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#65311;</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 &#30340;&#20027;&#21015;&#34920;&#20013;&#21253;&#21547;&#21738;&#20123;&#35745;&#37327;&#21333;&#20301;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#20027;&#21015;&#34920;&#20013;&#21253;&#21547;&#21738;&#20123;&#35745;&#37327;&#21333;&#20301;&#65311;</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="&#20026;&#20160;&#20040;&#26080;&#27861;&#23558;&#29992;&#25143;&#20998;&#37197;&#21040; RFQ&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#26080;&#27861;&#23558;&#29992;&#25143;&#20998;&#37197;&#21040; RFQ&#65311;</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="&#19978;&#28216;&#21327;&#20316;&#32773;&#21487;&#20197;&#22312;&#21738;&#19968;&#23618;&#25209;&#20934;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;"><span class="mt-icon-article-none"></span>&#19978;&#28216;&#21327;&#20316;&#32773;&#21487;&#20197;&#22312;&#21738;&#19968;&#23618;&#25209;&#20934;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-create-a-list-of-overdue-pccos" title="&#25105;&#21487;&#20197;&#21019;&#24314;&#19968;&#20221;&#36926;&#26399;&#20027;&#21512;&#21516;&#21464;&#26356;&#36890;&#30693;&#21333; (PCCO) &#30340;&#28165;&#21333;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#21019;&#24314;&#19968;&#20221;&#36926;&#26399;&#20027;&#21512;&#21516;&#21464;&#26356;&#36890;&#30693;&#21333; (PCCO) &#30340;&#28165;&#21333;&#21527;&#65311;</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="&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;</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="&#22914;&#20309;&#36328;&#21464;&#26356;&#23545;&#35937;&#26356;&#26032;&#36130;&#21153;&#26126;&#32454;&#39033;&#21644;&#39044;&#31639;&#32534;&#21495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#36328;&#21464;&#26356;&#23545;&#35937;&#26356;&#26032;&#36130;&#21153;&#26126;&#32454;&#39033;&#21644;&#39044;&#31639;&#32534;&#21495;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#22914;&#20309;&#22312; Procore &#39033;&#30446;&#20013;&#20351;&#29992;&#31246;&#21153;&#20195;&#30721;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#39033;&#30446;&#20013;&#20351;&#29992;&#31246;&#21153;&#20195;&#30721;&#65311;</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="&#22914;&#20309;&#20026; mailto &#38142;&#25509;&#26356;&#25913;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#30340;&#40664;&#35748;&#30005;&#23376;&#37038;&#20214;&#23458;&#25143;&#31471;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026; mailto &#38142;&#25509;&#26356;&#25913;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#30340;&#40664;&#35748;&#30005;&#23376;&#37038;&#20214;&#23458;&#25143;&#31471;&#65311;</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="&#22914;&#20309;&#21024;&#38500;&#24050;&#33719;&#25209;&#21464;&#26356;&#36890;&#30693;&#21333;&#20013;&#30340;&#26126;&#32454;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21024;&#38500;&#24050;&#33719;&#25209;&#21464;&#26356;&#36890;&#30693;&#21333;&#20013;&#30340;&#26126;&#32454;&#39033;&#65311;</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="&#22914;&#20309;&#25353;&#22810;&#23618;&#22320;&#28857;&#31579;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#25353;&#22810;&#23618;&#22320;&#28857;&#31579;&#36873;&#39033;&#65311;</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 &#30340;&#40664;&#35748;&#21464;&#26356;&#31867;&#22411;&#21644;&#21464;&#26356;&#21407;&#22240;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#40664;&#35748;&#21464;&#26356;&#31867;&#22411;&#21644;&#21464;&#26356;&#21407;&#22240;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-production-quantities" title="&#20160;&#20040;&#26159;&ldquo;&#29983;&#20135;&#25968;&#37327;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&ldquo;&#29983;&#20135;&#25968;&#37327;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;</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 &#20013;&#21464;&#26356;&#36890;&#30693;&#21333;&#30340;&#40664;&#35748;&#29366;&#24577;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#21464;&#26356;&#36890;&#30693;&#21333;&#30340;&#40664;&#35748;&#29366;&#24577;&#26159;&#20160;&#20040;&#65311;</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="&#39033;&#30446;&#36130;&#21153;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#23618;&#35774;&#32622;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#36130;&#21153;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#23618;&#35774;&#32622;&#65311;</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 &#24230;&#25253;&#21578;&#20013;&#26377;&#21738;&#20123;&#36130;&#21153;&#26126;&#32454;&#39033;&#65311;"><span class="mt-icon-article-none"></span>360 &#24230;&#25253;&#21578;&#20013;&#26377;&#21738;&#20123;&#36130;&#21153;&#26126;&#32454;&#39033;&#65311;</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 &#20013;&#19981;&#21516;&#30340; DocuSign&reg; &#27178;&#24133;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#19981;&#21516;&#30340; DocuSign&reg; &#27178;&#24133;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;</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="&#39033;&#30446;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#24403;&quot;&#38480;&#21046;&#23545;&#21512;&#21516;&#21644;&#21464;&#26356;&#36890;&#30693;&#21333;&#30340;&#38750;&#33609;&#31295;&#32534;&#36753;&quot;&#21644;&quot;&#21551;&#29992;&#22987;&#32456;&#21487;&#32534;&#36753;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&quot;&#21516;&#26102;&#21551;&#29992;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&quot;&#38480;&#21046;&#23545;&#21512;&#21516;&#21644;&#21464;&#26356;&#36890;&#30693;&#21333;&#30340;&#38750;&#33609;&#31295;&#32534;&#36753;&quot;&#21644;&quot;&#21551;&#29992;&#22987;&#32456;&#21487;&#32534;&#36753;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&quot;&#21516;&#26102;&#21551;&#29992;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;</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 &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-change-order" title="&#20160;&#20040;&#26159;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-downstream-collaborator" title="&#20160;&#20040;&#26159;&#19979;&#28216;&#21327;&#20316;&#32773;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#19979;&#28216;&#21327;&#20316;&#32773;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-upstream-collaborator" title="&#20160;&#20040;&#26159;&#19978;&#28216;&#21327;&#20316;&#32773;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#19978;&#28216;&#21327;&#20316;&#32773;&#65311;</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="&#20174;&#21464;&#26356;&#20107;&#20214;&#20013;&#23558;&#21738;&#20123;&#20540;&#25552;&#21462;&#21040;&#21464;&#26356;&#36890;&#30693;&#21333; SOV&#65311;"><span class="mt-icon-article-none"></span>&#20174;&#21464;&#26356;&#20107;&#20214;&#20013;&#23558;&#21738;&#20123;&#20540;&#25552;&#21462;&#21040;&#21464;&#26356;&#36890;&#30693;&#21333; SOV&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-support-the-docusign-integration" title="&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#25903;&#25345; DocuSign&reg; &#38598;&#25104;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#25903;&#25345; DocuSign&reg; &#38598;&#25104;&#65311;</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="&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#20250;&#26356;&#26032;&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#20013;&#30340;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#20250;&#26356;&#26032;&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#20013;&#30340;&#25968;&#25454;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-work-breakdown-structure" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#65311;</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 &#30340;&#20027;&#21015;&#34920;&#20013;&#21253;&#21547;&#21738;&#20123;&#35745;&#37327;&#21333;&#20301;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#20027;&#21015;&#34920;&#20013;&#21253;&#21547;&#21738;&#20123;&#35745;&#37327;&#21333;&#20301;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-a-change-order" title="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#32534;&#36753;&#25110;&#21024;&#38500;&ldquo;&#33719;&#25209;&rdquo;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#32534;&#36753;&#25110;&#21024;&#38500;&ldquo;&#33719;&#25209;&rdquo;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;</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="&#19978;&#28216;&#21327;&#20316;&#32773;&#21487;&#20197;&#22312;&#21738;&#19968;&#23618;&#25209;&#20934;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;"><span class="mt-icon-article-none"></span>&#19978;&#28216;&#21327;&#20316;&#32773;&#21487;&#20197;&#22312;&#21738;&#19968;&#23618;&#25209;&#20934;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;</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="&#25105;&#21487;&#20197;&#22312;&#19979;&#28216;&#21327;&#20316;&#32773;&#21709;&#24212;&#21464;&#26356;&#20107;&#20214;&#30340; RFQ &#20043;&#21069;&#20026;&#21512;&#21516;&#25110;&#36164;&#37329;&#21019;&#24314;&#21464;&#26356;&#36890;&#30693;&#21333;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312;&#19979;&#28216;&#21327;&#20316;&#32773;&#21709;&#24212;&#21464;&#26356;&#20107;&#20214;&#30340; RFQ &#20043;&#21069;&#20026;&#21512;&#21516;&#25110;&#36164;&#37329;&#21019;&#24314;&#21464;&#26356;&#36890;&#30693;&#21333;&#21527;&#65311;</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="&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;</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="&#22914;&#26524; CSV &#20855;&#26377;&#31354;&#30333;&#20540;&#65292;&#25105;&#33021;&#21542;&#23558;&#20854;&#23548;&#20837;&#21040;&#39033;&#30446;&#36130;&#21153;&#31649;&#29702;&#24037;&#20855;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524; CSV &#20855;&#26377;&#31354;&#30333;&#20540;&#65292;&#25105;&#33021;&#21542;&#23558;&#20854;&#23548;&#20837;&#21040;&#39033;&#30446;&#36130;&#21153;&#31649;&#29702;&#24037;&#20855;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&#20013;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#22914;&#20309;&#22312; Procore &#39033;&#30446;&#20013;&#20351;&#29992;&#31246;&#21153;&#20195;&#30721;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#39033;&#30446;&#20013;&#20351;&#29992;&#31246;&#21153;&#20195;&#30721;&#65311;</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 &#22914;&#20309;&#33258;&#21160;&#23436;&#25104;&#19978;&#28216; &#21457;&#31080;&#19978;&#30340;&#37329;&#39069;&#65311; &#65288;&#26087;&#29256;&#65289;"><span class="mt-icon-article-none"></span>Procore &#22914;&#20309;&#33258;&#21160;&#23436;&#25104;&#19978;&#28216; &#21457;&#31080;&#19978;&#30340;&#37329;&#39069;&#65311; &#65288;&#26087;&#29256;&#65289;</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 &#22914;&#20309;&#35745;&#31639;&#21457;&#31080;&#30340;&ldquo;&#24403;&#21069;&#21040;&#26399;&#24212;&#20184;&#27454;&rdquo;&#37329;&#39069;&#65311;"><span class="mt-icon-article-none"></span>Procore &#22914;&#20309;&#35745;&#31639;&#21457;&#31080;&#30340;&ldquo;&#24403;&#21069;&#21040;&#26399;&#24212;&#20184;&#27454;&rdquo;&#37329;&#39069;&#65311;</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="&#24403;&#25105;&#20844;&#21496; Procore &#36134;&#25143;&#31105;&#29992;&#23458;&#25143;&#21512;&#21516;&#12289;&#36164;&#37329;&#25110;&#20027;&#21512;&#21516;&#24037;&#20855;&#26102;&#65292;&#25105;&#33021;&#22914;&#20309;&#35843;&#25972;&#39044;&#31639;&#35270;&#22270;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#25105;&#20844;&#21496; Procore &#36134;&#25143;&#31105;&#29992;&#23458;&#25143;&#21512;&#21516;&#12289;&#36164;&#37329;&#25110;&#20027;&#21512;&#21516;&#24037;&#20855;&#26102;&#65292;&#25105;&#33021;&#22914;&#20309;&#35843;&#25972;&#39044;&#31639;&#35270;&#22270;&#65311;</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="&#22914;&#20309;&#20026; mailto &#38142;&#25509;&#26356;&#25913;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#30340;&#40664;&#35748;&#30005;&#23376;&#37038;&#20214;&#23458;&#25143;&#31471;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026; mailto &#38142;&#25509;&#26356;&#25913;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#30340;&#40664;&#35748;&#30005;&#23376;&#37038;&#20214;&#23458;&#25143;&#31471;&#65311;</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="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#37096;&#20998;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#37096;&#20998;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</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 &#30340;&#40664;&#35748;&#21464;&#26356;&#31867;&#22411;&#21644;&#21464;&#26356;&#21407;&#22240;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#40664;&#35748;&#21464;&#26356;&#31867;&#22411;&#21644;&#21464;&#26356;&#21407;&#22240;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-types" title="Procore &#26377;&#21738;&#20123;&#40664;&#35748;&#25104;&#26412;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>Procore &#26377;&#21738;&#20123;&#40664;&#35748;&#25104;&#26412;&#31867;&#22411;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;</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 &#20013;&#21464;&#26356;&#36890;&#30693;&#21333;&#30340;&#40664;&#35748;&#29366;&#24577;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#21464;&#26356;&#36890;&#30693;&#21333;&#30340;&#40664;&#35748;&#29366;&#24577;&#26159;&#20160;&#20040;&#65311;</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 &#21457;&#31080;&#30340;&#40664;&#35748;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#21457;&#31080;&#30340;&#40664;&#35748;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;</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="&#39033;&#30446;&#36130;&#21153;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#23618;&#35774;&#32622;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#36130;&#21153;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#23618;&#35774;&#32622;&#65311;</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 &#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#31867;&#22411;&#30340;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#31867;&#22411;&#30340;&#21457;&#31080;&#65311;</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="&#20160;&#20040;&#26159; DocuSign&reg; &#23383;&#27573;&#65292;&#25105;&#21487;&#20197;&#33258;&#23450;&#20041;&#23427;&#20204;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; DocuSign&reg; &#23383;&#27573;&#65292;&#25105;&#21487;&#20197;&#33258;&#23450;&#20041;&#23427;&#20204;&#21527;&#65311;</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="&#20174; CSV &#23548;&#20837; SOV &#34892;&#39033;&#30446;&#26377;&#21738;&#20123;&#35201;&#27714;&#65311;"><span class="mt-icon-article-none"></span>&#20174; CSV &#23548;&#20837; SOV &#34892;&#39033;&#30446;&#26377;&#21738;&#20123;&#35201;&#27714;&#65311;</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="&#39033;&#30446;&#30340;&#23458;&#25143;&#21512;&#21516;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#23458;&#25143;&#21512;&#21516;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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 &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-upstream-collaborator" title="&#20160;&#20040;&#26159;&#19978;&#28216;&#21327;&#20316;&#32773;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#19978;&#28216;&#21327;&#20316;&#32773;&#65311;</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 &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#27700;&#24179;&#20998;&#39033;&#21033;&#28070;&#21152;&#25104;&#21644;&#22402;&#30452;&#27719;&#24635;&#21033;&#28070;&#21152;&#25104;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#27700;&#24179;&#20998;&#39033;&#21033;&#28070;&#21152;&#25104;&#21644;&#22402;&#30452;&#27719;&#24635;&#21033;&#28070;&#21152;&#25104;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#20160;&#20040;&#26159;&ldquo;&#21551;&#29992;&#22987;&#32456;&#21487;&#32534;&#36753;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&rdquo;&#35774;&#32622;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&ldquo;&#21551;&#29992;&#22987;&#32456;&#21487;&#32534;&#36753;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&rdquo;&#35774;&#32622;&#65311;</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 &#20013;&#30340;&#21738;&#20123;&#24037;&#20855;&#21517;&#31216;&#21644;&#26415;&#35821;&#23545;&#20110;&#24635;&#25215;&#21253;&#21830;&#12289;&#19994;&#20027;&#21644;&#19987;&#19994;&#25215;&#21253;&#21830;&#26159;&#19981;&#21516;&#30340;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#21738;&#20123;&#24037;&#20855;&#21517;&#31216;&#21644;&#26415;&#35821;&#23545;&#20110;&#24635;&#25215;&#21253;&#21830;&#12289;&#19994;&#20027;&#21644;&#19987;&#19994;&#25215;&#21253;&#21830;&#26159;&#19981;&#21516;&#30340;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-support-the-docusign-integration" title="&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#25903;&#25345; DocuSign&reg; &#38598;&#25104;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#25903;&#25345; DocuSign&reg; &#38598;&#25104;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-work-breakdown-structure" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#65311;</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 &#30340;&#20027;&#21015;&#34920;&#20013;&#21253;&#21547;&#21738;&#20123;&#35745;&#37327;&#21333;&#20301;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#20027;&#21015;&#34920;&#20013;&#21253;&#21547;&#21738;&#20123;&#35745;&#37327;&#21333;&#20301;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-a-change-order" title="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#32534;&#36753;&#25110;&#21024;&#38500;&ldquo;&#33719;&#25209;&rdquo;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#32534;&#36753;&#25110;&#21024;&#38500;&ldquo;&#33719;&#25209;&rdquo;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</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="&#22914;&#20309;&#23558;&#25104;&#26412;&#39044;&#27979;&#25968;&#25454;&#20174; Procore &#39044;&#31639;&#23548;&#20986;&#21040;CMiC"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#25104;&#26412;&#39044;&#27979;&#25968;&#25454;&#20174; Procore &#39044;&#31639;&#23548;&#20986;&#21040;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="&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;</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="&#24403;&#39033;&#34987; ERP &#25298;&#32477;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#39033;&#34987; ERP &#25298;&#32477;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;</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="&#40664;&#35748;&#24773;&#20917;&#19979;&#21512;&#32422;&#26159;&#31169;&#23494;&#30340;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#40664;&#35748;&#24773;&#20917;&#19979;&#21512;&#32422;&#26159;&#31169;&#23494;&#30340;&#21527;&#65311;</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="&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;</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="&#21512;&#32422;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#21518;&#65292;&#25105;&#33021;&#21542;&#32534;&#36753;&#25110;&#21024;&#38500;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#21518;&#65292;&#25105;&#33021;&#21542;&#32534;&#36753;&#25110;&#21024;&#38500;&#65311;</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="&#22914;&#26524; CSV &#20855;&#26377;&#31354;&#30333;&#20540;&#65292;&#25105;&#33021;&#21542;&#23558;&#20854;&#23548;&#20837;&#21040;&#39033;&#30446;&#36130;&#21153;&#31649;&#29702;&#24037;&#20855;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524; CSV &#20855;&#26377;&#31354;&#30333;&#20540;&#65292;&#25105;&#33021;&#21542;&#23558;&#20854;&#23548;&#20837;&#21040;&#39033;&#30446;&#36130;&#21153;&#31649;&#29702;&#24037;&#20855;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&#20013;&#65311;</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="&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;</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="&#21457;&#31080;&#32852;&#31995;&#20154;&#26159;&#21542;&#38656;&#35201;&ldquo;&#32467;&#31639;&#36992;&#35831;&rdquo;&#25165;&#33021;&#25552;&#20132;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>&#21457;&#31080;&#32852;&#31995;&#20154;&#26159;&#21542;&#38656;&#35201;&ldquo;&#32467;&#31639;&#36992;&#35831;&rdquo;&#25165;&#33021;&#25552;&#20132;&#21457;&#31080;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#22914;&#20309;&#22312; Procore &#39033;&#30446;&#20013;&#20351;&#29992;&#31246;&#21153;&#20195;&#30721;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#39033;&#30446;&#20013;&#20351;&#29992;&#31246;&#21153;&#20195;&#30721;&#65311;</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 &#22914;&#20309;&#35745;&#31639;&#21457;&#31080;&#30340;&ldquo;&#24403;&#21069;&#21040;&#26399;&#24212;&#20184;&#27454;&rdquo;&#37329;&#39069;&#65311;"><span class="mt-icon-article-none"></span>Procore &#22914;&#20309;&#35745;&#31639;&#21457;&#31080;&#30340;&ldquo;&#24403;&#21069;&#21040;&#26399;&#24212;&#20184;&#27454;&rdquo;&#37329;&#39069;&#65311;</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="&#22914;&#20309;&#22312;&#21457;&#31080;&#20013;&#20026;&#24211;&#23384;&#26448;&#26009;&#24320;&#20855;&#36134;&#21333;&#65311; &#65288;&#27979;&#35797;&#29256;&#65289;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#21457;&#31080;&#20013;&#20026;&#24211;&#23384;&#26448;&#26009;&#24320;&#20855;&#36134;&#21333;&#65311; &#65288;&#27979;&#35797;&#29256;&#65289;</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="&#22914;&#20309;&#20026; mailto &#38142;&#25509;&#26356;&#25913;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#30340;&#40664;&#35748;&#30005;&#23376;&#37038;&#20214;&#23458;&#25143;&#31471;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026; mailto &#38142;&#25509;&#26356;&#25913;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#30340;&#40664;&#35748;&#30005;&#23376;&#37038;&#20214;&#23458;&#25143;&#31471;&#65311;</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="&#22914;&#20309;&#20026;&#21457;&#31080;&#21019;&#24314;&#32467;&#31639;&#26399;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#21457;&#31080;&#21019;&#24314;&#32467;&#31639;&#26399;&#65311;</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="&#22914;&#20309;&#38450;&#27490;&#25110;&#20801;&#35768;&#20998;&#21253;&#21830;&#21457;&#31080;&#36229;&#39069; &#35745;&#36153;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#38450;&#27490;&#25110;&#20801;&#35768;&#20998;&#21253;&#21830;&#21457;&#31080;&#36229;&#39069; &#35745;&#36153;&#65311;</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="&#22914;&#20309;&#22312; Procore &#20013;&#35774;&#32622;&#21644;&#36820;&#36824;&#20998;&#21253;&#21830;&#21457;&#31080;&#30340;&#20445;&#30041;&#37329;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#20013;&#35774;&#32622;&#21644;&#36820;&#36824;&#20998;&#21253;&#21830;&#21457;&#31080;&#30340;&#20445;&#30041;&#37329;&#65311;</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="&#22914;&#20309;&#35774;&#32622;&#21512;&#21516;&#25110;&#36164;&#37329;&#30340;&#20250;&#35745;&#26041;&#27861;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35774;&#32622;&#21512;&#21516;&#25110;&#36164;&#37329;&#30340;&#20250;&#35745;&#26041;&#27861;&#65311;</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="&#22914;&#20309;&#25552;&#20132; Procore &#21512;&#32422;&#30340;&#20998;&#21253;&#21830;&#20998;&#39033;&#20215;&#26684;&#34920;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#25552;&#20132; Procore &#21512;&#32422;&#30340;&#20998;&#21253;&#21830;&#20998;&#39033;&#20215;&#26684;&#34920;&#65311;</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="&#22914;&#20309;&#36319;&#36394;&#22312;&#20316;&#19994;&#29616;&#22330;&#25509;&#25910;&#21644;&#23433;&#35013;&#30340;&#23454;&#38469;&#26448;&#26009;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#36319;&#36394;&#22312;&#20316;&#19994;&#29616;&#22330;&#25509;&#25910;&#21644;&#23433;&#35013;&#30340;&#23454;&#38469;&#26448;&#26009;&#65311;</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="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</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="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#37096;&#20998;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#37096;&#20998;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-multi-tiered-locations" title="&#20160;&#20040;&#26159;&#22810;&#23618;&#22320;&#28857;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#22810;&#23618;&#22320;&#28857;&#65311;</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 &#30340;&#40664;&#35748;&#21464;&#26356;&#31867;&#22411;&#21644;&#21464;&#26356;&#21407;&#22240;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#40664;&#35748;&#21464;&#26356;&#31867;&#22411;&#21644;&#21464;&#26356;&#21407;&#22240;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-types" title="Procore &#26377;&#21738;&#20123;&#40664;&#35748;&#25104;&#26412;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>Procore &#26377;&#21738;&#20123;&#40664;&#35748;&#25104;&#26412;&#31867;&#22411;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;</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="&#21512;&#32422;&#24037;&#20855;&#30340;&#21512;&#21516;&#26631;&#31614;&#39029;&#20013;&#30340;&#40664;&#35748;&#21015;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&#24037;&#20855;&#30340;&#21512;&#21516;&#26631;&#31614;&#39029;&#20013;&#30340;&#40664;&#35748;&#21015;&#26377;&#21738;&#20123;&#65311;</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 &#20013;&#30340;&#40664;&#35748;&#21512;&#32422;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#40664;&#35748;&#21512;&#32422;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;</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 &#20013;&#21464;&#26356;&#36890;&#30693;&#21333;&#30340;&#40664;&#35748;&#29366;&#24577;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#21464;&#26356;&#36890;&#30693;&#21333;&#30340;&#40664;&#35748;&#29366;&#24577;&#26159;&#20160;&#20040;&#65311;</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 &#21457;&#31080;&#30340;&#40664;&#35748;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#21457;&#31080;&#30340;&#40664;&#35748;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;</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="&#39033;&#30446;&#36130;&#21153;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#23618;&#35774;&#32622;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#36130;&#21153;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#23618;&#35774;&#32622;&#65311;</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 &#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#31867;&#22411;&#30340;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#31867;&#22411;&#30340;&#21457;&#31080;&#65311;</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="&#20160;&#20040;&#26159; DocuSign&reg; &#23383;&#27573;&#65292;&#25105;&#21487;&#20197;&#33258;&#23450;&#20041;&#23427;&#20204;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; DocuSign&reg; &#23383;&#27573;&#65292;&#25105;&#21487;&#20197;&#33258;&#23450;&#20041;&#23427;&#20204;&#21527;&#65311;</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 &#24230;&#25253;&#21578;&#20013;&#26377;&#21738;&#20123;&#36130;&#21153;&#26126;&#32454;&#39033;&#65311;"><span class="mt-icon-article-none"></span>360 &#24230;&#25253;&#21578;&#20013;&#26377;&#21738;&#20123;&#36130;&#21153;&#26126;&#32454;&#39033;&#65311;</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="&#20174; CSV &#23548;&#20837; SOV &#34892;&#39033;&#30446;&#26377;&#21738;&#20123;&#35201;&#27714;&#65311;"><span class="mt-icon-article-none"></span>&#20174; CSV &#23548;&#20837; SOV &#34892;&#39033;&#30446;&#26377;&#21738;&#20123;&#35201;&#27714;&#65311;</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="&#24403;&#21512;&#32422;&#26410;&#33021;&#20174; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#23548;&#20986;&#26102;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#21512;&#32422;&#26410;&#33021;&#20174; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#23548;&#20986;&#26102;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;</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 &#20013;&#19981;&#21516;&#30340; DocuSign&reg; &#27178;&#24133;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#19981;&#21516;&#30340; DocuSign&reg; &#27178;&#24133;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;</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="&#22312;&#20801;&#35768;&#19979;&#28216;&#21327;&#20316;&#32773;&#22312; Procore &#20013;&#25552;&#20132;&#21457;&#31080;&#20043;&#21069;&#65292;&#25105;&#20204;&#38656;&#35201;&#32771;&#34385;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#20801;&#35768;&#19979;&#28216;&#21327;&#20316;&#32773;&#22312; Procore &#20013;&#25552;&#20132;&#21457;&#31080;&#20043;&#21069;&#65292;&#25105;&#20204;&#38656;&#35201;&#32771;&#34385;&#20160;&#20040;&#65311;</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="&#39033;&#30446;&#30340;&#21512;&#32422;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#21512;&#32422;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#24403;&quot;&#38480;&#21046;&#23545;&#21512;&#21516;&#21644;&#21464;&#26356;&#36890;&#30693;&#21333;&#30340;&#38750;&#33609;&#31295;&#32534;&#36753;&quot;&#21644;&quot;&#21551;&#29992;&#22987;&#32456;&#21487;&#32534;&#36753;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&quot;&#21516;&#26102;&#21551;&#29992;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&quot;&#38480;&#21046;&#23545;&#21512;&#21516;&#21644;&#21464;&#26356;&#36890;&#30693;&#21333;&#30340;&#38750;&#33609;&#31295;&#32534;&#36753;&quot;&#21644;&quot;&#21551;&#29992;&#22987;&#32456;&#21487;&#32534;&#36753;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&quot;&#21516;&#26102;&#21551;&#29992;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;</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 &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-downstream-collaborator" title="&#20160;&#20040;&#26159;&#19979;&#28216;&#21327;&#20316;&#32773;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#19979;&#28216;&#21327;&#20316;&#32773;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-invoice-administrator" title="&#20160;&#20040;&#26159;&#21457;&#31080; &#31649;&#29702;&#21592;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21457;&#31080; &#31649;&#29702;&#21592;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-invoice-contact" title="&#20160;&#20040;&#26159;&#21457;&#31080;&#32852;&#31995;&#20154;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21457;&#31080;&#32852;&#31995;&#20154;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-subcontractor-schedule-of-values" title="&#20160;&#20040;&#26159;&#20998;&#21253;&#21830;&#20998;&#39033;&#20215;&#26684;&#34920;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20998;&#21253;&#21830;&#20998;&#39033;&#20215;&#26684;&#34920;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-sliding-scale-retention" title="&#20160;&#20040;&#26159;&#28014;&#21160;&#20445;&#30041;&#37329;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#28014;&#21160;&#20445;&#30041;&#37329;&#65311;</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="&#20160;&#20040;&#26159;&ldquo;&#21551;&#29992;&#22987;&#32456;&#21487;&#32534;&#36753;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&rdquo;&#35774;&#32622;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&ldquo;&#21551;&#29992;&#22987;&#32456;&#21487;&#32534;&#36753;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&rdquo;&#35774;&#32622;&#65311;</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="&#21512;&#32422;&ldquo;&#32534;&#21495; (#)&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&ldquo;&#32534;&#21495; (#)&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#21512;&#32422;&ldquo;&#26631;&#39064;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&ldquo;&#26631;&#39064;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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 &#20013;&#30340;&#21738;&#20123;&#24037;&#20855;&#21517;&#31216;&#21644;&#26415;&#35821;&#23545;&#20110;&#24635;&#25215;&#21253;&#21830;&#12289;&#19994;&#20027;&#21644;&#19987;&#19994;&#25215;&#21253;&#21830;&#26159;&#19981;&#21516;&#30340;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#21738;&#20123;&#24037;&#20855;&#21517;&#31216;&#21644;&#26415;&#35821;&#23545;&#20110;&#24635;&#25215;&#21253;&#21830;&#12289;&#19994;&#20027;&#21644;&#19987;&#19994;&#25215;&#21253;&#21830;&#26159;&#19981;&#21516;&#30340;&#65311;</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 &#20309;&#26102;&#21521;&#21457;&#31080;&#32852;&#31995;&#20154;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20309;&#26102;&#21521;&#21457;&#31080;&#32852;&#31995;&#20154;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;</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="&#21512;&#32422;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-support-the-docusign-integration" title="&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#25903;&#25345; DocuSign&reg; &#38598;&#25104;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#25903;&#25345; DocuSign&reg; &#38598;&#25104;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-work-breakdown-structure" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-workflows" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#27969;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#27969;&#65311;</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="&#22312; QuickBooks&reg; &#20013;&#21551;&#29992;&#21738;&#20010;&#35774;&#32622;&#25165;&#33021;&#20351;&#29992; ERP &#38598;&#25104;&#24037;&#20855;&#23548;&#20986;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>&#22312; QuickBooks&reg; &#20013;&#21551;&#29992;&#21738;&#20010;&#35774;&#32622;&#25165;&#33021;&#20351;&#29992; ERP &#38598;&#25104;&#24037;&#20855;&#23548;&#20986;&#21457;&#31080;&#65311;</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 &#30340;&#20027;&#21015;&#34920;&#20013;&#21253;&#21547;&#21738;&#20123;&#35745;&#37327;&#21333;&#20301;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#20027;&#21015;&#34920;&#20013;&#21253;&#21547;&#21738;&#20123;&#35745;&#37327;&#21333;&#20301;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#26126;&#32454;&#39033;&#22312;&#25105;&#30340;&#20998;&#21253;&#21830;&#21457;&#31080;&#19978;&#37325;&#22797;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#26126;&#32454;&#39033;&#22312;&#25105;&#30340;&#20998;&#21253;&#21830;&#21457;&#31080;&#19978;&#37325;&#22797;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#21487;&#20197;&#26597;&#30475;&#21512;&#32422;&#24037;&#20855;&#20294;&#30475;&#19981;&#21040;&#20219;&#20309;&#21512;&#32422;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#21487;&#20197;&#26597;&#30475;&#21512;&#32422;&#24037;&#20855;&#20294;&#30475;&#19981;&#21040;&#20219;&#20309;&#21512;&#32422;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-a-change-order" title="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#32534;&#36753;&#25110;&#21024;&#38500;&ldquo;&#33719;&#25209;&rdquo;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#32534;&#36753;&#25110;&#21024;&#38500;&ldquo;&#33719;&#25209;&rdquo;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;</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="&#20026;&#20160;&#20040;&#39044;&#31639;&#20013;&#30340;&ldquo;&#24320;&#24037;&#33267;&#20170;&#25104;&#26412;&rdquo;&#21015;&#19982;&#20998;&#21253;&#21830;&#21457;&#31080;&#37329;&#39069;&#19981;&#19968;&#33268;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#39044;&#31639;&#20013;&#30340;&ldquo;&#24320;&#24037;&#33267;&#20170;&#25104;&#26412;&rdquo;&#21015;&#19982;&#20998;&#21253;&#21830;&#21457;&#31080;&#37329;&#39069;&#19981;&#19968;&#33268;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-segments-and-segment-items" title="&#20160;&#20040;&#26159;&#32454;&#20998;&#21644;&#32454;&#20998;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32454;&#20998;&#21644;&#32454;&#20998;&#39033;&#65311;</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="&#24403;&quot;&#38480;&#21046;&#23545;&#21512;&#21516;&#21644;&#21464;&#26356;&#36890;&#30693;&#21333;&#30340;&#38750;&#33609;&#31295;&#32534;&#36753;&quot;&#21644;&quot;&#21551;&#29992;&#22987;&#32456;&#21487;&#32534;&#36753;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&quot;&#21516;&#26102;&#21551;&#29992;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&quot;&#38480;&#21046;&#23545;&#21512;&#21516;&#21644;&#21464;&#26356;&#36890;&#30693;&#21333;&#30340;&#38750;&#33609;&#31295;&#32534;&#36753;&quot;&#21644;&quot;&#21551;&#29992;&#22987;&#32456;&#21487;&#32534;&#36753;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&quot;&#21516;&#26102;&#21551;&#29992;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; Procore Imports &#24212;&#29992;&#31243;&#24207;&#20013;&#25910;&#21040;&#38169;&#35823;&#28040;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; Procore Imports &#24212;&#29992;&#31243;&#24207;&#20013;&#25910;&#21040;&#38169;&#35823;&#28040;&#24687;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-wbs-custom-segments" title="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21019;&#24314; WBS &#33258;&#23450;&#20041;&#32454;&#20998;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21019;&#24314; WBS &#33258;&#23450;&#20041;&#32454;&#20998;&#65311;</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="&#25105;&#21487;&#20197;&#23558;&#19968;&#20010;&#39033;&#30446;&#30340;&#25991;&#26723;&#25991;&#20214;&#22841;&#22797;&#21046;&#21040;&#19968;&#20010;&#26032;&#39033;&#30446;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#23558;&#19968;&#20010;&#39033;&#30446;&#30340;&#25991;&#26723;&#25991;&#20214;&#22841;&#22797;&#21046;&#21040;&#19968;&#20010;&#26032;&#39033;&#30446;&#21527;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-company-admin" title="&#20160;&#20040;&#26159;&#20844;&#21496;&#31649;&#29702;&#21592;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20844;&#21496;&#31649;&#29702;&#21592;&#65311;</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="&#21487;&#20197;&#19968;&#27425;&#23558;&#26435;&#38480;&#27169;&#26495;&#24212;&#29992;&#20110;&#22810;&#20010;&#29992;&#25143;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#19968;&#27425;&#23558;&#26435;&#38480;&#27169;&#26495;&#24212;&#29992;&#20110;&#22810;&#20010;&#29992;&#25143;&#21527;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#23548;&#20837;&#27169;&#26495;&#20013;&#30340;&#21015;&#26631;&#39064;&#26356;&#26032;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#23548;&#20837;&#27169;&#26495;&#20013;&#30340;&#21015;&#26631;&#39064;&#26356;&#26032;&#26159;&#20160;&#20040;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; Procore Imports &#24212;&#29992;&#31243;&#24207;&#20013;&#25910;&#21040;&#38169;&#35823;&#28040;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; Procore Imports &#24212;&#29992;&#31243;&#24207;&#20013;&#25910;&#21040;&#38169;&#35823;&#28040;&#24687;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#21019;&#24314;&#32771;&#21220;&#34920;&#26465;&#30446;&#26102;&#65292;&#21487;&#20197;&#38480;&#21046;&#21487;&#20379;&#36873;&#25321;&#30340;&#25104;&#26412;&#32534;&#21495;&#25968;&#37327;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#21019;&#24314;&#32771;&#21220;&#34920;&#26465;&#30446;&#26102;&#65292;&#21487;&#20197;&#38480;&#21046;&#21487;&#20379;&#36873;&#25321;&#30340;&#25104;&#26412;&#32534;&#21495;&#25968;&#37327;&#21527;&#65311;</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 &#30340;&#24037;&#26102;&#27169;&#22359;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#24037;&#26102;&#27169;&#22359;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#20160;&#20040;&#26159;&ldquo;&#31169;&#23494;&rdquo;&#32771;&#21220;&#21345;&#20197;&#21450;&#21738;&#20123;&#32771;&#21220;&#21345;&#21487;&#20197;&#35774;&#32622;&#20026;&#31169;&#23494;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&ldquo;&#31169;&#23494;&rdquo;&#32771;&#21220;&#21345;&#20197;&#21450;&#21738;&#20123;&#32771;&#21220;&#21345;&#21487;&#20197;&#35774;&#32622;&#20026;&#31169;&#23494;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-notifications-about-project-connections" title="&#35841;&#20250;&#25910;&#21040;&#26377;&#20851;&#39033;&#30446;&#36830;&#25509;&#30340;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#35841;&#20250;&#25910;&#21040;&#26377;&#20851;&#39033;&#30446;&#36830;&#25509;&#30340;&#36890;&#30693;&#65311;</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="&#21738;&#20123; Groundbreak 2021 &#20250;&#35758;&#26377;&#36164;&#26684;&#33719;&#24471; CE &#23398;&#20998;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Groundbreak 2021 &#20250;&#35758;&#26377;&#36164;&#26684;&#33719;&#24471; CE &#23398;&#20998;&#65311;</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="&#26159;&#21542;&#21487;&#20197;&#20174;&#23545;&#35805;&#24037;&#20855;&#20013;&#23548;&#20986;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>&#26159;&#21542;&#21487;&#20197;&#20174;&#23545;&#35805;&#24037;&#20855;&#20013;&#23548;&#20986;&#25968;&#25454;&#65311;</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="&#26576;&#20154;&#22914;&#20309;&#25165;&#33021;&#25104;&#20026; Procore &#20013;&#23545;&#35805;&#30340;&ldquo;&#20851;&#27880;&#32773;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#26576;&#20154;&#22914;&#20309;&#25165;&#33021;&#25104;&#20026; Procore &#20013;&#23545;&#35805;&#30340;&ldquo;&#20851;&#27880;&#32773;&rdquo;&#65311;</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="&#22914;&#20309;&#36873;&#25321;&#21152;&#20837; Procore &#23545;&#35805;&#30340;&#27979;&#35797;&#29256;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#36873;&#25321;&#21152;&#20837; Procore &#23545;&#35805;&#30340;&#27979;&#35797;&#29256;&#65311;</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 &#20013;&#30340;&#23545;&#35805;&#24037;&#20855;&#30340;&#36890;&#30693;&#22914;&#20309;&#24037;&#20316;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#23545;&#35805;&#24037;&#20855;&#30340;&#36890;&#30693;&#22914;&#20309;&#24037;&#20316;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-permissions-work-for-the-conversations-tool" title="&#23545;&#35805;&#24037;&#20855;&#30340;&#26435;&#38480;&#22914;&#20309;&#24037;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#23545;&#35805;&#24037;&#20855;&#30340;&#26435;&#38480;&#22914;&#20309;&#24037;&#20316;&#65311;</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="&#21487;&#20197;&#22312;&#23545;&#35805;&#24037;&#20855;&#20013;&#23558;&#21738;&#20123;&#39033;&#30446;&#28155;&#21152;&#21040;&#28040;&#24687;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#22312;&#23545;&#35805;&#24037;&#20855;&#20013;&#23558;&#21738;&#20123;&#39033;&#30446;&#28155;&#21152;&#21040;&#28040;&#24687;&#20013;&#65311;</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="&#23545;&#35805;&#24037;&#20855;&#21487;&#20197;&#33258;&#21160;&#32763;&#35793;&#21738;&#20123;&#35821;&#35328;&#65311;"><span class="mt-icon-article-none"></span>&#23545;&#35805;&#24037;&#20855;&#21487;&#20197;&#33258;&#21160;&#32763;&#35793;&#21738;&#20123;&#35821;&#35328;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-project-tools-support-conversations" title="&#21738;&#20123;&#39033;&#30446;&#24037;&#20855;&#25903;&#25345;&#23545;&#35805;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#39033;&#30446;&#24037;&#20855;&#25903;&#25345;&#23545;&#35805;&#65311;</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="&#20026;&#20160;&#20040;&#27809;&#26377;&#22312;&#23545;&#35805;&#24037;&#20855;&#20013;&#30475;&#21040;&#25105;&#30340;&#25152;&#26377;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#27809;&#26377;&#22312;&#23545;&#35805;&#24037;&#20855;&#20013;&#30475;&#21040;&#25105;&#30340;&#25152;&#26377;&#39033;&#30446;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#20160;&#20040;&#26159; Procore&#25554;&#20214;&#65292;&#26377;&#20309;&#29992;&#36884;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore&#25554;&#20214;&#65292;&#26377;&#20309;&#29992;&#36884;&#65311;</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="&#21327;&#35843;&#38382;&#39064;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#21327;&#35843;&#38382;&#39064;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-emails-about-coordination-issues" title="&#35841;&#20250;&#25910;&#21040;&#26377;&#20851;&#21327;&#35843;&#38382;&#39064;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#35841;&#20250;&#25910;&#21040;&#26377;&#20851;&#21327;&#35843;&#38382;&#39064;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#35270;&#28857;&#23548;&#20837;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25105;&#30340;&#25152;&#26377;&#35270;&#28857;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#35270;&#28857;&#23548;&#20837;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25105;&#30340;&#25152;&#26377;&#35270;&#28857;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#23558;&#25991;&#20214;&#20851;&#32852;&#21040;&#25105;&#30340;&#39033;&#30446;&#21518;&#30475;&#19981;&#21040;&#25105;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#23558;&#25991;&#20214;&#20851;&#32852;&#21040;&#25105;&#30340;&#39033;&#30446;&#21518;&#30475;&#19981;&#21040;&#25105;&#30340;&#38382;&#39064;&#65311;</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="&#20026;&#20160;&#20040;&#22312;&#20351;&#29992;&#26631;&#35760;&#24037;&#20855;&#21518;&#20250;&#21019;&#24314;&#35270;&#28857;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#22312;&#20351;&#29992;&#26631;&#35760;&#24037;&#20855;&#21518;&#20250;&#21019;&#24314;&#35270;&#28857;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312; Navisworks&reg; &#20013;&#20351;&#29992;&#20113;&#32418;&#32447;&#24037;&#20855;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312; Navisworks&reg; &#20013;&#20351;&#29992;&#20113;&#32418;&#32447;&#24037;&#20855;&#65311;</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="&#31169;&#23494;&#36890;&#20449;&#21487;&#20197;&#20844;&#24320;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#31169;&#23494;&#36890;&#20449;&#21487;&#20197;&#20844;&#24320;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#23548;&#20986;&#35774;&#32622;&#20026;&#31169;&#23494;&#30340;&#36890;&#20449;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#23548;&#20986;&#35774;&#32622;&#20026;&#31169;&#23494;&#30340;&#36890;&#20449;&#21527;&#65311;</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="&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;</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="&#22914;&#20309;&#26597;&#30475;&#35841;&#26377;&#26435;&#26597;&#30475;&#29305;&#23450;&#36890;&#20449;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26597;&#30475;&#35841;&#26377;&#26435;&#26597;&#30475;&#29305;&#23450;&#36890;&#20449;&#65311;</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="&#22914;&#20309;&#26597;&#30475;&#35841;&#26377;&#26435;&#26597;&#30475;&#26576;&#31181;&#31867;&#22411;&#30340;&#36890;&#20449;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26597;&#30475;&#35841;&#26377;&#26435;&#26597;&#30475;&#26576;&#31181;&#31867;&#22411;&#30340;&#36890;&#20449;&#65311;</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="&#22914;&#20309;&#20026;&#36890;&#20449;&#39033;&#37197;&#32622;&#38544;&#31169;&#35774;&#32622;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#36890;&#20449;&#39033;&#37197;&#32622;&#38544;&#31169;&#35774;&#32622;&#65311;</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="&#22914;&#20309;&#35774;&#32622;&#36890;&#20449;&#31867;&#22411;&#30340;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35774;&#32622;&#36890;&#20449;&#31867;&#22411;&#30340;&#26435;&#38480;&#65311;</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="&#22914;&#26524;&#29992;&#25143;&#27809;&#26377;&#26597;&#30475;&#29305;&#23450;&#36890;&#20449;&#31867;&#22411;&#30340;&#26435;&#38480;&#65292;&#20182;&#20204;&#33021;&#21542;&#22312;&#20854;&ldquo;&#39033;&#30446;&#27010;&#20917;&rdquo;&#20202;&#34920;&#26495;&#20013;&#26597;&#30475;&#35813;&#36890;&#20449;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#29992;&#25143;&#27809;&#26377;&#26597;&#30475;&#29305;&#23450;&#36890;&#20449;&#31867;&#22411;&#30340;&#26435;&#38480;&#65292;&#20182;&#20204;&#33021;&#21542;&#22312;&#20854;&ldquo;&#39033;&#30446;&#27010;&#20917;&rdquo;&#20202;&#34920;&#26495;&#20013;&#26597;&#30475;&#35813;&#36890;&#20449;&#31867;&#22411;&#65311;</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="&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</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="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#37096;&#20998;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#37096;&#20998;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-multi-tiered-locations" title="&#20160;&#20040;&#26159;&#22810;&#23618;&#22320;&#28857;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#22810;&#23618;&#22320;&#28857;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-super-private-correspondence-types" title="&#20160;&#20040;&#26159;&#36229;&#32423;&#31169;&#23494;&#36890;&#20449;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#36229;&#32423;&#31169;&#23494;&#36890;&#20449;&#31867;&#22411;&#65311;</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 &#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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="&#32479;&#19968;&#38468;&#20214;&#26597;&#30475;&#22120;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#31867;&#22411;&#21644;&#26684;&#24335;&#65311;"><span class="mt-icon-article-none"></span>&#32479;&#19968;&#38468;&#20214;&#26597;&#30475;&#22120;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#31867;&#22411;&#21644;&#26684;&#24335;&#65311;</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="&#39033;&#30446;&#30340;&#36890;&#20449;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#36890;&#20449;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-correspondence-tool" title="&#20160;&#20040;&#26159;&#36890;&#20449;&#24037;&#20855;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#36890;&#20449;&#24037;&#20855;&#65311;</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="&#25991;&#26723;&#31649;&#29702;&#38468;&#20214;&#21644;&#26469;&#33258;&#20854;&#20182;&#24037;&#20855;&#30340;&#38468;&#20214;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#25991;&#26723;&#31649;&#29702;&#38468;&#20214;&#21644;&#26469;&#33258;&#20854;&#20182;&#24037;&#20855;&#30340;&#38468;&#20214;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#20316;&#19994;&#12289;&#29238;&#20316;&#19994;&#21644;&#23376;&#20316;&#19994;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#20316;&#19994;&#12289;&#29238;&#20316;&#19994;&#21644;&#23376;&#20316;&#19994;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;</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="&#21487;&#20197;&#20351;&#29992;&#36890;&#20449;&#24037;&#20855;&#21019;&#24314;&#21738;&#20123;&#31867;&#22411;&#30340;&#36890;&#20449;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#20351;&#29992;&#36890;&#20449;&#24037;&#20855;&#21019;&#24314;&#21738;&#20123;&#31867;&#22411;&#30340;&#36890;&#20449;&#65311;</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="&#36890;&#20449;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#36890;&#20449;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-support-the-docusign-integration" title="&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#25903;&#25345; DocuSign&reg; &#38598;&#25104;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#25903;&#25345; DocuSign&reg; &#38598;&#25104;&#65311;</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="&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-tools-can-attach-document-management-files" title="&#21738;&#20123;&#24037;&#20855;&#21487;&#20197;&#28155;&#21152;&#25991;&#26723;&#31649;&#29702;&#25991;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#24037;&#20855;&#21487;&#20197;&#28155;&#21152;&#25991;&#26723;&#31649;&#29702;&#25991;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-correspondence-item-emails-and-push-notifications" title="&#35841;&#20250;&#25509;&#25910;&#36890;&#20449;&#39033;&#30005;&#23376;&#37038;&#20214;&#21644;&#25512;&#36865;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#35841;&#20250;&#25509;&#25910;&#36890;&#20449;&#39033;&#30005;&#23376;&#37038;&#20214;&#21644;&#25512;&#36865;&#36890;&#30693;&#65311;</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="&#25104;&#26412;&#30446;&#24405;&#39033;&#31867;&#22411;&#19982; Procore &#20013;&#30340;&#25104;&#26412;&#31867;&#22411;&#26377;&#20309;&#20851;&#31995;&#65311;"><span class="mt-icon-article-none"></span>&#25104;&#26412;&#30446;&#24405;&#39033;&#31867;&#22411;&#19982; Procore &#20013;&#30340;&#25104;&#26412;&#31867;&#22411;&#26377;&#20309;&#20851;&#31995;&#65311;</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="&#22914;&#20309;&#22312; Procore &#20013;&#23436;&#25104;&#20197;&#21069;&#22312;&#29420;&#31435; Procore Estimating &#24212;&#29992;&#31243;&#24207;&#20013;&#23436;&#25104;&#30340;&#20219;&#21153;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#20013;&#23436;&#25104;&#20197;&#21069;&#22312;&#29420;&#31435; Procore Estimating &#24212;&#29992;&#31243;&#24207;&#20013;&#23436;&#25104;&#30340;&#20219;&#21153;&#65311;</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="&#29992;&#20110;&#20272;&#31639;&#30340;&#25104;&#26412;&#30446;&#24405;&#20013;&#30340;&#30446;&#24405;&#12289;&#31867;&#21035;&#21644;&#39033;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#29992;&#20110;&#20272;&#31639;&#30340;&#25104;&#26412;&#30446;&#24405;&#20013;&#30340;&#30446;&#24405;&#12289;&#31867;&#21035;&#21644;&#39033;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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 &#20013;&#30340;&ldquo;&#32852;&#31995;&#20154;&rdquo;&#26159;&#20160;&#20040;&#65311;&#21738;&#20123;&#39033;&#30446;&#24037;&#20855;&#25903;&#25345;&#27492;&#27010;&#24565;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&ldquo;&#32852;&#31995;&#20154;&rdquo;&#26159;&#20160;&#20040;&#65311;&#21738;&#20123;&#39033;&#30446;&#24037;&#20855;&#25903;&#25345;&#27492;&#27010;&#24565;&#65311;</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="&quot;&#36164;&#28304;&#36319;&#36394;&quot;&#21644;&quot;&#36164;&#28304;&#31649;&#29702;&quot;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&quot;&#36164;&#28304;&#36319;&#36394;&quot;&#21644;&quot;&#36164;&#28304;&#31649;&#29702;&quot;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-classifications" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&ldquo;&#24037;&#31181;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&ldquo;&#24037;&#31181;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-wbs-custom-segments" title="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21019;&#24314; WBS &#33258;&#23450;&#20041;&#32454;&#20998;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21019;&#24314; WBS &#33258;&#23450;&#20041;&#32454;&#20998;&#65311;</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 &#24230;&#25253;&#21578;&#20013;&#26377;&#21738;&#20123;&#36130;&#21153;&#26126;&#32454;&#39033;&#65311;"><span class="mt-icon-article-none"></span>360 &#24230;&#25253;&#21578;&#20013;&#26377;&#21738;&#20123;&#36130;&#21153;&#26126;&#32454;&#39033;&#65311;</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="&#33258;&#23450;&#20041;&#23383;&#27573;&#21644;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#33258;&#23450;&#20041;&#23383;&#27573;&#21644;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;</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="&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;</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="&#33021;&#21542;&#37325;&#26032;&#25490;&#21015;&#21508;&#24037;&#20316;&#26085;&#24535;&#37096;&#20998;&#30340;&#39034;&#24207;&#65311;"><span class="mt-icon-article-none"></span>&#33021;&#21542;&#37325;&#26032;&#25490;&#21015;&#21508;&#24037;&#20316;&#26085;&#24535;&#37096;&#20998;&#30340;&#39034;&#24207;&#65311;</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="&#25105;&#21487;&#20197;&#36890;&#36807;&#30005;&#35805;&#25110;&#30005;&#23376;&#37038;&#20214;&#25509;&#25910;&#22825;&#27668;&#23548;&#33268;&#30340;&#24310;&#35823;&#35686;&#25253;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#36890;&#36807;&#30005;&#35805;&#25110;&#30005;&#23376;&#37038;&#20214;&#25509;&#25910;&#22825;&#27668;&#23548;&#33268;&#30340;&#24310;&#35823;&#35686;&#25253;&#21527;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#22914;&#20309;&#26597;&#30475;&#21333;&#20010;&#26085;&#24535;&#25110;&#26085;&#24535;&#20013;&#26576;&#20154;&#30340;&#25253;&#21578;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26597;&#30475;&#21333;&#20010;&#26085;&#24535;&#25110;&#26085;&#24535;&#20013;&#26576;&#20154;&#30340;&#25253;&#21578;&#65311;</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="&#22914;&#20309;&#20026; mailto &#38142;&#25509;&#26356;&#25913;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#30340;&#40664;&#35748;&#30005;&#23376;&#37038;&#20214;&#23458;&#25143;&#31471;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026; mailto &#38142;&#25509;&#26356;&#25913;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#30340;&#40664;&#35748;&#30005;&#23376;&#37038;&#20214;&#23458;&#25143;&#31471;&#65311;</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="&#22914;&#20309;&#20026;&#24102;&#35745;&#26102;&#30340;&#22810;&#23618;&#23457;&#25209;&#37197;&#32622;&#29992;&#25143;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#24102;&#35745;&#26102;&#30340;&#22810;&#23618;&#23457;&#25209;&#37197;&#32622;&#29992;&#25143;&#26435;&#38480;&#65311;</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="&#22914;&#20309;&#30830;&#23450;&#22320;&#22336;&#30340;&#32428;&#24230;&#21644;&#32463;&#24230;&#20540;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#30830;&#23450;&#22320;&#22336;&#30340;&#32428;&#24230;&#21644;&#32463;&#24230;&#20540;&#65311;</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="&#22914;&#20309;&#20026;&#24037;&#20316;&#26085;&#24535;&#21551;&#29992;&#20854;&#20182;&#21171;&#21160;&#21147;&#20154;&#24037;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#24037;&#20316;&#26085;&#24535;&#21551;&#29992;&#20854;&#20182;&#21171;&#21160;&#21147;&#20154;&#24037;&#31867;&#22411;&#65311;</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="&#22914;&#20309;&#26597;&#30475;&#22810;&#22825;&#30340;&#24037;&#20316;&#26085;&#24535;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26597;&#30475;&#22810;&#22825;&#30340;&#24037;&#20316;&#26085;&#24535;&#65311;</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="&#22914;&#20309;&#36319;&#36394;&#22312;&#20316;&#19994;&#29616;&#22330;&#25509;&#25910;&#21644;&#23433;&#35013;&#30340;&#23454;&#38469;&#26448;&#26009;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#36319;&#36394;&#22312;&#20316;&#19994;&#29616;&#22330;&#25509;&#25910;&#21644;&#23433;&#35013;&#30340;&#23454;&#38469;&#26448;&#26009;&#65311;</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="&#22914;&#20309;&#22312;&#32771;&#21220;&#34920;&#20013;&#20351;&#29992;&#20197;&#21069;&#30340;&#32771;&#21220;&#21345;&#26465;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32771;&#21220;&#34920;&#20013;&#20351;&#29992;&#20197;&#21069;&#30340;&#32771;&#21220;&#21345;&#26465;&#30446;&#65311;</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="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-multi-tiered-locations" title="&#20160;&#20040;&#26159;&#22810;&#23618;&#22320;&#28857;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#22810;&#23618;&#22320;&#28857;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-production-quantities" title="&#20160;&#20040;&#26159;&ldquo;&#29983;&#20135;&#25968;&#37327;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&ldquo;&#29983;&#20135;&#25968;&#37327;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;</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 &#30340;&#24037;&#26102;&#27169;&#22359;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#24037;&#26102;&#27169;&#22359;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#39033;&#30446;&#30340;&#24037;&#20316;&#26085;&#24535;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#24037;&#20316;&#26085;&#24535;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-daily-log" title="&#20160;&#20040;&#26159;&#24037;&#20316;&#26085;&#24535;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#24037;&#20316;&#26085;&#24535;&#65311;</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="&#26356;&#26032;&#20316;&#19994;&#26085;&#24535;&#37096;&#20998;&#26102;&#65292;&#20026;&#20160;&#20040;&#22312;&#25105;&#30340;&#36164;&#28304;&#21015;&#34920;&#20013;&#30475;&#19981;&#21040;&#20219;&#20309;&#21517;&#31216;&#65311;"><span class="mt-icon-article-none"></span>&#26356;&#26032;&#20316;&#19994;&#26085;&#24535;&#37096;&#20998;&#26102;&#65292;&#20026;&#20160;&#20040;&#22312;&#25105;&#30340;&#36164;&#28304;&#21015;&#34920;&#20013;&#30475;&#19981;&#21040;&#20219;&#20309;&#21517;&#31216;&#65311;</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="&#22312;&#21738;&#37324;&#21487;&#20197;&#25214;&#21040;&#29992;&#20110;&#21521; Procore &#21457;&#36865;&#24037;&#20316;&#26085;&#24535;&#12289;&#29031;&#29255;&#12289;&#25991;&#26723;&#21644;&#30005;&#23376;&#37038;&#20214;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#21738;&#37324;&#21487;&#20197;&#25214;&#21040;&#29992;&#20110;&#21521; Procore &#21457;&#36865;&#24037;&#20316;&#26085;&#24535;&#12289;&#29031;&#29255;&#12289;&#25991;&#26723;&#21644;&#30005;&#23376;&#37038;&#20214;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&#65311;</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="&#24037;&#20316;&#26085;&#24535;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#24037;&#20316;&#26085;&#24535;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</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="&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#23558;&#29983;&#20135;&#25968;&#37327;&#28155;&#21152;&#21040;&#25105;&#30340;&#39033;&#30446;&#39044;&#31639;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#23558;&#29983;&#20135;&#25968;&#37327;&#28155;&#21152;&#21040;&#25105;&#30340;&#39033;&#30446;&#39044;&#31639;&#20013;&#65311;</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="&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-classifications" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&ldquo;&#24037;&#31181;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&ldquo;&#24037;&#31181;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-weather-providers-are-supported-by-procore" title="Procore &#25903;&#25345;&#21738;&#20123;&#22825;&#27668;&#39044;&#25253;&#25552;&#20379;&#21830;&#65311;"><span class="mt-icon-article-none"></span>Procore &#25903;&#25345;&#21738;&#20123;&#22825;&#27668;&#39044;&#25253;&#25552;&#20379;&#21830;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#24037;&#20316;&#26085;&#24535;&#22825;&#27668;&#26085;&#24535;&#20013;&#19981;&#26174;&#31034;&#22825;&#27668;&#26465;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#24037;&#20316;&#26085;&#24535;&#22825;&#27668;&#26085;&#24535;&#20013;&#19981;&#26174;&#31034;&#22825;&#27668;&#26465;&#20214;&#65311;</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="&#20026;&#20160;&#20040;&#19981;&#33021;&#26356;&#25913;&#22825;&#27668;&#23548;&#33268;&#30340;&#24310;&#35823;&#25110;&#35813;&#34892;&#19978;&#30340;&#20219;&#20309;&#26694;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#19981;&#33021;&#26356;&#25913;&#22825;&#27668;&#23548;&#33268;&#30340;&#24310;&#35823;&#25110;&#35813;&#34892;&#19978;&#30340;&#20219;&#20309;&#26694;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-isnt-my-project-weather-working" title="&#20026;&#20160;&#20040;&#25105;&#30340;&#39033;&#30446;&#22825;&#27668;&#23567;&#37096;&#20214;&#19981;&#24037;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#39033;&#30446;&#22825;&#27668;&#23567;&#37096;&#20214;&#19981;&#24037;&#20316;&#65311;</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="&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-types" title="Procore &#26377;&#21738;&#20123;&#40664;&#35748;&#25104;&#26412;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>Procore &#26377;&#21738;&#20123;&#40664;&#35748;&#25104;&#26412;&#31867;&#22411;&#65311;</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="&#39033;&#30446;&#30340;&#30452;&#25509;&#25104;&#26412;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#30452;&#25509;&#25104;&#26412;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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 &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-work-breakdown-structure" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#65311;</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="&#20154;&#21592;&#33021;&#21542;&#19982;&#20844;&#21496;&#32423;&#21035;&#30446;&#24405;&#24037;&#20855;&#20013;&#30340;&#22810;&#20010;&#20379;&#24212;&#21830;/&#20844;&#21496;&#35760;&#24405;&#20851;&#32852;&#65311;"><span class="mt-icon-article-none"></span>&#20154;&#21592;&#33021;&#21542;&#19982;&#20844;&#21496;&#32423;&#21035;&#30446;&#24405;&#24037;&#20855;&#20013;&#30340;&#22810;&#20010;&#20379;&#24212;&#21830;/&#20844;&#21496;&#35760;&#24405;&#20851;&#32852;&#65311;</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="&#25105;&#21487;&#20197;&#20026;&#20854;&#20182;&#29992;&#25143;&#28155;&#21152;&#20010;&#20154;&#22836;&#20687;&#25110;&#20010;&#20154;&#36164;&#26009;&#29031;&#29255;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#20026;&#20854;&#20182;&#29992;&#25143;&#28155;&#21152;&#20010;&#20154;&#22836;&#20687;&#25110;&#20010;&#20154;&#36164;&#26009;&#29031;&#29255;&#21527;&#65311;</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="&#25105;&#33021;&#21542;&#26356;&#25913;&#30446;&#24405;&#20013;&#20154;&#21592;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#26356;&#25913;&#30446;&#24405;&#20013;&#20154;&#21592;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&#65311;</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="&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;</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="&#25105;&#21487;&#20197;&#36890;&#36807;&#30005;&#35805;&#25110;&#30005;&#23376;&#37038;&#20214;&#25509;&#25910;&#22825;&#27668;&#23548;&#33268;&#30340;&#24310;&#35823;&#35686;&#25253;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#36890;&#36807;&#30005;&#35805;&#25110;&#30005;&#23376;&#37038;&#20214;&#25509;&#25910;&#22825;&#27668;&#23548;&#33268;&#30340;&#24310;&#35823;&#35686;&#25253;&#21527;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#22914;&#20309;&#21521; Procore &#28155;&#21152;&#22836;&#20687;&#25110;&#20010;&#20154;&#36164;&#26009;&#29031;&#29255;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21521; Procore &#28155;&#21152;&#22836;&#20687;&#25110;&#20010;&#20154;&#36164;&#26009;&#29031;&#29255;&#65311;</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="&#22914;&#20309;&#20801;&#35768;&ldquo;&#26631;&#20934;&rdquo;&#29992;&#25143;&#28155;&#21152;&#21040;&#39033;&#30446;&#30446;&#24405;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20801;&#35768;&ldquo;&#26631;&#20934;&rdquo;&#29992;&#25143;&#28155;&#21152;&#21040;&#39033;&#30446;&#30446;&#24405;&#65311;</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="&#22914;&#20309;&#25764;&#38144; Procore &#29992;&#25143;&#30340;&#39033;&#30446;&#35775;&#38382;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#25764;&#38144; Procore &#29992;&#25143;&#30340;&#39033;&#30446;&#35775;&#38382;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-use-tags-keywords-in-procore" title="&#22914;&#20309;&#22312; Procore &#20013;&#20351;&#29992;&#26631;&#31614;/&#20851;&#38190;&#35789;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#20013;&#20351;&#29992;&#26631;&#31614;/&#20851;&#38190;&#35789;&#65311;</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="&#22914;&#20309;&#39564;&#35777;&#28595;&#22823;&#21033;&#20122;&#21830;&#19994;&#32534;&#21495; (ABN)&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#39564;&#35777;&#28595;&#22823;&#21033;&#20122;&#21830;&#19994;&#32534;&#21495; (ABN)&#65311;</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="&#25105;&#20197;&#20026;&#33258;&#24049;&#28155;&#21152;&#20102;&#19968;&#20010;&#29992;&#25143;&#65292;&#20294;&#29616;&#22312;&#25214;&#19981;&#21040;&#37027;&#20010;&#20154;&#12290;&#21457;&#29983;&#20102;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#20197;&#20026;&#33258;&#24049;&#28155;&#21152;&#20102;&#19968;&#20010;&#29992;&#25143;&#65292;&#20294;&#29616;&#22312;&#25214;&#19981;&#21040;&#37027;&#20010;&#20154;&#12290;&#21457;&#29983;&#20102;&#20160;&#20040;&#65311;</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="&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-role-based-permissions" title="&#20160;&#20040;&#26159;&#22522;&#20110;&#35282;&#33394;&#30340;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#22522;&#20110;&#35282;&#33394;&#30340;&#26435;&#38480;&#65311;</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 &#20013;&#30340;&#40664;&#35748;&#26435;&#38480;&#32423;&#21035;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#40664;&#35748;&#26435;&#38480;&#32423;&#21035;&#26377;&#21738;&#20123;&#65311;</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="&#20160;&#20040;&#26159; Procore &#20013;&#30340;&#40664;&#35748;&#39033;&#30446;&#26435;&#38480;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#20013;&#30340;&#40664;&#35748;&#39033;&#30446;&#26435;&#38480;&#27169;&#26495;&#65311;</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="&#22312; Procore &#20013;&#65292;&#20445;&#38505;&#30340;&#40664;&#35748;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>&#22312; Procore &#20013;&#65292;&#20445;&#38505;&#30340;&#40664;&#35748;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-fields-are-searched-in-the-directory-tool" title="&#22312;&#30446;&#24405;&#24037;&#20855;&#20013;&#21487;&#25628;&#32034;&#21040;&#21738;&#20123;&#23383;&#27573;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#30446;&#24405;&#24037;&#20855;&#20013;&#21487;&#25628;&#32034;&#21040;&#21738;&#20123;&#23383;&#27573;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-fieldset-configurations-are-recommended-for-configurable-fieldsets" title="&#23545;&#20110;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#25512;&#33616;&#20351;&#29992;&#21738;&#20123;&#37197;&#32622;&#65311;"><span class="mt-icon-article-none"></span>&#23545;&#20110;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#25512;&#33616;&#20351;&#29992;&#21738;&#20123;&#37197;&#32622;&#65311;</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="&#20844;&#21496;&#32423;&#21035;&#30446;&#24405;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#20844;&#21496;&#32423;&#21035;&#30446;&#24405;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#32423;&#21035;&#30446;&#24405;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#32423;&#21035;&#30446;&#24405;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;</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="&#20174; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#20013;&#23558;&#20844;&#21496;&#21644;&#29992;&#25143;&#28155;&#21152;&#21040;&#20844;&#21496;&#30446;&#24405;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20174; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#20013;&#23558;&#20844;&#21496;&#21644;&#29992;&#25143;&#28155;&#21152;&#21040;&#20844;&#21496;&#30446;&#24405;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-company-admin" title="&#20160;&#20040;&#26159;&#20844;&#21496;&#31649;&#29702;&#21592;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20844;&#21496;&#31649;&#29702;&#21592;&#65311;</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 &#20013;&#30340;&ldquo;&#32852;&#31995;&#20154;&rdquo;&#26159;&#20160;&#20040;&#65311;&#21738;&#20123;&#39033;&#30446;&#24037;&#20855;&#25903;&#25345;&#27492;&#27010;&#24565;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&ldquo;&#32852;&#31995;&#20154;&rdquo;&#26159;&#20160;&#20040;&#65311;&#21738;&#20123;&#39033;&#30446;&#24037;&#20855;&#25903;&#25345;&#27492;&#27010;&#24565;&#65311;</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 &#20013;&#39640;&#32423;&#25628;&#32034;&#31526;&#21495;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#39640;&#32423;&#25628;&#32034;&#31526;&#21495;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-assignable-permissions-template" title="&#20160;&#20040;&#26159;&#21487;&#20998;&#37197;&#26435;&#38480;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21487;&#20998;&#37197;&#26435;&#38480;&#27169;&#26495;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-permissions-template" title="&#20160;&#20040;&#26159;&#26435;&#38480;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#26435;&#38480;&#27169;&#26495;&#65311;</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="&#25509;&#21463; Procore &#36992;&#35831;&#21644;&#21019;&#24314;&#20813;&#36153; Procore &#20844;&#21496;&#36134;&#25143;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#25509;&#21463; Procore &#36992;&#35831;&#21644;&#21019;&#24314;&#20813;&#36153; Procore &#20844;&#21496;&#36134;&#25143;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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 &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&quot;&#36164;&#28304;&#36319;&#36394;&quot;&#21644;&quot;&#36164;&#28304;&#31649;&#29702;&quot;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&quot;&#36164;&#28304;&#36319;&#36394;&quot;&#21644;&quot;&#36164;&#28304;&#31649;&#29702;&quot;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#30446;&#24405;&#24037;&#20855;&#20013;&ldquo;&#20844;&#21496;&#21517;&#31216;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-none"></span>&#30446;&#24405;&#24037;&#20855;&#20013;&ldquo;&#20844;&#21496;&#21517;&#31216;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#23558;&#29992;&#25143;&#28155;&#21152;&#21040; Procore &#39033;&#30446;&#38656;&#35201;&#20160;&#20040;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#23558;&#29992;&#25143;&#28155;&#21152;&#21040; Procore &#39033;&#30446;&#38656;&#35201;&#20160;&#20040;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-standard-trades-are-available-in-procore" title="Procore &#20013;&#25552;&#20379;&#21738;&#20123;&#26631;&#20934;&#34892;&#19994;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#25552;&#20379;&#21738;&#20123;&#26631;&#20934;&#34892;&#19994;&#65311;</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="&#30446;&#24405;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#30446;&#24405;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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 &#20844;&#21496;&#30340;&#21738;&#20123;&#20445;&#38505;&#23383;&#27573;&#19982; Sage 300 CRE &#20379;&#24212;&#21830;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20844;&#21496;&#30340;&#21738;&#20123;&#20445;&#38505;&#23383;&#27573;&#19982; Sage 300 CRE &#20379;&#24212;&#21830;&#21516;&#27493;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-classifications" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&ldquo;&#24037;&#31181;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&ldquo;&#24037;&#31181;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#35841;&#21487;&#20197;&#26597;&#30475;&#39033;&#30446;&#30446;&#24405;&#20013;&#21015;&#20986;&#30340;&#29992;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#35841;&#21487;&#20197;&#26597;&#30475;&#39033;&#30446;&#30446;&#24405;&#20013;&#21015;&#20986;&#30340;&#29992;&#25143;&#65311;</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="&#24403;&#20379;&#24212;&#21830;&#30340;&#20445;&#38505;&#21040;&#26399;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#20379;&#24212;&#21830;&#30340;&#20445;&#38505;&#21040;&#26399;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#25991;&#26723;&#31649;&#29702;&#65306;&#19968;&#33324;&#24120;&#35265;&#38382;&#39064;"><span class="mt-icon-article-none"></span>&#25991;&#26723;&#31649;&#29702;&#65306;&#19968;&#33324;&#24120;&#35265;&#38382;&#39064;</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="&#22914;&#20309;&#22312;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#22788;&#29702;&#38145;&#23450;&#25110;&#21463;&#38480;&#30340; PDF &#25991;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#22788;&#29702;&#38145;&#23450;&#25110;&#21463;&#38480;&#30340; PDF &#25991;&#20214;&#65311;</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="&#22914;&#20309;&#25552;&#39640;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#22635;&#20805;&#25968;&#25454;&#30340;&#20934;&#30830;&#24615;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#25552;&#39640;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#22635;&#20805;&#25968;&#25454;&#30340;&#20934;&#30830;&#24615;&#65311;</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 &#22914;&#20309;&#30830;&#23450;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#30340;&#26368;&#26032;&#25991;&#26723;&#29256;&#26412;&#65311;"><span class="mt-icon-article-none"></span>Procore &#22914;&#20309;&#30830;&#23450;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#30340;&#26368;&#26032;&#25991;&#26723;&#29256;&#26412;&#65311;</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="&#26435;&#38480;&#22914;&#20309;&#22312;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#21457;&#25381;&#20316;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#26435;&#38480;&#22914;&#20309;&#22312;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#21457;&#25381;&#20316;&#29992;&#65311;</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="&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#23383;&#27573;&#65311;"><span class="mt-icon-article-none"></span>&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#23383;&#27573;&#65311;</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="&#23558;&#25991;&#20214;&#19978;&#20256;&#21040;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#26102;&#65292;Procore &#21487;&#20197;&#33258;&#21160;&#22635;&#20805;&#20160;&#20040;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>&#23558;&#25991;&#20214;&#19978;&#20256;&#21040;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#26102;&#65292;Procore &#21487;&#20197;&#33258;&#21160;&#22635;&#20805;&#20160;&#20040;&#25968;&#25454;&#65311;</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="&#32479;&#19968;&#38468;&#20214;&#26597;&#30475;&#22120;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#31867;&#22411;&#21644;&#26684;&#24335;&#65311;"><span class="mt-icon-article-none"></span>&#32479;&#19968;&#38468;&#20214;&#26597;&#30475;&#22120;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#31867;&#22411;&#21644;&#26684;&#24335;&#65311;</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="&#25991;&#26723;&#31649;&#29702;&#24037;&#20316;&#27969;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#25991;&#26723;&#31649;&#29702;&#24037;&#20316;&#27969;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#24403;&#25105;&#23558;&#25991;&#26723;&#31649;&#29702;&#25991;&#20214;&#23548;&#20837;&#22270;&#32440;&#24037;&#20855;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#25105;&#23558;&#25991;&#26723;&#31649;&#29702;&#25991;&#20214;&#23548;&#20837;&#22270;&#32440;&#24037;&#20855;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;</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="&#20160;&#20040;&#26159;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#30340;&#38598;&#21512;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#30340;&#38598;&#21512;&#65311;</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="&#20160;&#20040;&#26159;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#30340;&#21629;&#21517;&#26631;&#20934;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#30340;&#21629;&#21517;&#26631;&#20934;&#65311;</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="&#39033;&#30446;&#21019;&#24314;&#39029;&#38754;&#19978;&#30340;&ldquo;Code&rdquo;&#23383;&#27573;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#21019;&#24314;&#39029;&#38754;&#19978;&#30340;&ldquo;Code&rdquo;&#23383;&#27573;&#26159;&#20160;&#20040;&#65311;</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="&#25991;&#26723;&#31649;&#29702;&#38468;&#20214;&#21644;&#26469;&#33258;&#20854;&#20182;&#24037;&#20855;&#30340;&#38468;&#20214;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#25991;&#26723;&#31649;&#29702;&#38468;&#20214;&#21644;&#26469;&#33258;&#20854;&#20182;&#24037;&#20855;&#30340;&#38468;&#20214;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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 &#20013;&#30340;&ldquo;&#25991;&#26723;&rdquo;&#21644;&ldquo;&#25991;&#26723;&#31649;&#29702;&rdquo;&#24037;&#20855;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&ldquo;&#25991;&#26723;&rdquo;&#21644;&ldquo;&#25991;&#26723;&#31649;&#29702;&rdquo;&#24037;&#20855;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-tools-can-attach-document-management-files" title="&#21738;&#20123;&#24037;&#20855;&#21487;&#20197;&#28155;&#21152;&#25991;&#26723;&#31649;&#29702;&#25991;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#24037;&#20855;&#21487;&#20197;&#28155;&#21152;&#25991;&#26723;&#31649;&#29702;&#25991;&#20214;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21024;&#38500;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#30340;&#26576;&#20123;&#20445;&#23384;&#30340;&#35270;&#22270;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21024;&#38500;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#30340;&#26576;&#20123;&#20445;&#23384;&#30340;&#35270;&#22270;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#20851;&#38381;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#30340;&#26576;&#20123;&#25991;&#26723;&quot;&#31867;&#22411;&quot;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#20851;&#38381;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#30340;&#26576;&#20123;&#25991;&#26723;&quot;&#31867;&#22411;&quot;&#65311;</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="&#25105;&#21487;&#20197;&#23558;&#25991;&#26723;&#24037;&#20855;&#20013;&#30340;&#25991;&#20214;&#22797;&#21046;&#21040;&#21478;&#19968;&#20010;&#39033;&#30446;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#23558;&#25991;&#26723;&#24037;&#20855;&#20013;&#30340;&#25991;&#20214;&#22797;&#21046;&#21040;&#21478;&#19968;&#20010;&#39033;&#30446;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#23558;&#19968;&#20010;&#39033;&#30446;&#30340;&#25991;&#26723;&#25991;&#20214;&#22841;&#22797;&#21046;&#21040;&#19968;&#20010;&#26032;&#39033;&#30446;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#23558;&#19968;&#20010;&#39033;&#30446;&#30340;&#25991;&#26723;&#25991;&#20214;&#22841;&#22797;&#21046;&#21040;&#19968;&#20010;&#26032;&#39033;&#30446;&#21527;&#65311;</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="&#26159;&#21542;&#21487;&#20197;&#40664;&#35748;&#22312;&#25991;&#26723;&#24037;&#20855;&#20013;&#23558;&#25991;&#20214;&#21644;&#25991;&#20214;&#22841;&#35774;&#20026;&#31169;&#23494;&#65311;"><span class="mt-icon-article-none"></span>&#26159;&#21542;&#21487;&#20197;&#40664;&#35748;&#22312;&#25991;&#26723;&#24037;&#20855;&#20013;&#23558;&#25991;&#20214;&#21644;&#25991;&#20214;&#22841;&#35774;&#20026;&#31169;&#23494;&#65311;</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="&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#22914;&#20309;&#23558;&#22823;&#25991;&#20214;&#19978;&#20256;&#21040;Procore Web&#24212;&#29992;&#31243;&#24207;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#22823;&#25991;&#20214;&#19978;&#20256;&#21040;Procore Web&#24212;&#29992;&#31243;&#24207;&#65311;</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 &#25991;&#26723;&#24037;&#20855;&#20013;&#30340; Office 365 &#38598;&#25104;&#22914;&#20309;&#36816;&#34892;&#65311;"><span class="mt-icon-article-none"></span>Procore &#25991;&#26723;&#24037;&#20855;&#20013;&#30340; Office 365 &#38598;&#25104;&#22914;&#20309;&#36816;&#34892;&#65311;</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="&#25105;&#22914;&#20309;&#30693;&#36947;&#26159;&#21542;&#26377;&#20154;&#19979;&#36733;&#20102;&#25991;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#22914;&#20309;&#30693;&#36947;&#26159;&#21542;&#26377;&#20154;&#19979;&#36733;&#20102;&#25991;&#20214;&#65311;</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 &#20013;&#19981;&#21516;&#30340; DocuSign&reg; &#27178;&#24133;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#19981;&#21516;&#30340; DocuSign&reg; &#27178;&#24133;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;</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="&#25991;&#26723;&#24037;&#20855;&#20013;&#30340; 3D &#27169;&#22411;&#26597;&#30475;&#22120;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#25991;&#26723;&#24037;&#20855;&#20013;&#30340; 3D &#27169;&#22411;&#26597;&#30475;&#22120;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#31867;&#22411;&#65311;</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="&#39033;&#30446;&#32423;&#21035;&#25991;&#26723;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#32423;&#21035;&#25991;&#26723;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#25991;&#26723;&#24037;&#20855;&#20013;&#30340;&ldquo;&#36827;&#24230;&#35745;&#21010;&rdquo;&#25991;&#20214;&#22841;&#26159;&#20160;&#20040;&#65311;&#20026;&#20160;&#20040;&#19981;&#33021;&#21024;&#38500;&#65311;"><span class="mt-icon-article-none"></span>&#25991;&#26723;&#24037;&#20855;&#20013;&#30340;&ldquo;&#36827;&#24230;&#35745;&#21010;&rdquo;&#25991;&#20214;&#22841;&#26159;&#20160;&#20040;&#65311;&#20026;&#20160;&#20040;&#19981;&#33021;&#21024;&#38500;&#65311;</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="&#22914;&#26524;&#27169;&#22411;&#22826;&#22823;&#32780;&#26080;&#27861;&#22312; Procore &#30340; Web &#24212;&#29992;&#31243;&#24207;&#20013;&#26597;&#30475;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#27169;&#22411;&#22826;&#22823;&#32780;&#26080;&#27861;&#22312; Procore &#30340; Web &#24212;&#29992;&#31243;&#24207;&#20013;&#26597;&#30475;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;</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="&#22914;&#26524;&#25105;&#30340;&#27169;&#22411;&#25991;&#20214;&#22826;&#22823;&#32780;&#26080;&#27861;&#22312;&#25991;&#26723;&#24037;&#20855;&#20013;&#22788;&#29702;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#25105;&#30340;&#27169;&#22411;&#25991;&#20214;&#22826;&#22823;&#32780;&#26080;&#27861;&#22312;&#25991;&#26723;&#24037;&#20855;&#20013;&#22788;&#29702;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;</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="&#22312;&#21738;&#37324;&#21487;&#20197;&#25214;&#21040;&#29992;&#20110;&#21521; Procore &#21457;&#36865;&#24037;&#20316;&#26085;&#24535;&#12289;&#29031;&#29255;&#12289;&#25991;&#26723;&#21644;&#30005;&#23376;&#37038;&#20214;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#21738;&#37324;&#21487;&#20197;&#25214;&#21040;&#29992;&#20110;&#21521; Procore &#21457;&#36865;&#24037;&#20316;&#26085;&#24535;&#12289;&#29031;&#29255;&#12289;&#25991;&#26723;&#21644;&#30005;&#23376;&#37038;&#20214;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&#65311;</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="&#25991;&#26723;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#25991;&#26723;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-support-the-docusign-integration" title="&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#25903;&#25345; DocuSign&reg; &#38598;&#25104;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#25903;&#25345; DocuSign&reg; &#38598;&#25104;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#20174; Procore &#19979;&#36733;&#21644;&#25171;&#24320; .ZIP &#25991;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#20174; Procore &#19979;&#36733;&#21644;&#25171;&#24320; .ZIP &#25991;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-file-uploads-failing" title="&#20026;&#20160;&#20040;&#25105;&#30340;&#25991;&#20214;&#19978;&#20256;&#22833;&#36133;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#25991;&#20214;&#19978;&#20256;&#22833;&#36133;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#25237;&#26631;&#20154;&#19979;&#36733;[&#25237;&#26631;&#25991;&#20214;]&#25991;&#20214;&#22841;&#20013;&#30340;&#23376;&#25991;&#20214;&#22841;&#26102;&#65292;&#26576;&#20123;&#23376;&#25991;&#20214;&#22841;&#27809;&#26377;&#26174;&#31034;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#25237;&#26631;&#20154;&#19979;&#36733;[&#25237;&#26631;&#25991;&#20214;]&#25991;&#20214;&#22841;&#20013;&#30340;&#23376;&#25991;&#20214;&#22841;&#26102;&#65292;&#26576;&#20123;&#23376;&#25991;&#20214;&#22841;&#27809;&#26377;&#26174;&#31034;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-delete-items-in-procore" title="&#20026;&#20160;&#20040;&#19981;&#33021;&#22312; Procore &#20013;&#21024;&#38500;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#19981;&#33021;&#22312; Procore &#20013;&#21024;&#38500;&#39033;&#65311;</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="&#20026;&#20160;&#20040; Procore &#20013;&#27169;&#22411;&#30340;&#25991;&#20214;&#22823;&#23567;&#20250;&#22686;&#21152;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; Procore &#20013;&#27169;&#22411;&#30340;&#25991;&#20214;&#22823;&#23567;&#20250;&#22686;&#21152;&#65311;</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&reg; &#38598;&#25104;&#23545;&#38468;&#20214;&#25110;&#20449;&#23553;&#26159;&#21542;&#26377;&#20219;&#20309;&#25991;&#20214;&#22823;&#23567;&#38480;&#21046;&#65311;"><span class="mt-icon-article-none"></span>DocuSign&reg; &#38598;&#25104;&#23545;&#38468;&#20214;&#25110;&#20449;&#23553;&#26159;&#21542;&#26377;&#20219;&#20309;&#25991;&#20214;&#22823;&#23567;&#38480;&#21046;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-i-need-a-docusign-account" title="&#25105;&#38656;&#35201;&#25317;&#26377; DocuSign&copy; &#36134;&#25143;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#38656;&#35201;&#25317;&#26377; DocuSign&copy; &#36134;&#25143;&#21527;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enable-the-docusign-integration" title="&#22914;&#20309;&#21551;&#29992; DocuSign&reg; &#38598;&#25104;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21551;&#29992; DocuSign&reg; &#38598;&#25104;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-get-a-docusign-account" title="&#22914;&#20309;&#33719;&#24471; DocuSign&reg; &#36134;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#33719;&#24471; DocuSign&reg; &#36134;&#25143;&#65311;</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="&#22914;&#20309;&#20102;&#35299;&#25105;&#30340; DocuSign &#36134;&#25143;&#26159;&#21542;&#19982; Procore &#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20102;&#35299;&#25105;&#30340; DocuSign &#36134;&#25143;&#26159;&#21542;&#19982; Procore &#21516;&#27493;&#65311;</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="&#20160;&#20040;&#26159; DocuSign&reg; &#23383;&#27573;&#65292;&#25105;&#21487;&#20197;&#33258;&#23450;&#20041;&#23427;&#20204;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; DocuSign&reg; &#23383;&#27573;&#65292;&#25105;&#21487;&#20197;&#33258;&#23450;&#20041;&#23427;&#20204;&#21527;&#65311;</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="&#24403;&#25105;&#30340; DocuSign &#36134;&#25143;&#19982;&#25105;&#30340; Procore &#36134;&#25143;&ldquo;&#21516;&#27493;&rdquo;&#26102;&#65292;&#36825;&#24847;&#21619;&#30528;&#20160;&#20040;&#65311;&#25105;&#35813;&#22914;&#20309;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#25105;&#30340; DocuSign &#36134;&#25143;&#19982;&#25105;&#30340; Procore &#36134;&#25143;&ldquo;&#21516;&#27493;&rdquo;&#26102;&#65292;&#36825;&#24847;&#21619;&#30528;&#20160;&#20040;&#65311;&#25105;&#35813;&#22914;&#20309;&#21516;&#27493;&#65311;</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 &#20013;&#19981;&#21516;&#30340; DocuSign&reg; &#27178;&#24133;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#19981;&#21516;&#30340; DocuSign&reg; &#27178;&#24133;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-support-the-docusign-integration" title="&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#25903;&#25345; DocuSign&reg; &#38598;&#25104;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#25903;&#25345; DocuSign&reg; &#38598;&#25104;&#65311;</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="&#40664;&#35748;&#24773;&#20917;&#19979;&#21512;&#32422;&#26159;&#31169;&#23494;&#30340;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#40664;&#35748;&#24773;&#20917;&#19979;&#21512;&#32422;&#26159;&#31169;&#23494;&#30340;&#21527;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#26159;&#21542;&#25552;&#20379;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#26159;&#21542;&#25552;&#20379;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#26159;&#21542;&#21487;&#20197;&#23558;&#20272;&#31639;&#20540;&#20174;&#20272;&#31639;&#24037;&#20855;&#22797;&#21046;&#21040;&#26032;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#26159;&#21542;&#21487;&#20197;&#23558;&#20272;&#31639;&#20540;&#20174;&#20272;&#31639;&#24037;&#20855;&#22797;&#21046;&#21040;&#26032;&#39033;&#30446;&#65311;</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="&#25105;&#33021;&#21542;&#21019;&#24314;&#20855;&#26377;&#37325;&#22797;&#32534;&#21495;&#30340; RFI&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#21019;&#24314;&#20855;&#26377;&#37325;&#22797;&#32534;&#21495;&#30340; RFI&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#33258;&#23450;&#20041;&#39033;&#30446;&#31867;&#22411;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#33258;&#23450;&#20041;&#39033;&#30446;&#31867;&#22411;&#36873;&#39033;&#65311;</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="&#25105;&#21487;&#20197;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#32534;&#36753;&#25105;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#25110;&#21457;&#31080;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#32534;&#36753;&#25105;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#25110;&#21457;&#31080;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#23548;&#20986;&#35774;&#32622;&#20026;&#31169;&#23494;&#30340;&#36890;&#20449;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#23548;&#20986;&#35774;&#32622;&#20026;&#31169;&#23494;&#30340;&#36890;&#20449;&#21527;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-export-a-lookahead-schedule" title="&#21487;&#20197;&#23548;&#20986;&#23637;&#26395;&#36827;&#24230;&#35745;&#21010;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#23548;&#20986;&#23637;&#26395;&#36827;&#24230;&#35745;&#21010;&#21527;&#65311;</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="&#21019;&#24314;&#32771;&#21220;&#34920;&#26465;&#30446;&#26102;&#65292;&#21487;&#20197;&#38480;&#21046;&#21487;&#20379;&#36873;&#25321;&#30340;&#25104;&#26412;&#32534;&#21495;&#25968;&#37327;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#21019;&#24314;&#32771;&#21220;&#34920;&#26465;&#30446;&#26102;&#65292;&#21487;&#20197;&#38480;&#21046;&#21487;&#20379;&#36873;&#25321;&#30340;&#25104;&#26412;&#32534;&#21495;&#25968;&#37327;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#22312;&#39033;&#30446;&#30340;&#29031;&#29255;&#24037;&#20855;&#20013;&#23558;&#25152;&#26377;&#29031;&#29255;&#26631;&#35760;&#20026;&ldquo;&#31169;&#23494;&rdquo;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312;&#39033;&#30446;&#30340;&#29031;&#29255;&#24037;&#20855;&#20013;&#23558;&#25152;&#26377;&#29031;&#29255;&#26631;&#35760;&#20026;&ldquo;&#31169;&#23494;&rdquo;&#21527;&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#25237;&#26631;&#23460;&#25171;&#21360;&#25110;&#23548;&#20986;&#25105;&#30340;&#25237;&#26631;&#21103;&#26412;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312;&#25237;&#26631;&#23460;&#25171;&#21360;&#25110;&#23548;&#20986;&#25105;&#30340;&#25237;&#26631;&#21103;&#26412;&#65311;</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="&#25105;&#33021;&#21542;&#25509;&#25910;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&#27599;&#26085;&#27963;&#21160;&#25688;&#35201;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#25509;&#25910;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&#27599;&#26085;&#27963;&#21160;&#25688;&#35201;&#65311;</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="&#25105;&#33021;&#21542;&#26356;&#26032; Procore Web &#24212;&#29992;&#31243;&#24207;&#19978;&#30340;&ldquo;&#23436;&#25104;&#30334;&#20998;&#27604;&rdquo;&#23383;&#27573;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#26356;&#26032; Procore Web &#24212;&#29992;&#31243;&#24207;&#19978;&#30340;&ldquo;&#23436;&#25104;&#30334;&#20998;&#27604;&rdquo;&#23383;&#27573;&#65311;</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&reg; &#38598;&#25104;&#23545;&#38468;&#20214;&#25110;&#20449;&#23553;&#26159;&#21542;&#26377;&#20219;&#20309;&#25991;&#20214;&#22823;&#23567;&#38480;&#21046;&#65311;"><span class="mt-icon-article-none"></span>DocuSign&reg; &#38598;&#25104;&#23545;&#38468;&#20214;&#25110;&#20449;&#23553;&#26159;&#21542;&#26377;&#20219;&#20309;&#25991;&#20214;&#22823;&#23567;&#38480;&#21046;&#65311;</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 &#30340; hh2 &#21516;&#27493;&#27969;&#31243;&#26159;&#21542;&#38656;&#35201;&#32456;&#31471;&#26381;&#21153;&#22120;&#65311;"><span class="mt-icon-article-none"></span>Sage 300 CRE &#30340; hh2 &#21516;&#27493;&#27969;&#31243;&#26159;&#21542;&#38656;&#35201;&#32456;&#31471;&#26381;&#21153;&#22120;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#37324;&#31243;&#30865;&#26159;&#21542;&#19982;&#25105;&#30340;&#22806;&#37096;&#39033;&#30446;&#36827;&#24230;&#35745;&#21010;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#37324;&#31243;&#30865;&#26159;&#21542;&#19982;&#25105;&#30340;&#22806;&#37096;&#39033;&#30446;&#36827;&#24230;&#35745;&#21010;&#21516;&#27493;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-task-codes-configured-for-time-entry" title="&#22914;&#20309;&#20026;&#24037;&#26102;&#26465;&#30446;&#37197;&#32622;&#20219;&#21153;&#32534;&#21495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#24037;&#26102;&#26465;&#30446;&#37197;&#32622;&#20219;&#21153;&#32534;&#21495;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-templates-created-in-portfolio-financials" title="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#21019;&#24314;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#21019;&#24314;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#23558;&#25237;&#26631;&#20154;&#38145;&#23450;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#30340;&#23494;&#23553;&#25237;&#26631;&#23460;&#20043;&#22806;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#25237;&#26631;&#20154;&#38145;&#23450;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#30340;&#23494;&#23553;&#25237;&#26631;&#23460;&#20043;&#22806;&#65311;</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="&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#28155;&#21152;&#33258;&#23450;&#20041;&#25237;&#26631;&#34920;&#21333;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#28155;&#21152;&#33258;&#23450;&#20041;&#25237;&#26631;&#34920;&#21333;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#28155;&#21152;&#33258;&#23450;&#20041;&#25104;&#26412;&#36319;&#36394;&#22120;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#28155;&#21152;&#33258;&#23450;&#20041;&#25104;&#26412;&#36319;&#36394;&#22120;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25104;&#26412;&#39033;&#30340;&#21333;&#20010;&#20540;&#32534;&#21046;&#39044;&#31639;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25104;&#26412;&#39033;&#30340;&#21333;&#20010;&#20540;&#32534;&#21046;&#39044;&#31639;&#65311;</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="&#22914;&#20309;&#26597;&#30475;&#35841;&#26377;&#26435;&#26597;&#30475;&#26576;&#31181;&#31867;&#22411;&#30340;&#36890;&#20449;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26597;&#30475;&#35841;&#26377;&#26435;&#26597;&#30475;&#26576;&#31181;&#31867;&#22411;&#30340;&#36890;&#20449;&#65311;</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="&#22914;&#20309;&#25480;&#20104;&ldquo;&#26377;&#38480;&rdquo;&#29992;&#25143;&#35775;&#38382;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#29305;&#23450;&#25237;&#26631;&#23460;&#30340;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#25480;&#20104;&ldquo;&#26377;&#38480;&rdquo;&#29992;&#25143;&#35775;&#38382;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#29305;&#23450;&#25237;&#26631;&#23460;&#30340;&#26435;&#38480;&#65311;</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="&#25105;&#22914;&#20309;&#22788;&#29702;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340; CM &#36153;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#22914;&#20309;&#22788;&#29702;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340; CM &#36153;&#29992;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-keep-track-of-emailed-specifications" title="&#22914;&#20309;&#36319;&#36394;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#21457;&#36865;&#30340;&#35268;&#33539;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#36319;&#36394;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#21457;&#36865;&#30340;&#35268;&#33539;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25163;&#21160;&#28155;&#21152;&#25237;&#26631;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25163;&#21160;&#28155;&#21152;&#25237;&#26631;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30417;&#25511;&#25105;&#25152;&#26377;&#24314;&#31569;&#29289;&#30340;&#27963;&#21160;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30417;&#25511;&#25105;&#25152;&#26377;&#24314;&#31569;&#29289;&#30340;&#27963;&#21160;&#65311;</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="&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#39033;&#30446;&#20013;&#30340;&#25991;&#26723;&#35831;&#27714;&#25991;&#20214;&#22841;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#39033;&#30446;&#20013;&#30340;&#25991;&#26723;&#35831;&#27714;&#25991;&#20214;&#22841;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#36827;&#34892;&#26368;&#20339;&#21644;&#26368;&#21518;&#19968;&#36718;&#25237;&#26631;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#36827;&#34892;&#26368;&#20339;&#21644;&#26368;&#21518;&#19968;&#36718;&#25237;&#26631;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20849;&#20139;&#23545;&#25237;&#26631;&#23460;&#30340;&#35775;&#38382;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20849;&#20139;&#23545;&#25237;&#26631;&#23460;&#30340;&#35775;&#38382;&#26435;&#38480;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20849;&#20139;&#23545;&#21512;&#21516;&#23460;&#30340;&#35775;&#38382;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20849;&#20139;&#23545;&#21512;&#21516;&#23460;&#30340;&#35775;&#38382;&#26435;&#38480;&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#30340;&#39044;&#31639;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#30340;&#39044;&#31639;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#35299;&#38500;&#25237;&#26631;&#25110;&#21512;&#21516;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#35299;&#38500;&#25237;&#26631;&#25110;&#21512;&#21516;&#65311;</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="&#22914;&#20309;&#20351;&#29992; Procore &#30340;&#20107;&#20214;&#24037;&#20855;&#35760;&#24405;&#20896;&#29366;&#30149;&#27602; (COVID-19) &#24863;&#26579;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20351;&#29992; Procore &#30340;&#20107;&#20214;&#24037;&#20855;&#35760;&#24405;&#20896;&#29366;&#30149;&#27602; (COVID-19) &#24863;&#26579;&#20449;&#24687;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#35774;&#32622;&#23457;&#25209;&#24037;&#20316;&#27969;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#35774;&#32622;&#23457;&#25209;&#24037;&#20316;&#27969;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-bid-approvals-work-in-portfolio-financials" title="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-budget-approvals-work-in-portfolio-financials" title="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39044;&#31639;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39044;&#31639;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;</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="&#29616;&#37329;&#27969;&#39044;&#27979;&#21644;&#36164;&#37329;&#35268;&#21010;&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30456;&#20114;&#20316;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#29616;&#37329;&#27969;&#39044;&#27979;&#21644;&#36164;&#37329;&#35268;&#21010;&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30456;&#20114;&#20316;&#29992;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-contract-approvals-work-in-portfolio-financials" title="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#23558;&#24314;&#31569;&#28155;&#21152;&#21040;&#25105;&#30340;&#36134;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#23558;&#24314;&#31569;&#28155;&#21152;&#21040;&#25105;&#30340;&#36134;&#25143;&#65311;</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="&#22914;&#20309;&#21521;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#20379;&#24212;&#21830;&#37197;&#32622;&#25991;&#20214;&#28155;&#21152;&#20854;&#20182;&#32852;&#31995;&#20154;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21521;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#20379;&#24212;&#21830;&#37197;&#32622;&#25991;&#20214;&#28155;&#21152;&#20854;&#20182;&#32852;&#31995;&#20154;&#65311;</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="&#22914;&#20309;&#21521; Procore &#28155;&#21152;&#22836;&#20687;&#25110;&#20010;&#20154;&#36164;&#26009;&#29031;&#29255;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21521; Procore &#28155;&#21152;&#22836;&#20687;&#25110;&#20010;&#20154;&#36164;&#26009;&#29031;&#29255;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340; LinkedIn &#20010;&#20154;&#36164;&#26009;&#20013;&#28155;&#21152;&ldquo;Procore&rdquo;&#20316;&#20026;&#21487;&#35748;&#21487;&#30340;&#25216;&#33021;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25105;&#30340; LinkedIn &#20010;&#20154;&#36164;&#26009;&#20013;&#28155;&#21152;&ldquo;Procore&rdquo;&#20316;&#20026;&#21487;&#35748;&#21487;&#30340;&#25216;&#33021;&#65311;</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="&#22914;&#20309;&#22312; Procore &#20013;&#23558;&#24037;&#20855;&#28155;&#21152;&#21040;&#25910;&#34255;&#22841;&#21015;&#34920;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#20013;&#23558;&#24037;&#20855;&#28155;&#21152;&#21040;&#25910;&#34255;&#22841;&#21015;&#34920;&#65311;</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="&#22914;&#20309;&#22312; Procore &#30340;&#39044;&#31639;&#23548;&#20837;&#27169;&#26495;&#20013;&#28155;&#21152;&#22522;&#20110;&#21333;&#20301;&#30340;&#26126;&#32454;&#39033;&#35814;&#32454;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#30340;&#39044;&#31639;&#23548;&#20837;&#27169;&#26495;&#20013;&#28155;&#21152;&#22522;&#20110;&#21333;&#20301;&#30340;&#26126;&#32454;&#39033;&#35814;&#32454;&#20449;&#24687;&#65311;</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="&#24403;&#25105;&#20844;&#21496; Procore &#36134;&#25143;&#31105;&#29992;&#23458;&#25143;&#21512;&#21516;&#12289;&#36164;&#37329;&#25110;&#20027;&#21512;&#21516;&#24037;&#20855;&#26102;&#65292;&#25105;&#33021;&#22914;&#20309;&#35843;&#25972;&#39044;&#31639;&#35270;&#22270;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#25105;&#20844;&#21496; Procore &#36134;&#25143;&#31105;&#29992;&#23458;&#25143;&#21512;&#21516;&#12289;&#36164;&#37329;&#25110;&#20027;&#21512;&#21516;&#24037;&#20855;&#26102;&#65292;&#25105;&#33021;&#22914;&#20309;&#35843;&#25972;&#39044;&#31639;&#35270;&#22270;&#65311;</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="&#22914;&#20309;&#23558;&#20808;&#21069;&#20462;&#35746;&#20013;&#30340;&#26631;&#35760;&#24212;&#29992;&#21040;&#26032;&#20462;&#35746;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#20808;&#21069;&#20462;&#35746;&#20013;&#30340;&#26631;&#35760;&#24212;&#29992;&#21040;&#26032;&#20462;&#35746;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-avoid-and-report-phishing-emails" title="&#22914;&#20309;&#36991;&#20813;&#21644;&#25253;&#21578;&#32593;&#32476;&#38035;&#40060;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#36991;&#20813;&#21644;&#25253;&#21578;&#32593;&#32476;&#38035;&#40060;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#22914;&#20309;&#23558;&#26469;&#33258; Yardi &#30340;&#21457;&#31080;&#22238;&#22635;&#21040;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#26469;&#33258; Yardi &#30340;&#21457;&#31080;&#22238;&#22635;&#21040;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-change-a-known-password" title="&#22914;&#20309;&#26356;&#25913;&#24050;&#30693;&#23494;&#30721;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26356;&#25913;&#24050;&#30693;&#23494;&#30721;&#65311;</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="&#22914;&#20309;&#20026;&#25105;&#30340;&#39033;&#30446;&#36873;&#25321;&#40664;&#35748;&#23614;&#39033;&#39033;&#30446;&#32463;&#29702;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#25105;&#30340;&#39033;&#30446;&#36873;&#25321;&#40664;&#35748;&#23614;&#39033;&#39033;&#30446;&#32463;&#29702;&#65311;</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="&#22914;&#20309;&#22312; Procore &#20013;&#23436;&#25104;&#20197;&#21069;&#22312;&#29420;&#31435; Procore Estimating &#24212;&#29992;&#31243;&#24207;&#20013;&#23436;&#25104;&#30340;&#20219;&#21153;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#20013;&#23436;&#25104;&#20197;&#21069;&#22312;&#29420;&#31435; Procore Estimating &#24212;&#29992;&#31243;&#24207;&#20013;&#23436;&#25104;&#30340;&#20219;&#21153;&#65311;</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="&#22914;&#20309;&#20026;&#21457;&#31080;&#21019;&#24314;&#32467;&#31639;&#26399;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#21457;&#31080;&#21019;&#24314;&#32467;&#31639;&#26399;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-create-a-bookmark-to-procore" title="&#22914;&#20309;&#20026; Procore &#21019;&#24314;&#20070;&#31614;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026; Procore &#21019;&#24314;&#20070;&#31614;&#65311;</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="&#22914;&#20309;&#21019;&#24314; Procore &#30340;&#26700;&#38754;&#24555;&#25463;&#26041;&#24335;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21019;&#24314; Procore &#30340;&#26700;&#38754;&#24555;&#25463;&#26041;&#24335;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-create-a-fillable-pdf" title="&#22914;&#20309;&#21019;&#24314;&#21487;&#22635;&#20889; PDF&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21019;&#24314;&#21487;&#22635;&#20889; PDF&#65311;</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="&#22914;&#20309;&#22312; Procore &#20013;&#21019;&#24314;&#25110;&#21152;&#20837; Zoom &#20250;&#35758;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#20013;&#21019;&#24314;&#25110;&#21152;&#20837; Zoom &#20250;&#35758;&#65311;</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="&#22914;&#20309;&#30830;&#23450;&#22320;&#22336;&#30340;&#32428;&#24230;&#21644;&#32463;&#24230;&#20540;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#30830;&#23450;&#22320;&#22336;&#30340;&#32428;&#24230;&#21644;&#32463;&#24230;&#20540;&#65311;</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="&#22914;&#20309;&#30830;&#23450;&#26159;&#21542;&#24050;&#21457;&#36865;&#23614;&#39033;&#28165;&#21333;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#30830;&#23450;&#26159;&#21542;&#24050;&#21457;&#36865;&#23614;&#39033;&#28165;&#21333;&#39033;&#30446;&#65311;</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="&#22914;&#20309;&#22312;&#20027;&#39029;&#19978;&#26174;&#31034;&#39033;&#30446;&#26085;&#26399;&#21015;&#34920;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#20027;&#39029;&#19978;&#26174;&#31034;&#39033;&#30446;&#26085;&#26399;&#21015;&#34920;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-download-the-google-chrome-browser" title="&#22914;&#20309;&#19979;&#36733; Google Chrome &#27983;&#35272;&#22120;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#19979;&#36733; Google Chrome &#27983;&#35272;&#22120;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-download-the-mozilla-firefox-browser" title="&#22914;&#20309;&#19979;&#36733; Mozilla Firefox &#27983;&#35272;&#22120;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#19979;&#36733; Mozilla Firefox &#27983;&#35272;&#22120;&#65311;</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="&#22914;&#20309;&#19979;&#36733; Procore &#30340; Android &#31227;&#21160;&#24212;&#29992;&#31243;&#24207;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#19979;&#36733; Procore &#30340; Android &#31227;&#21160;&#24212;&#29992;&#31243;&#24207;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#32534;&#36753;&#21512;&#21516;&#21021;&#22987;&#22870;&#21169;&#37329;&#39069;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#32534;&#36753;&#21512;&#21516;&#21021;&#22987;&#22870;&#21169;&#37329;&#39069;&#65311;</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="&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#39033;&#30446;&#21551;&#29992;&#25104;&#26412;&#20998;&#37197;&#21644;&#32452;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#39033;&#30446;&#21551;&#29992;&#25104;&#26412;&#20998;&#37197;&#21644;&#32452;&#20214;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20026;&#21512;&#21516;&#21551;&#29992;&#20445;&#30041;&#37329;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20026;&#21512;&#21516;&#21551;&#29992;&#20445;&#30041;&#37329;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enable-the-docusign-integration" title="&#22914;&#20309;&#21551;&#29992; DocuSign&reg; &#38598;&#25104;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21551;&#29992; DocuSign&reg; &#38598;&#25104;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#36755;&#20837;&#20449;&#29992;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#36755;&#20837;&#20449;&#29992;&#21457;&#31080;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#36755;&#20837;&#24403;&#24180;&#30340;&#39044;&#31639;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#36755;&#20837;&#24403;&#24180;&#30340;&#39044;&#31639;&#39033;&#30446;&#65311;</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="&#22914;&#20309;&#23558;&#39033;&#30446;&#39044;&#31639;&#20174; Procore &#23548;&#20986;&#21040; Sage 300 CRE&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#39033;&#30446;&#39044;&#31639;&#20174; Procore &#23548;&#20986;&#21040; Sage 300 CRE&#65311;</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="&#22914;&#20309;&#33719;&#21462;&#36866;&#29992;&#20110; Mac OS X &#30340;&#26368;&#26032;&#29256;&#26412;&#30340; Safari&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#33719;&#21462;&#36866;&#29992;&#20110; Mac OS X &#30340;&#26368;&#26032;&#29256;&#26412;&#30340; Safari&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#25214;&#21040;&#23384;&#26723;&#30340;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#25214;&#21040;&#23384;&#26723;&#30340;&#39033;&#30446;&#65311;</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="&#22914;&#20309;&#30331;&#24405;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#30331;&#24405;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#65311;</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="&#22914;&#20309;&#23548;&#33322;&#21040;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23548;&#33322;&#21040;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-invoice-approvals-work-in-portfolio-financials" title="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21457;&#31080;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21457;&#31080;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;</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="&#22914;&#20309;&#23545;&#39029;&#38754;&#35780;&#20998;&#24182;&#21457;&#36865;&#21453;&#39304;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23545;&#39029;&#38754;&#35780;&#20998;&#24182;&#21457;&#36865;&#21453;&#39304;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#36816;&#34892;&#23494;&#23553;&#25237;&#26631;&#27969;&#31243;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#36816;&#34892;&#23494;&#23553;&#25237;&#26631;&#27969;&#31243;&#65311;</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="&#22914;&#20309;&#35774;&#32622;&#36890;&#20449;&#31867;&#22411;&#30340;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35774;&#32622;&#36890;&#20449;&#31867;&#22411;&#30340;&#26435;&#38480;&#65311;</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="&#22914;&#20309;&#20026; Procore &#37197;&#32622; Okta &#21333;&#28857;&#30331;&#24405; (SAML 2.0)&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026; Procore &#37197;&#32622; Okta &#21333;&#28857;&#30331;&#24405; (SAML 2.0)&#65311;</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="&#22914;&#20309;&#35774;&#32622;&ldquo;Procore &#20154;&#24037;&#29983;&#20135;&#21147;&#25104;&#26412;&rdquo;&#39044;&#31639;&#35270;&#22270;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35774;&#32622;&ldquo;Procore &#20154;&#24037;&#29983;&#20135;&#21147;&#25104;&#26412;&rdquo;&#39044;&#31639;&#35270;&#22270;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25552;&#20132;&#21464;&#26356;&#36890;&#30693;&#21333;&#21644;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25552;&#20132;&#21464;&#26356;&#36890;&#30693;&#21333;&#21644;&#21457;&#31080;&#65311;</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="&#22914;&#20309;&#22312; Procore &#20013;&#30340;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#39033;&#30446;&#31649;&#29702;&#24037;&#20855;&#21253;&#20043;&#38388;&#20999;&#25442;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#20013;&#30340;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#39033;&#30446;&#31649;&#29702;&#24037;&#20855;&#21253;&#20043;&#38388;&#20999;&#25442;&#65311;</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="&#22914;&#20309;&#20351;&#29992;&#23548;&#33322;&#26639;&#36820;&#22238;&#20844;&#21496;&#39033;&#30446;&#38598;&#21512;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20351;&#29992;&#23548;&#33322;&#26639;&#36820;&#22238;&#20844;&#21496;&#39033;&#30446;&#38598;&#21512;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-use-the-notification-center" title="&#22914;&#20309;&#20351;&#29992;&#36890;&#30693;&#20013;&#24515;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20351;&#29992;&#36890;&#30693;&#20013;&#24515;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-permissions-work-for-the-conversations-tool" title="&#23545;&#35805;&#24037;&#20855;&#30340;&#26435;&#38480;&#22914;&#20309;&#24037;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#23545;&#35805;&#24037;&#20855;&#30340;&#26435;&#38480;&#22914;&#20309;&#24037;&#20316;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-will-configured-fieldsets-affect-my-existing-projects" title="&#37197;&#32622;&#30340;&#23383;&#27573;&#38598;&#23558;&#22914;&#20309;&#24433;&#21709;&#29616;&#26377;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#37197;&#32622;&#30340;&#23383;&#27573;&#38598;&#23558;&#22914;&#20309;&#24433;&#21709;&#29616;&#26377;&#39033;&#30446;&#65311;</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="&#25105;&#22914;&#20309;&#30693;&#36947;&#25105;&#30340;&#21457;&#31080;&#25110;&#21464;&#26356;&#36890;&#30693;&#21333;&#20309;&#26102;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#34987;&#25209;&#20934;&#25110;&#25298;&#32477;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#22914;&#20309;&#30693;&#36947;&#25105;&#30340;&#21457;&#31080;&#25110;&#21464;&#26356;&#36890;&#30693;&#21333;&#20309;&#26102;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#34987;&#25209;&#20934;&#25110;&#25298;&#32477;&#65311;</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="&#22914;&#26524;&#29992;&#25143;&#27809;&#26377;&#26597;&#30475;&#29305;&#23450;&#36890;&#20449;&#31867;&#22411;&#30340;&#26435;&#38480;&#65292;&#20182;&#20204;&#33021;&#21542;&#22312;&#20854;&ldquo;&#39033;&#30446;&#27010;&#20917;&rdquo;&#20202;&#34920;&#26495;&#20013;&#26597;&#30475;&#35813;&#36890;&#20449;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#29992;&#25143;&#27809;&#26377;&#26597;&#30475;&#29305;&#23450;&#36890;&#20449;&#31867;&#22411;&#30340;&#26435;&#38480;&#65292;&#20182;&#20204;&#33021;&#21542;&#22312;&#20854;&ldquo;&#39033;&#30446;&#27010;&#20917;&rdquo;&#20202;&#34920;&#26495;&#20013;&#26597;&#30475;&#35813;&#36890;&#20449;&#31867;&#22411;&#65311;</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 &#35748;&#35777;&#27979;&#39564;&#26159;&#21542;&#26377;&#26368;&#20302;&#21450;&#26684;&#20998;&#25968;&#65311;"><span class="mt-icon-article-none"></span>Procore &#35748;&#35777;&#27979;&#39564;&#26159;&#21542;&#26377;&#26368;&#20302;&#21450;&#26684;&#20998;&#25968;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/plug-icon-missing-marketplace-nav-how-to" title="&ldquo;&#25554;&#22836;&rdquo;&#22270;&#26631;&#24050;&#31227;&#38500;&#65292;&#25105;&#22914;&#20309;&#23548;&#33322;&#21040;&#24212;&#29992;&#21830;&#24215;&#65311;"><span class="mt-icon-article-none"></span>&ldquo;&#25554;&#22836;&rdquo;&#22270;&#26631;&#24050;&#31227;&#38500;&#65292;&#25105;&#22914;&#20309;&#23548;&#33322;&#21040;&#24212;&#29992;&#21830;&#24215;&#65311;</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="&#26159;&#21542;&#24212;&#35813;&#26356;&#26032;&#39044;&#31639;&#35270;&#22270;&#20197;&#23558; RFQ &#20540;&#28155;&#21152;&#21040;&#39044;&#31639;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#26159;&#21542;&#24212;&#35813;&#26356;&#26032;&#39044;&#31639;&#35270;&#22270;&#20197;&#23558; RFQ &#20540;&#28155;&#21152;&#21040;&#39044;&#31639;&#20013;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-approvals-in-portfolio-financials" title="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#23457;&#25209;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#23457;&#25209;&#65311;</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="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25104;&#26412;&#20998;&#37197;&#21644;&#32452;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25104;&#26412;&#20998;&#37197;&#21644;&#32452;&#20214;&#65311;</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="&#26377;&#21738;&#20123;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#20197;&#21450;&#25105;&#20204;&#30340; ERP &#38598;&#25104;&#22914;&#20309;&#25903;&#25345;&#36825;&#20123;&#25104;&#26412;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#26377;&#21738;&#20123;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#20197;&#21450;&#25105;&#20204;&#30340; ERP &#38598;&#25104;&#22914;&#20309;&#25903;&#25345;&#36825;&#20123;&#25104;&#26412;&#31867;&#22411;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-meeting-minutes" title="&#20160;&#20040;&#26159;&#20250;&#35758;&#32426;&#35201;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20250;&#35758;&#32426;&#35201;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#37324;&#31243;&#30865;&#20381;&#36182;&#39033;&#26159;&#20160;&#20040;&#65311;&#22914;&#20309;&#36827;&#34892;&#35774;&#32622;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#37324;&#31243;&#30865;&#20381;&#36182;&#39033;&#26159;&#20160;&#20040;&#65311;&#22914;&#20309;&#36827;&#34892;&#35774;&#32622;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-product-categories" title="Procore &#30340;&#20135;&#21697;&#31867;&#21035;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#20135;&#21697;&#31867;&#21035;&#26377;&#21738;&#20123;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21153;&#21644;&#36164;&#37329;&#35268;&#21010;&#25253;&#21578;&#30340;&#19968;&#20123;&#26368;&#20339;&#23454;&#36341;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21153;&#21644;&#36164;&#37329;&#35268;&#21010;&#25253;&#21578;&#30340;&#19968;&#20123;&#26368;&#20339;&#23454;&#36341;&#26159;&#20160;&#20040;&#65311;</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="&#21487;&#20197;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#29983;&#25104;&#21738;&#20123;&#25253;&#21578;&#31034;&#20363;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#29983;&#25104;&#21738;&#20123;&#25253;&#21578;&#31034;&#20363;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-budget-warning-banner-changes" title="&#39044;&#31639;&#35686;&#21578;&#27178;&#24133;&#26377;&#21738;&#20123;&#21464;&#21270;&#65311;"><span class="mt-icon-article-none"></span>&#39044;&#31639;&#35686;&#21578;&#27178;&#24133;&#26377;&#21738;&#20123;&#21464;&#21270;&#65311;</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="&#23548;&#20837;&#27169;&#26495;&#20013;&#30340;&#21015;&#26631;&#39064;&#26356;&#26032;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#23548;&#20837;&#27169;&#26495;&#20013;&#30340;&#21015;&#26631;&#39064;&#26356;&#26032;&#26159;&#20160;&#20040;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#33258;&#23450;&#20041;&#25253;&#21578;&#21487;&#20351;&#29992;&#21738;&#20123;&#25968;&#25454;&#28857;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#33258;&#23450;&#20041;&#25253;&#21578;&#21487;&#20351;&#29992;&#21738;&#20123;&#25968;&#25454;&#28857;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#36164;&#37329;&#35268;&#21010;&#30340;&#25968;&#25454;&#28857;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#36164;&#37329;&#35268;&#21010;&#30340;&#25968;&#25454;&#28857;&#26159;&#20160;&#20040;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#22242;&#38431;&#25104;&#21592;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#26435;&#38480;&#32423;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#22242;&#38431;&#25104;&#21592;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#26435;&#38480;&#32423;&#21035;&#65311;</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 &#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#31867;&#22411;&#30340;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#31867;&#22411;&#30340;&#21457;&#31080;&#65311;</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 &#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&ldquo;&#29992;&#25143;&#35282;&#33394;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>Procore Estimating &#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&ldquo;&#29992;&#25143;&#35282;&#33394;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-touch-commands" title="&#20160;&#20040;&#26159;&#35302;&#25511;&#25351;&#20196;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#35302;&#25511;&#25351;&#20196;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-uncategorized-invoices-in-portfolio-financials" title="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#26410;&#20998;&#31867;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#26410;&#20998;&#31867;&#21457;&#31080;&#65311;</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="&ldquo;&#36865;&#23457;&#26085;&#24535;&rdquo;&#20013;&#30340;&#27599;&#19968;&#21015;&#20195;&#34920;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&ldquo;&#36865;&#23457;&#26085;&#24535;&rdquo;&#20013;&#30340;&#27599;&#19968;&#21015;&#20195;&#34920;&#20160;&#20040;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&ldquo;&#39033;&#30446;&#27604;&#36739;&rdquo;&#26631;&#31614;&#39029;&#20013;&#30340;&#31661;&#22836;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&ldquo;&#39033;&#30446;&#27604;&#36739;&rdquo;&#26631;&#31614;&#39029;&#20013;&#30340;&#31661;&#22836;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;</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="&#39033;&#30446;&#31649;&#29702;&#21592;&#24037;&#20855;&#20013;&#30340;&#26085;&#26399;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#31649;&#29702;&#21592;&#24037;&#20855;&#20013;&#30340;&#26085;&#26399;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#23457;&#25209;&#24037;&#20316;&#27969;&#20250;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#23457;&#25209;&#24037;&#20316;&#27969;&#20250;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;</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="&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#30340;&#25237;&#26631;&#36807;&#31243;&#20013;&#20250;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#30340;&#25237;&#26631;&#36807;&#31243;&#20013;&#20250;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#39033;&#30446;&#30340;&#23458;&#25143;&#21512;&#21516;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#23458;&#25143;&#21512;&#21516;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#22270;&#32440;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#22270;&#32440;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#36164;&#37329;&#24037;&#20855;&#26377;&#21738;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#36164;&#37329;&#24037;&#20855;&#26377;&#21738;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-change-event" title="&#20160;&#20040;&#26159;&#21464;&#26356;&#20107;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21464;&#26356;&#20107;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-change-order" title="&#20160;&#20040;&#26159;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-completed-action-plan-receiver" title="&#20160;&#20040;&#26159;&ldquo;&#24050;&#23436;&#25104;&#34892;&#21160;&#35745;&#21010;&#30340;&#25509;&#25910;&#32773;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&ldquo;&#24050;&#23436;&#25104;&#34892;&#21160;&#35745;&#21010;&#30340;&#25509;&#25910;&#32773;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-daily-log" title="&#20160;&#20040;&#26159;&#24037;&#20316;&#26085;&#24535;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#24037;&#20316;&#26085;&#24535;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-assignment-alert-in-resource-planning" title="&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;&#20013;&#30340;&#20998;&#37197;&#35686;&#25253;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;&#20013;&#30340;&#20998;&#37197;&#35686;&#25253;&#65311;</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="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#39033;&#30446;&#27604;&#36739;&#30340;&#31034;&#20363;&#29992;&#20363;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#39033;&#30446;&#27604;&#36739;&#30340;&#31034;&#20363;&#29992;&#20363;&#65311;</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="&#20160;&#20040;&#26159; Asta Powerproject &#20197;&#21450;&#23427;&#22914;&#20309;&#19982; Procore &#38598;&#25104;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Asta Powerproject &#20197;&#21450;&#23427;&#22914;&#20309;&#19982; Procore &#38598;&#25104;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-tm-ticket" title="&#20160;&#20040;&#26159;&#24037;&#26102;&#21644;&#26448;&#26009;&#21333;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#24037;&#26102;&#21644;&#26448;&#26009;&#21333;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-bluebeam-studio" title="&#20160;&#20040;&#26159; Bluebeam Studio&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Bluebeam Studio&#65311;</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 &#21457;&#36865;&#30340;&#30005;&#23376;&#37038;&#20214;&#20013;&#26377;&#20160;&#20040;&#20869;&#23481;&#65311;"><span class="mt-icon-article-none"></span>Procore &#21457;&#36865;&#30340;&#30005;&#23376;&#37038;&#20214;&#20013;&#26377;&#20160;&#20040;&#20869;&#23481;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-maintenance" title="&#20160;&#20040;&#26159;&#32500;&#25252;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32500;&#25252;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-phishing" title="&#20160;&#20040;&#26159;&#32593;&#32476;&#38035;&#40060;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32593;&#32476;&#38035;&#40060;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-portfolio-financials" title="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-availability" title="&#20160;&#20040;&#26159; Procore &#30340;&#21487;&#29992;&#24615;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#30340;&#21487;&#29992;&#24615;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-unavailibility" title="&#20160;&#20040;&#26159; Procore &#30340;&#19981;&#21487;&#29992;&#24615;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#30340;&#19981;&#21487;&#29992;&#24615;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-project-cost-reporting-in-portfolio-financials" title="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#25104;&#26412;&#25253;&#21578;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#25104;&#26412;&#25253;&#21578;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-bid-room-in-portfolio-financials" title="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-contract-room-in-portfolio-financials" title="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23460;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23460;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-correspondence-tool" title="&#20160;&#20040;&#26159;&#36890;&#20449;&#24037;&#20855;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#36890;&#20449;&#24037;&#20855;&#65311;</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="&#22312;&#26576;&#20123;&#27983;&#35272;&#22120;&#19978;&#25773;&#25918;&#35748;&#35777;&#35270;&#39057;&#30340;&#40664;&#35748;&#34892;&#20026;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#26576;&#20123;&#27983;&#35272;&#22120;&#19978;&#25773;&#25918;&#35748;&#35777;&#35270;&#39057;&#30340;&#40664;&#35748;&#34892;&#20026;&#26159;&#20160;&#20040;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#37324;&#31243;&#30865;&#30340;&ldquo;&#22522;&#20934;&rdquo;&#21644;&ldquo;&#39044;&#27979;&#25110;&#23454;&#38469;&rdquo;&#26085;&#26399;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#37324;&#31243;&#30865;&#30340;&ldquo;&#22522;&#20934;&rdquo;&#21644;&ldquo;&#39044;&#27979;&#25110;&#23454;&#38469;&rdquo;&#26085;&#26399;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;</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="&quot;&#36164;&#28304;&#36319;&#36394;&quot;&#21644;&quot;&#36164;&#28304;&#31649;&#29702;&quot;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&quot;&#36164;&#28304;&#36319;&#36394;&quot;&#21644;&quot;&#36164;&#28304;&#31649;&#29702;&quot;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&ldquo;&#25105;&#30340;&#20219;&#21153;&rdquo;&#39029;&#38754;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&ldquo;&#25105;&#30340;&#20219;&#21153;&rdquo;&#39029;&#38754;&#26159;&#20160;&#20040;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#39033;&#30446;&#39029;&#38754;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#39033;&#30446;&#39029;&#38754;&#26159;&#20160;&#20040;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#22242;&#38431;&#26159;&#20160;&#20040;&#65311;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#26435;&#38480;&#32423;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#22242;&#38431;&#26159;&#20160;&#20040;&#65311;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#26435;&#38480;&#32423;&#21035;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&ldquo;&#21457;&#36865;&#21040;&#24212;&#20184;&#20250;&#35745;&rdquo;&#21151;&#33021;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&ldquo;&#21457;&#36865;&#21040;&#24212;&#20184;&#20250;&#35745;&rdquo;&#21151;&#33021;&#26159;&#20160;&#20040;&#65311;</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="&#21487;&#20197;&#22312;&#23545;&#35805;&#24037;&#20855;&#20013;&#23558;&#21738;&#20123;&#39033;&#30446;&#28155;&#21152;&#21040;&#28040;&#24687;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#22312;&#23545;&#35805;&#24037;&#20855;&#20013;&#23558;&#21738;&#20123;&#39033;&#30446;&#28155;&#21152;&#21040;&#28040;&#24687;&#20013;&#65311;</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="&#22914;&#26524;&#25105;&#24536;&#35760;&#20102;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#30340;&#23494;&#30721;&#65292;&#35813;&#24590;&#20040;&#21150;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#25105;&#24536;&#35760;&#20102;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#30340;&#23494;&#30721;&#65292;&#35813;&#24590;&#20040;&#21150;&#65311;</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="&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#23457;&#25209;&#24037;&#20316;&#27969;&#65292;&#25105;&#24212;&#35813;&#20102;&#35299;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#23457;&#25209;&#24037;&#20316;&#27969;&#65292;&#25105;&#24212;&#35813;&#20102;&#35299;&#20160;&#20040;&#65311;</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="&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;</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="&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;</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="&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#24320;&#21457;&#31080;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#24320;&#21457;&#31080;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;</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="&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23460;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23460;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;</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="&#20160;&#20040;&#26102;&#20505;&#20250;&#25910;&#21040;&#26377;&#20851;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25237;&#26631;&#30340;&#39033;&#30446;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26102;&#20505;&#20250;&#25910;&#21040;&#26377;&#20851;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25237;&#26631;&#30340;&#39033;&#30446;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;</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 &#20013;&#30340;&#36136;&#37327;&#21644;&#23433;&#20840;&#21435;&#21738;&#37324;&#20102;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#36136;&#37327;&#21644;&#23433;&#20840;&#21435;&#21738;&#37324;&#20102;&#65311;</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 &#30340; WBS &#20013;&ldquo;&#25104;&#26412;&#32534;&#21495;&rdquo;&#32454;&#20998;&#20013;&#30340;&ldquo;&#20998;&#37096;&rdquo;&#22312;&#21738;&#37324;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340; WBS &#20013;&ldquo;&#25104;&#26412;&#32534;&#21495;&rdquo;&#32454;&#20998;&#20013;&#30340;&ldquo;&#20998;&#37096;&rdquo;&#22312;&#21738;&#37324;&#65311;</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 &#25903;&#25345;&#21738;&#20123; Asta Powerproject &#25991;&#20214;&#26684;&#24335;&#65311;"><span class="mt-icon-article-none"></span>Procore &#25903;&#25345;&#21738;&#20123; Asta Powerproject &#25991;&#20214;&#26684;&#24335;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-platforms-support-azure-ad-sso" title="&#21738;&#20123; Procore &#24179;&#21488;&#25903;&#25345;Azure AD &#65288;Entra ID&#65289;&#21333;&#28857;&#30331;&#24405;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24179;&#21488;&#25903;&#25345;Azure AD &#65288;Entra ID&#65289;&#21333;&#28857;&#30331;&#24405;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-can-see-private-action-plans" title="&#35841;&#21487;&#20197;&#26597;&#30475;&#31169;&#23494;&#34892;&#21160;&#35745;&#21010;&#65311;"><span class="mt-icon-article-none"></span>&#35841;&#21487;&#20197;&#26597;&#30475;&#31169;&#23494;&#34892;&#21160;&#35745;&#21010;&#65311;</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="&#35841;&#21487;&#20197;&#26597;&#30475;&#39033;&#30446;&#30446;&#24405;&#20013;&#21015;&#20986;&#30340;&#29992;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#35841;&#21487;&#20197;&#26597;&#30475;&#39033;&#30446;&#30446;&#24405;&#20013;&#21015;&#20986;&#30340;&#29992;&#25143;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#27809;&#26377;&#25910;&#21040;&#26469;&#33258;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#27809;&#26377;&#25910;&#21040;&#26469;&#33258;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#35270;&#28857;&#23548;&#20837;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25105;&#30340;&#25152;&#26377;&#35270;&#28857;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#35270;&#28857;&#23548;&#20837;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25105;&#30340;&#25152;&#26377;&#35270;&#28857;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#23558;&#25991;&#20214;&#20851;&#32852;&#21040;&#25105;&#30340;&#39033;&#30446;&#21518;&#30475;&#19981;&#21040;&#25105;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#23558;&#25991;&#20214;&#20851;&#32852;&#21040;&#25105;&#30340;&#39033;&#30446;&#21518;&#30475;&#19981;&#21040;&#25105;&#30340;&#38382;&#39064;&#65311;</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="&#20026;&#20160;&#20040; Procore &#20013;&#32570;&#23569;&#23545; Sage &#25968;&#25454;&#24211;&#30340;&#26368;&#36817;&#26356;&#25913;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; Procore &#20013;&#32570;&#23569;&#23545; Sage &#25968;&#25454;&#24211;&#30340;&#26368;&#36817;&#26356;&#25913;&#65311;</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="&#22914;&#26524;&#26080;&#27861;&#26597;&#30475;&#20027;&#21512;&#21516;&#65292;&#20026;&#20160;&#20040;&#21487;&#20197;&#35775;&#38382;&#20027;&#21512;&#21516;&#24037;&#20855;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#26080;&#27861;&#26597;&#30475;&#20027;&#21512;&#21516;&#65292;&#20026;&#20160;&#20040;&#21487;&#20197;&#35775;&#38382;&#20027;&#21512;&#21516;&#24037;&#20855;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#21487;&#20197;&#26597;&#30475;&#21512;&#32422;&#24037;&#20855;&#20294;&#30475;&#19981;&#21040;&#20219;&#20309;&#21512;&#32422;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#21487;&#20197;&#26597;&#30475;&#21512;&#32422;&#24037;&#20855;&#20294;&#30475;&#19981;&#21040;&#20219;&#20309;&#21512;&#32422;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-delete-items-in-procore" title="&#20026;&#20160;&#20040;&#19981;&#33021;&#22312; Procore &#20013;&#21024;&#38500;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#19981;&#33021;&#22312; Procore &#20013;&#21024;&#38500;&#39033;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#32534;&#36753;&#25110;&#21024;&#38500;&ldquo;&#33719;&#25209;&rdquo;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#32534;&#36753;&#25110;&#21024;&#38500;&ldquo;&#33719;&#25209;&rdquo;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#23637;&#24320;&ldquo;&#20013;&#26631;&#20540;&rdquo;&#34892;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#23637;&#24320;&ldquo;&#20013;&#26631;&#20540;&rdquo;&#34892;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#20174;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#23548;&#20986;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#20174;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#23548;&#20986;&#39033;&#30446;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#30331;&#24405;&ldquo;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&rdquo;&#21644;&ldquo;&#36164;&#37329;&#35268;&#21010;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#30331;&#24405;&ldquo;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&rdquo;&#21644;&ldquo;&#36164;&#37329;&#35268;&#21010;&rdquo;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#39033;&#30446;&#20013;&#30475;&#19981;&#21040;&#25152;&#26377;&#25910;&#34255;&#30340;&#24037;&#20855;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#39033;&#30446;&#20013;&#30475;&#19981;&#21040;&#25152;&#26377;&#25910;&#34255;&#30340;&#24037;&#20855;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30475;&#19981;&#21040;&#25237;&#26631;&#23460;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30475;&#19981;&#21040;&#25237;&#26631;&#23460;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30475;&#19981;&#21040;&#21512;&#21516;&#23460;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30475;&#19981;&#21040;&#21512;&#21516;&#23460;&#65311;</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="&#20026;&#20160;&#20040;&#22312;&ldquo;&#25105;&#30340;&#20010;&#20154;&#36164;&#26009;&#35774;&#32622;&rdquo;&#20013;&#30475;&#19981;&#21040;&ldquo;&#25910;&#34255;&#22841;&rdquo;&#26631;&#31614;&#39029;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#22312;&ldquo;&#25105;&#30340;&#20010;&#20154;&#36164;&#26009;&#35774;&#32622;&rdquo;&#20013;&#30475;&#19981;&#21040;&ldquo;&#25910;&#34255;&#22841;&rdquo;&#26631;&#31614;&#39029;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312; Navisworks&reg; &#20013;&#20351;&#29992;&#20113;&#32418;&#32447;&#24037;&#20855;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312; Navisworks&reg; &#20013;&#20351;&#29992;&#20113;&#32418;&#32447;&#24037;&#20855;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#22242;&#38431;&#25104;&#21592;&#26080;&#27861;&#26597;&#30475;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#22242;&#38431;&#25104;&#21592;&#26080;&#27861;&#26597;&#30475;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#39033;&#30446;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#20379;&#24212;&#21830;&#26080;&#27861;&#35775;&#38382;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#20379;&#24212;&#21830;&#26080;&#27861;&#35775;&#38382;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#65311;</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="&#20026;&#20160;&#20040; Procore &#20174; procoretech.com &#25913;&#20026; app.procore.com&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; Procore &#20174; procoretech.com &#25913;&#20026; app.procore.com&#65311;</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="&#25105;&#20026;&#20160;&#20040;&#27809;&#26377;&#26597;&#30475;&#27492;&#32593;&#39029;&#30340;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#20026;&#20160;&#20040;&#27809;&#26377;&#26597;&#30475;&#27492;&#32593;&#39029;&#30340;&#26435;&#38480;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#33021;&#22312;&#21171;&#21160;&#21147;&#35268;&#21010;&#20013;&#30475;&#21040;&#20154;&#21592;&#65292;&#22312; Procore &#20013;&#21364;&#19981;&#33021;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#33021;&#22312;&#21171;&#21160;&#21147;&#35268;&#21010;&#20013;&#30475;&#21040;&#20154;&#21592;&#65292;&#22312; Procore &#20013;&#21364;&#19981;&#33021;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#26080;&#26435;&#26597;&#30475;&#36164;&#28304;&#35268;&#21010;&#24037;&#20855;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#26435;&#26597;&#30475;&#36164;&#28304;&#35268;&#21010;&#24037;&#20855;&#65311;</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="&#20026;&#20160;&#20040; Planroom &#20013;&#27809;&#26377;&#25105;&#30340;&#25237;&#26631;&#25991;&#20214;&#21253;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; Planroom &#20013;&#27809;&#26377;&#25105;&#30340;&#25237;&#26631;&#25991;&#20214;&#21253;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-isnt-my-project-weather-working" title="&#20026;&#20160;&#20040;&#25105;&#30340;&#39033;&#30446;&#22825;&#27668;&#23567;&#37096;&#20214;&#19981;&#24037;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#39033;&#30446;&#22825;&#27668;&#23567;&#37096;&#20214;&#19981;&#24037;&#20316;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-were-the-deep-dive-training-courses-deprecated" title="&#20026;&#20160;&#20040;&ldquo;&#28145;&#20837;&#30740;&#31350;&#22521;&#35757;&rdquo;&#35838;&#31243;&#34987;&#24323;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&ldquo;&#28145;&#20837;&#30740;&#31350;&#22521;&#35757;&rdquo;&#35838;&#31243;&#34987;&#24323;&#29992;&#65311;</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="&#25237;&#26631;&#23460;&#20013;&#30340;&#26085;&#26399;&#26159;&#21542;&#20250;&#28155;&#21152;&#21040;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#37324;&#31243;&#30865;&#65311;"><span class="mt-icon-article-none"></span>&#25237;&#26631;&#23460;&#20013;&#30340;&#26085;&#26399;&#26159;&#21542;&#20250;&#28155;&#21152;&#21040;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#37324;&#31243;&#30865;&#65311;</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="&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-rotate-a-drawing-in-procore" title="&#25105;&#21487;&#20197;&#22312; Procore &#20013;&#26059;&#36716;&#22270;&#32440;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312; Procore &#20013;&#26059;&#36716;&#22270;&#32440;&#21527;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-the-drawing-markup-tool-be-disabled" title="&#21487;&#20197;&#31105;&#29992;&#22270;&#32440;&#26631;&#35760;&#24037;&#20855;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#31105;&#29992;&#22270;&#32440;&#26631;&#35760;&#24037;&#20855;&#21527;&#65311;</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="&#22914;&#20309;&#25552;&#39640;&#22270;&#32440;&#19978; OCR &#30340;&#20934;&#30830;&#24615;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#25552;&#39640;&#22270;&#32440;&#19978; OCR &#30340;&#20934;&#30830;&#24615;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-keep-track-of-emailed-drawings" title="&#22914;&#20309;&#36319;&#36394;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#21457;&#36865;&#30340;&#22270;&#32440;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#36319;&#36394;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#21457;&#36865;&#30340;&#22270;&#32440;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#22914;&#20309;&#23558;&#20808;&#21069;&#20462;&#35746;&#20013;&#30340;&#26631;&#35760;&#24212;&#29992;&#21040;&#26032;&#20462;&#35746;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#20808;&#21069;&#20462;&#35746;&#20013;&#30340;&#26631;&#35760;&#24212;&#29992;&#21040;&#26032;&#20462;&#35746;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-drawing-areas" title="&#20160;&#20040;&#26159;&#22270;&#32440;&#21306;&#22495;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#22270;&#32440;&#21306;&#22495;&#65311;</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="&#25105;&#30340;&#22270;&#32440;&#26085;&#24535;&#20013;&#30340;&#34013;&#33394;&#22270;&#26631;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#30340;&#22270;&#32440;&#26085;&#24535;&#20013;&#30340;&#34013;&#33394;&#22270;&#26631;&#26159;&#20160;&#20040;&#65311;</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="&#22270;&#32440;&#19978;&#30340;&#23614;&#39033;&#39033;&#30446;&#39068;&#33394;&#20195;&#30721;&#26377;&#20160;&#20040;&#21547;&#20041;&#65311;"><span class="mt-icon-article-none"></span>&#22270;&#32440;&#19978;&#30340;&#23614;&#39033;&#39033;&#30446;&#39068;&#33394;&#20195;&#30721;&#26377;&#20160;&#20040;&#21547;&#20041;&#65311;</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="&#39033;&#30446;&#30340;&#22270;&#32440;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#22270;&#32440;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-drawing-set" title="&#20160;&#20040;&#26159;&#22270;&#32440;&#38598;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#22270;&#32440;&#38598;&#65311;</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="&#20351;&#29992;&#22270;&#32440;&#26631;&#35760;&#36827;&#34892;&#22797;&#21046;&#21644;&#22797;&#21046;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#20351;&#29992;&#22270;&#32440;&#26631;&#35760;&#36827;&#34892;&#22797;&#21046;&#21644;&#22797;&#21046;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#20010;&#20154;&#22270;&#32440;&#26631;&#35760;&#19982;&#24050;&#21457;&#24067;&#22270;&#32440;&#26631;&#35760;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#20010;&#20154;&#22270;&#32440;&#26631;&#35760;&#19982;&#24050;&#21457;&#24067;&#22270;&#32440;&#26631;&#35760;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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 &#20013;&#30340;&#26629;&#26684;&#21644;&#30690;&#37327;&#20869;&#23481;&#26377;&#20309;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>PDF &#20013;&#30340;&#26629;&#26684;&#21644;&#30690;&#37327;&#20869;&#23481;&#26377;&#20309;&#21306;&#21035;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-unpublished-status-on-drawings" title="&#20160;&#20040;&#26159;&#22270;&#32440;&#30340;&#26410;&#21457;&#24067;&#29366;&#24577;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#22270;&#32440;&#30340;&#26410;&#21457;&#24067;&#29366;&#24577;&#65311;</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="&#21487;&#20197;&#22312;&#31227;&#21160;&#35774;&#22791;&#19978;&#23558;&#21738;&#20123;&#24037;&#20855;&#29992;&#20110;&#38750;&#27963;&#21160;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#22312;&#31227;&#21160;&#35774;&#22791;&#19978;&#23558;&#21738;&#20123;&#24037;&#20855;&#29992;&#20110;&#38750;&#27963;&#21160;&#39033;&#30446;&#65311;</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="&#19978;&#20256;&#22270;&#32440;&#26102;&#65292;Procore &#21487;&#20197;&#33258;&#21160;&#22635;&#20805;&#21738;&#20123;&#23383;&#27573;&#65311;"><span class="mt-icon-article-none"></span>&#19978;&#20256;&#22270;&#32440;&#26102;&#65292;Procore &#21487;&#20197;&#33258;&#21160;&#22635;&#20805;&#21738;&#20123;&#23383;&#27573;&#65311;</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="&#22270;&#32440;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#22270;&#32440;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#35841;&#20250;&#25910;&#21040;&#22270;&#32440;&#24037;&#20855;&#20013;&#30340;&#26356;&#26032;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#35841;&#20250;&#25910;&#21040;&#22270;&#32440;&#24037;&#20855;&#20013;&#30340;&#26356;&#26032;&#36890;&#30693;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-notifications-about-project-connections" title="&#35841;&#20250;&#25910;&#21040;&#26377;&#20851;&#39033;&#30446;&#36830;&#25509;&#30340;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#35841;&#20250;&#25910;&#21040;&#26377;&#20851;&#39033;&#30446;&#36830;&#25509;&#30340;&#36890;&#30693;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-automatic-drawing-sheet-links-missing" title="&#20026;&#20160;&#20040;&#33258;&#21160;&#22270;&#32440;&#39029;&#38142;&#25509;&#20002;&#22833;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#33258;&#21160;&#22270;&#32440;&#39029;&#38142;&#25509;&#20002;&#22833;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-drawing-comparisons-failing" title="&#20026;&#20160;&#20040;&#25105;&#30340;&#22270;&#32440;&#23545;&#27604;&#22833;&#36133;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#22270;&#32440;&#23545;&#27604;&#22833;&#36133;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-drawing-uploads-failing" title="&#20026;&#20160;&#20040;&#25105;&#30340;&#22270;&#32440;&#19978;&#20256;&#22833;&#36133;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#22270;&#32440;&#19978;&#20256;&#22833;&#36133;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-delete-items-in-procore" title="&#20026;&#20160;&#20040;&#19981;&#33021;&#22312; Procore &#20013;&#21024;&#38500;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#19981;&#33021;&#22312; Procore &#20013;&#21024;&#38500;&#39033;&#65311;</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="&#25105;&#21487;&#20197;&#38459;&#27490;&#22312;&#21608;&#26411;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#38459;&#27490;&#22312;&#21608;&#26411;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#21527;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-receiving-procore-emails-at-night" title="&#20026;&#20160;&#20040;&#20250;&#22312;&#26202;&#19978;&#25910;&#21040; Procore &#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#20250;&#22312;&#26202;&#19978;&#25910;&#21040; Procore &#30005;&#23376;&#37038;&#20214;&#65311;</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="&#25105;&#20204;&#26159;&#21542;&#24517;&#39035;&#20351;&#29992;&#30005;&#23376;&#37038;&#20214;&#24037;&#20855;&#21019;&#24314;&#21644;&#21457;&#36865;&#25105;&#20204;&#25152;&#26377;&#30340;&#39033;&#30446;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#20204;&#26159;&#21542;&#24517;&#39035;&#20351;&#29992;&#30005;&#23376;&#37038;&#20214;&#24037;&#20855;&#21019;&#24314;&#21644;&#21457;&#36865;&#25105;&#20204;&#25152;&#26377;&#30340;&#39033;&#30446;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#22914;&#20309;&#20026; mailto &#38142;&#25509;&#26356;&#25913;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#30340;&#40664;&#35748;&#30005;&#23376;&#37038;&#20214;&#23458;&#25143;&#31471;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026; mailto &#38142;&#25509;&#26356;&#25913;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#30340;&#40664;&#35748;&#30005;&#23376;&#37038;&#20214;&#23458;&#25143;&#31471;&#65311;</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="&#22914;&#20309;&#30830;&#20445; Procore &#30005;&#23376;&#37038;&#20214;&#36865;&#36798;&#25910;&#20214;&#20154;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#30830;&#20445; Procore &#30005;&#23376;&#37038;&#20214;&#36865;&#36798;&#25910;&#20214;&#20154;&#65311;</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 &#20013;&#39640;&#32423;&#25628;&#32034;&#31526;&#21495;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#39640;&#32423;&#25628;&#32034;&#31526;&#21495;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;</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 &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#22312;&#21738;&#37324;&#21487;&#20197;&#25214;&#21040;&#29992;&#20110;&#21521; Procore &#21457;&#36865;&#24037;&#20316;&#26085;&#24535;&#12289;&#29031;&#29255;&#12289;&#25991;&#26723;&#21644;&#30005;&#23376;&#37038;&#20214;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#21738;&#37324;&#21487;&#20197;&#25214;&#21040;&#29992;&#20110;&#21521; Procore &#21457;&#36865;&#24037;&#20316;&#26085;&#24535;&#12289;&#29031;&#29255;&#12289;&#25991;&#26723;&#21644;&#30005;&#23376;&#37038;&#20214;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</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="&#25105;&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#21019;&#24314;&#21464;&#26356;&#20107;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#21019;&#24314;&#21464;&#26356;&#20107;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-receive-email-from-procore" title="&#20026;&#20160;&#20040;&#25910;&#19981;&#21040; Procore &#30340;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25910;&#19981;&#21040; Procore &#30340;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#20160;&#20040;&#26159;&#24314;&#35774;&#24037;&#31243;&#39033;&#30446;&#30340;&#36827;&#24230;&#35745;&#21010;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#24314;&#35774;&#24037;&#31243;&#39033;&#30446;&#30340;&#36827;&#24230;&#35745;&#21010;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;</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="&#24403;&#25968;&#25454;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#31561;&#24453;&#39564;&#25910;&#26102;&#65292;&#26159;&#21542;&#20250;&#36890;&#30693;&#20250;&#35745;&#23457;&#25209;&#32773;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#25968;&#25454;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#31561;&#24453;&#39564;&#25910;&#26102;&#65292;&#26159;&#21542;&#20250;&#36890;&#30693;&#20250;&#35745;&#23457;&#25209;&#32773;&#65311;</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="&#24453;&#22788;&#29702;&#21512;&#32422;&#26159;&#21542;&#20250;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#33258;&#21160;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#24453;&#22788;&#29702;&#21512;&#32422;&#26159;&#21542;&#20250;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#33258;&#21160;&#21516;&#27493;&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#20844;&#21496;&#21516;&#27493;&#21518;&#26356;&#25913;&#36873;&#23450;&#30340;&#20379;&#24212;&#21830;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312;&#20844;&#21496;&#21516;&#27493;&#21518;&#26356;&#25913;&#36873;&#23450;&#30340;&#20379;&#24212;&#21830;&#31867;&#22411;&#65311;</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="&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;</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="&#21512;&#32422;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#21518;&#65292;&#25105;&#33021;&#21542;&#32534;&#36753;&#25110;&#21024;&#38500;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#21518;&#65292;&#25105;&#33021;&#21542;&#32534;&#36753;&#25110;&#21024;&#38500;&#65311;</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="&#25105;&#21487;&#20197;&#23558; Procore &#39044;&#31639;&#20462;&#25913;&#23548;&#20986;&#21040;&#38598;&#25104; ERP &#31995;&#32479;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#23558; Procore &#39044;&#31639;&#20462;&#25913;&#23548;&#20986;&#21040;&#38598;&#25104; ERP &#31995;&#32479;&#21527;&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#30340;&#39044;&#31639;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#30340;&#39044;&#31639;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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 &#21516;&#27493;&#23458;&#25143;&#31471;&#22914;&#20309;&#20256;&#36755;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>hh2 &#21516;&#27493;&#23458;&#25143;&#31471;&#22914;&#20309;&#20256;&#36755;&#25968;&#25454;&#65311;</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 &#38598;&#25104;&#22914;&#20309;&#36830;&#25509; Procore &#19982; Viewpoint&reg; Vista&trade;&#65311;"><span class="mt-icon-article-none"></span>Ryvit &#38598;&#25104;&#22914;&#20309;&#36830;&#25509; Procore &#19982; Viewpoint&reg; Vista&trade;&#65311;</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="&#22914;&#20309;&#23558;&#39033;&#30446;&#39044;&#31639;&#20174; Procore &#23548;&#20986;&#21040; Sage 300 CRE&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#39033;&#30446;&#39044;&#31639;&#20174; Procore &#23548;&#20986;&#21040; Sage 300 CRE&#65311;</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="&#22914;&#20309;&#23558;&#25104;&#26412;&#39044;&#27979;&#25968;&#25454;&#20174; Procore &#39044;&#31639;&#23548;&#20986;&#21040;CMiC"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#25104;&#26412;&#39044;&#27979;&#25968;&#25454;&#20174; Procore &#39044;&#31639;&#23548;&#20986;&#21040;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="&#22914;&#20309;&#23558;&#25104;&#26412;&#39044;&#27979;&#25968;&#25454;&#20174; Procore &#39044;&#31639;&#23548;&#20986;&#21040; ERP"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#25104;&#26412;&#39044;&#27979;&#25968;&#25454;&#20174; Procore &#39044;&#31639;&#23548;&#20986;&#21040; 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="&#22914;&#20309;&#20026; Procore + QuickBooks &#35774;&#32622;&#20998;&#21253;&#21830;&#21457;&#31080;&#21644;&#20184;&#27454;&#21151;&#33021;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026; Procore + QuickBooks &#35774;&#32622;&#20998;&#21253;&#21830;&#21457;&#31080;&#21644;&#20184;&#27454;&#21151;&#33021;&#65311;</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="&#25105;&#22810;&#20037;&#21487;&#20197;&#22312; Procore &#21644; Viewpoint&reg; Spectrum&reg; &#20043;&#38388;&#21516;&#27493;&#25968;&#25454;&#19968;&#27425;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#22810;&#20037;&#21487;&#20197;&#22312; Procore &#21644; Viewpoint&reg; Spectrum&reg; &#20043;&#38388;&#21516;&#27493;&#25968;&#25454;&#19968;&#27425;&#65311;</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="&#25105;&#21487;&#20197;&#20351;&#29992; Ryvit &#38598;&#25104;&#20197;&#20309;&#31181;&#39057;&#29575;&#21516;&#27493;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#20351;&#29992; Ryvit &#38598;&#25104;&#20197;&#20309;&#31181;&#39057;&#29575;&#21516;&#27493;&#25968;&#25454;&#65311;</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="&#25105;&#35813;&#36873;&#25321;&#21738;&#20123; Viewpoint&reg; Spectrum&reg; &#20316;&#19994;&#20986;&#29616;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#30340;&ldquo;&#36873;&#25321;&#20316;&#19994;&#27169;&#26495;&rdquo;&#21015;&#34920;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#35813;&#36873;&#25321;&#21738;&#20123; Viewpoint&reg; Spectrum&reg; &#20316;&#19994;&#20986;&#29616;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#30340;&ldquo;&#36873;&#25321;&#20316;&#19994;&#27169;&#26495;&rdquo;&#21015;&#34920;&#20013;&#65311;</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="&#23548;&#20986;&#21040; ERP &#26102;&#22914;&#20309;&#35299;&#20915;&ldquo;&#21512;&#32422;&#32534;&#21495;&#24050;&#23384;&#22312;&rdquo;&#38169;&#35823;"><span class="mt-icon-article-none"></span>&#23548;&#20986;&#21040; ERP &#26102;&#22914;&#20309;&#35299;&#20915;&ldquo;&#21512;&#32422;&#32534;&#21495;&#24050;&#23384;&#22312;&rdquo;&#38169;&#35823;</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="&#22914;&#20309;&#35299;&#20915;&#23548;&#20986;&#21040;ERP&#26102;&#30340;&quot;&#26080;&#27861;&#23436;&#25104;&#27492;&#23548;&#20986;&#65292;&#22240;&#20026;QuickBooks&#20013;&#30340;&#26126;&#32454;&#39033;&#25968;&#37327;&#19982; Procore &#20013;&#30340;&#25968;&#37327;&#19981;&#21305;&#37197;&quot;&#38169;&#35823;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;&#23548;&#20986;&#21040;ERP&#26102;&#30340;&quot;&#26080;&#27861;&#23436;&#25104;&#27492;&#23548;&#20986;&#65292;&#22240;&#20026;QuickBooks&#20013;&#30340;&#26126;&#32454;&#39033;&#25968;&#37327;&#19982; Procore &#20013;&#30340;&#25968;&#37327;&#19981;&#21305;&#37197;&quot;&#38169;&#35823;&#65311;</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="&#23548;&#20986;&#21040; ERP &#26102;&#22914;&#20309;&#35299;&#20915;&ldquo;&#23548;&#20837;&#25805;&#20316;&#33457;&#36153;&#30340;&#26102;&#38388;&#36229;&#36807;&#35774;&#32622;&#30340;&#36229;&#26102;&#26102;&#38388;&rdquo;&#38169;&#35823;&#65311;"><span class="mt-icon-article-none"></span>&#23548;&#20986;&#21040; ERP &#26102;&#22914;&#20309;&#35299;&#20915;&ldquo;&#23548;&#20837;&#25805;&#20316;&#33457;&#36153;&#30340;&#26102;&#38388;&#36229;&#36807;&#35774;&#32622;&#30340;&#36229;&#26102;&#26102;&#38388;&rdquo;&#38169;&#35823;&#65311;</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="&#22312;&#23548;&#20986;&#21040; ERP &#26102;&#65292;&#22914;&#20309;&#35299;&#20915;&ldquo;&#28155;&#21152;&#12289;&#20462;&#25913;&#25110;&#21024;&#38500; XXXXXX-XXXXXXXXXXX &#26102;&#20986;&#38169;&#65292;&#22240;&#20026;&#24050;&#22312;&#20351;&#29992;&#20013;&#12290;&rdquo;&#38169;&#35823;"><span class="mt-icon-article-none"></span>&#22312;&#23548;&#20986;&#21040; ERP &#26102;&#65292;&#22914;&#20309;&#35299;&#20915;&ldquo;&#28155;&#21152;&#12289;&#20462;&#25913;&#25110;&#21024;&#38500; XXXXXX-XXXXXXXXXXX &#26102;&#20986;&#38169;&#65292;&#22240;&#20026;&#24050;&#22312;&#20351;&#29992;&#20013;&#12290;&rdquo;&#38169;&#35823;</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="&#26377;&#21738;&#20123;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#20197;&#21450;&#25105;&#20204;&#30340; ERP &#38598;&#25104;&#22914;&#20309;&#25903;&#25345;&#36825;&#20123;&#25104;&#26412;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#26377;&#21738;&#20123;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#20197;&#21450;&#25105;&#20204;&#30340; ERP &#38598;&#25104;&#22914;&#20309;&#25903;&#25345;&#36825;&#20123;&#25104;&#26412;&#31867;&#22411;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-types" title="Procore &#26377;&#21738;&#20123;&#40664;&#35748;&#25104;&#26412;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>Procore &#26377;&#21738;&#20123;&#40664;&#35748;&#25104;&#26412;&#31867;&#22411;&#65311;</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&reg; &#21644; Procore &#20043;&#38388;&#21516;&#27493;&#20102;&#21738;&#20123;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>Sage 300 CRE&reg; &#21644; Procore &#20043;&#38388;&#21516;&#27493;&#20102;&#21738;&#20123;&#25968;&#25454;&#65311;</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="&#21738;&#20123;&#25968;&#25454;&#19982; Ryvit &#38598;&#25104;&#36830;&#25509;&#22120;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#25968;&#25454;&#19982; Ryvit &#38598;&#25104;&#36830;&#25509;&#22120;&#21516;&#27493;&#65311;</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="&#24403;&#21512;&#32422;&#26410;&#33021;&#20174; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#23548;&#20986;&#26102;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#21512;&#32422;&#26410;&#33021;&#20174; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#23548;&#20986;&#26102;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-erp-icons-mean" title="ERP &#22270;&#26631;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>ERP &#22270;&#26631;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;</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="&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;</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="&#21512;&#32422;&ldquo;&#26631;&#39064;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&ldquo;&#26631;&#39064;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#20316;&#19994;&#12289;&#29238;&#20316;&#19994;&#21644;&#23376;&#20316;&#19994;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#20316;&#19994;&#12289;&#29238;&#20316;&#19994;&#21644;&#23376;&#20316;&#19994;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;</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="&#25105;&#24212;&#35813;&#23558;&#21738;&#20123;&#39044;&#31639;&#35270;&#22270;&#28155;&#21152;&#21040;&#25105;&#30340; Procore &#39033;&#30446;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#24212;&#35813;&#23558;&#21738;&#20123;&#39044;&#31639;&#35270;&#22270;&#28155;&#21152;&#21040;&#25105;&#30340; Procore &#39033;&#30446;&#20013;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-cost-code-formats-are-supported-by-erp" title="&#25105;&#30340; ERP &#38598;&#25104;&#25903;&#25345;&#21738;&#20123;&#25104;&#26412;&#32534;&#21495;&#26684;&#24335;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#30340; ERP &#38598;&#25104;&#25903;&#25345;&#21738;&#20123;&#25104;&#26412;&#32534;&#21495;&#26684;&#24335;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-category-concept" title="&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#27010;&#24565;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#27010;&#24565;&#65311;</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="&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#23376;&#20316;&#19994;&rdquo;&#27010;&#24565;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#23376;&#20316;&#19994;&rdquo;&#27010;&#24565;&#65311;</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="&#21738;&#20123;&#20027;&#21512;&#21516;&#21644;&#20027;&#21512;&#21516;&#21464;&#26356;&#36890;&#30693;&#21333;&#23383;&#27573;&#19982; Procore &#21644; Viewpoint Spectrum &#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#20027;&#21512;&#21516;&#21644;&#20027;&#21512;&#21516;&#21464;&#26356;&#36890;&#30693;&#21333;&#23383;&#27573;&#19982; Procore &#21644; Viewpoint Spectrum &#21516;&#27493;&#65311;</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="&#22312; QuickBooks&reg; &#20013;&#21551;&#29992;&#21738;&#20010;&#35774;&#32622;&#25165;&#33021;&#20351;&#29992; ERP &#38598;&#25104;&#24037;&#20855;&#23548;&#20986;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>&#22312; QuickBooks&reg; &#20013;&#21551;&#29992;&#21738;&#20010;&#35774;&#32622;&#25165;&#33021;&#20351;&#29992; ERP &#38598;&#25104;&#24037;&#20855;&#23548;&#20986;&#21457;&#31080;&#65311;</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="&#24403;&#39033;&#34987; ERP &#25298;&#32477;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#39033;&#34987; ERP &#25298;&#32477;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#26126;&#32454;&#39033;&#22312;&#25105;&#30340;&#20998;&#21253;&#21830;&#21457;&#31080;&#19978;&#37325;&#22797;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#26126;&#32454;&#39033;&#22312;&#25105;&#30340;&#20998;&#21253;&#21830;&#21457;&#31080;&#19978;&#37325;&#22797;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-or-activate-procore-projects" title="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#25110;&#28608;&#27963; Procore &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#25110;&#28608;&#27963; Procore &#39033;&#30446;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&ldquo;&#21516;&#27493;&rdquo;&#25110;&ldquo;&#21047;&#26032;&rdquo;&#25353;&#38062;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&ldquo;&#21516;&#27493;&rdquo;&#25110;&ldquo;&#21047;&#26032;&rdquo;&#25353;&#38062;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#23581;&#35797;&#23558;&#25968;&#25454;&#23548;&#20986;&#21040; Sage 300 CRE &#26102;&#30475;&#21040;&#38169;&#35823;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#23581;&#35797;&#23558;&#25968;&#25454;&#23548;&#20986;&#21040; Sage 300 CRE &#26102;&#30475;&#21040;&#38169;&#35823;&#65311;</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="&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;</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="&#20026;&#20160;&#20040;&ldquo;&#21457;&#36865;&#21040; ERP&rdquo;&#25353;&#38062;&#21464;&#26263;&#24182;&#19988;&#22312;&#39033;&#30446;&#21019;&#24314;&#21161;&#25163;&#20013;&#19981;&#21487;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&ldquo;&#21457;&#36865;&#21040; ERP&rdquo;&#25353;&#38062;&#21464;&#26263;&#24182;&#19988;&#22312;&#39033;&#30446;&#21019;&#24314;&#21161;&#25163;&#20013;&#19981;&#21487;&#29992;&#65311;</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="&#26159;&#21542;&#21487;&#20197;&#23558;&#20272;&#31639;&#20540;&#20174;&#20272;&#31639;&#24037;&#20855;&#22797;&#21046;&#21040;&#26032;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#26159;&#21542;&#21487;&#20197;&#23558;&#20272;&#31639;&#20540;&#20174;&#20272;&#31639;&#24037;&#20855;&#22797;&#21046;&#21040;&#26032;&#39033;&#30446;&#65311;</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="&#22810;&#20010;&#29992;&#25143;&#26159;&#21542;&#21487;&#20197;&#22312;&#20272;&#31639;&#24037;&#20855;&#20013;&#21516;&#26102;&#36827;&#34892;&#20272;&#31639;&#21644;&#25187;&#20943;&#65311;"><span class="mt-icon-article-none"></span>&#22810;&#20010;&#29992;&#25143;&#26159;&#21542;&#21487;&#20197;&#22312;&#20272;&#31639;&#24037;&#20855;&#20013;&#21516;&#26102;&#36827;&#34892;&#20272;&#31639;&#21644;&#25187;&#20943;&#65311;</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="&#20272;&#31639;&#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#22914;&#20309;&#21019;&#24314;&#39044;&#31639;&#20013;&#30340;&#26126;&#32454;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20272;&#31639;&#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#22914;&#20309;&#21019;&#24314;&#39044;&#31639;&#20013;&#30340;&#26126;&#32454;&#39033;&#65311;</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="&#25104;&#26412;&#30446;&#24405;&#39033;&#31867;&#22411;&#19982; Procore &#20013;&#30340;&#25104;&#26412;&#31867;&#22411;&#26377;&#20309;&#20851;&#31995;&#65311;"><span class="mt-icon-article-none"></span>&#25104;&#26412;&#30446;&#24405;&#39033;&#31867;&#22411;&#19982; Procore &#20013;&#30340;&#25104;&#26412;&#31867;&#22411;&#26377;&#20309;&#20851;&#31995;&#65311;</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="&#22914;&#20309;&#22312; Procore &#20013;&#23436;&#25104;&#20197;&#21069;&#22312;&#29420;&#31435; Procore Estimating &#24212;&#29992;&#31243;&#24207;&#20013;&#23436;&#25104;&#30340;&#20219;&#21153;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#20013;&#23436;&#25104;&#20197;&#21069;&#22312;&#29420;&#31435; Procore Estimating &#24212;&#29992;&#31243;&#24207;&#20013;&#23436;&#25104;&#30340;&#20219;&#21153;&#65311;</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="&#20272;&#31639;&#20013;&#26377;&#21738;&#20123;&#23383;&#27573;&#20197;&#21450;&#23427;&#20204;&#26159;&#22914;&#20309;&#35745;&#31639;&#30340;&#65311;"><span class="mt-icon-article-none"></span>&#20272;&#31639;&#20013;&#26377;&#21738;&#20123;&#23383;&#27573;&#20197;&#21450;&#23427;&#20204;&#26159;&#22914;&#20309;&#35745;&#31639;&#30340;&#65311;</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="&#29992;&#20110;&#20272;&#31639;&#30340;&#25104;&#26412;&#30446;&#24405;&#20013;&#30340;&#30446;&#24405;&#12289;&#31867;&#21035;&#21644;&#39033;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#29992;&#20110;&#20272;&#31639;&#30340;&#25104;&#26412;&#30446;&#24405;&#20013;&#30340;&#30446;&#24405;&#12289;&#31867;&#21035;&#21644;&#39033;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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 &#19968;&#33324;&#24120;&#35265;&#38382;&#39064;"><span class="mt-icon-article-none"></span>Analytics 2.0 &#19968;&#33324;&#24120;&#35265;&#38382;&#39064;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/app-management-metrics-how-to-access" title="&#20160;&#20040;&#26159;&#24212;&#29992;&#31243;&#24207;&#31649;&#29702;&#25351;&#26631;&#20197;&#21450;&#22914;&#20309;&#35775;&#38382;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#24212;&#29992;&#31243;&#24207;&#31649;&#29702;&#25351;&#26631;&#20197;&#21450;&#22914;&#20309;&#35775;&#38382;&#23427;&#20204;&#65311;</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="&#24403;&#25968;&#25454;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#31561;&#24453;&#39564;&#25910;&#26102;&#65292;&#26159;&#21542;&#20250;&#36890;&#30693;&#20250;&#35745;&#23457;&#25209;&#32773;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#25968;&#25454;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#31561;&#24453;&#39564;&#25910;&#26102;&#65292;&#26159;&#21542;&#20250;&#36890;&#30693;&#20250;&#35745;&#23457;&#25209;&#32773;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/are-commitments-private-by-default" title="&#40664;&#35748;&#24773;&#20917;&#19979;&#21512;&#32422;&#26159;&#31169;&#23494;&#30340;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#40664;&#35748;&#24773;&#20917;&#19979;&#21512;&#32422;&#26159;&#31169;&#23494;&#30340;&#21527;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#26159;&#21542;&#25552;&#20379;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#26159;&#21542;&#25552;&#20379;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#24453;&#22788;&#29702;&#21512;&#32422;&#26159;&#21542;&#20250;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#33258;&#21160;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#24453;&#22788;&#29702;&#21512;&#32422;&#26159;&#21542;&#20250;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#33258;&#21160;&#21516;&#27493;&#65311;</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="&#24403;&#39033;&#30446;&#26377;&#22810;&#20010;&#20027;&#21512;&#21516;&#26102;&#65292;&#26159;&#21542;&#26377;&#20219;&#20309;&#31995;&#32479;&#38480;&#21046;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#39033;&#30446;&#26377;&#22810;&#20010;&#20027;&#21512;&#21516;&#26102;&#65292;&#26159;&#21542;&#26377;&#20219;&#20309;&#31995;&#32479;&#38480;&#21046;&#65311;</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="&#19978;&#28216;&#21327;&#20316;&#32773;&#21487;&#20197;&#22312;&#21738;&#19968;&#23618;&#25209;&#20934;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;"><span class="mt-icon-article-none"></span>&#19978;&#28216;&#21327;&#20316;&#32773;&#21487;&#20197;&#22312;&#21738;&#19968;&#23618;&#25209;&#20934;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;</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="&#20154;&#21592;&#33021;&#21542;&#19982;&#20844;&#21496;&#32423;&#21035;&#30446;&#24405;&#24037;&#20855;&#20013;&#30340;&#22810;&#20010;&#20379;&#24212;&#21830;/&#20844;&#21496;&#35760;&#24405;&#20851;&#32852;&#65311;"><span class="mt-icon-article-none"></span>&#20154;&#21592;&#33021;&#21542;&#19982;&#20844;&#21496;&#32423;&#21035;&#30446;&#24405;&#24037;&#20855;&#20013;&#30340;&#22810;&#20010;&#20379;&#24212;&#21830;/&#20844;&#21496;&#35760;&#24405;&#20851;&#32852;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-a-private-correspondence-item-be-made-public" title="&#31169;&#23494;&#36890;&#20449;&#21487;&#20197;&#20844;&#24320;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#31169;&#23494;&#36890;&#20449;&#21487;&#20197;&#20844;&#24320;&#21527;&#65311;</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="&#25237;&#26631;&#20154;&#21487;&#20197;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#25552;&#20132;&#25237;&#26631;&#36824;&#26159;&#24517;&#39035;&#30331;&#24405;&#65311;"><span class="mt-icon-article-none"></span>&#25237;&#26631;&#20154;&#21487;&#20197;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#25552;&#20132;&#25237;&#26631;&#36824;&#26159;&#24517;&#39035;&#30331;&#24405;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-access-forms-offline" title="&#25105;&#21487;&#20197;&#31163;&#32447;&#35775;&#38382;&#34920;&#21333;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#31163;&#32447;&#35775;&#38382;&#34920;&#21333;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#20026;&#20854;&#20182;&#29992;&#25143;&#28155;&#21152;&#20010;&#20154;&#22836;&#20687;&#25110;&#20010;&#20154;&#36164;&#26009;&#29031;&#29255;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#20026;&#20854;&#20182;&#29992;&#25143;&#28155;&#21152;&#20010;&#20154;&#22836;&#20687;&#25110;&#20010;&#20154;&#36164;&#26009;&#29031;&#29255;&#21527;&#65311;</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="&#26159;&#21542;&#21487;&#20197;&#23558;&#33258;&#23450;&#20041;&#32454;&#20998;&#24212;&#29992;&#20110;&#29616;&#26377;&#30340;&#38750; WBS &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#26159;&#21542;&#21487;&#20197;&#23558;&#33258;&#23450;&#20041;&#32454;&#20998;&#24212;&#29992;&#20110;&#29616;&#26377;&#30340;&#38750; WBS &#39033;&#30446;&#65311;</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="&#21487;&#20197;&#19968;&#27425;&#23558;&#26435;&#38480;&#27169;&#26495;&#24212;&#29992;&#20110;&#22810;&#20010;&#29992;&#25143;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#19968;&#27425;&#23558;&#26435;&#38480;&#27169;&#26495;&#24212;&#29992;&#20110;&#22810;&#20010;&#29992;&#25143;&#21527;&#65311;</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="&#25105;&#33021;&#21542;&#36890;&#36807;&#31227;&#21160;&#35774;&#22791;&#23558;&#29031;&#29255;&#28155;&#21152;&#21040;&#23614;&#39033;&#28165;&#21333;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#36890;&#36807;&#31227;&#21160;&#35774;&#22791;&#23558;&#29031;&#29255;&#28155;&#21152;&#21040;&#23614;&#39033;&#28165;&#21333;&#39033;&#30446;&#65311;</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="&#25105;&#33021;&#21542;&#26356;&#25913;&#30446;&#24405;&#20013;&#20154;&#21592;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#26356;&#25913;&#30446;&#24405;&#20013;&#20154;&#21592;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&#65311;</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="&#25105;&#21487;&#20197;&#22312; Procore &#20013;&#26356;&#25913;&#20844;&#21496;&#12289;&#39033;&#30446;&#25110;&#29992;&#25143;&#35821;&#35328;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312; Procore &#20013;&#26356;&#25913;&#20844;&#21496;&#12289;&#39033;&#30446;&#25110;&#29992;&#25143;&#35821;&#35328;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#26356;&#25913; Procore &#25195;&#25551;&#22270;&#32440;&#25152;&#29992;&#30340;&#35821;&#35328;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#26356;&#25913; Procore &#25195;&#25551;&#22270;&#32440;&#25152;&#29992;&#30340;&#35821;&#35328;&#21527;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-change-the-name-of-a-meeting" title="&#25105;&#21487;&#20197;&#26356;&#25913;&#20250;&#35758;&#21517;&#31216;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#26356;&#25913;&#20250;&#35758;&#21517;&#31216;&#21527;&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#20844;&#21496;&#21516;&#27493;&#21518;&#26356;&#25913;&#36873;&#23450;&#30340;&#20379;&#24212;&#21830;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312;&#20844;&#21496;&#21516;&#27493;&#21518;&#26356;&#25913;&#36873;&#23450;&#30340;&#20379;&#24212;&#21830;&#31867;&#22411;&#65311;</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="&#26159;&#21542;&#21487;&#20197;&#23558;&#20272;&#31639;&#20540;&#20174;&#20272;&#31639;&#24037;&#20855;&#22797;&#21046;&#21040;&#26032;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#26159;&#21542;&#21487;&#20197;&#23558;&#20272;&#31639;&#20540;&#20174;&#20272;&#31639;&#24037;&#20855;&#22797;&#21046;&#21040;&#26032;&#39033;&#30446;&#65311;</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="&#25105;&#21487;&#20197;&#23558;&#25991;&#26723;&#24037;&#20855;&#20013;&#30340;&#25991;&#20214;&#22797;&#21046;&#21040;&#21478;&#19968;&#20010;&#39033;&#30446;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#23558;&#25991;&#26723;&#24037;&#20855;&#20013;&#30340;&#25991;&#20214;&#22797;&#21046;&#21040;&#21478;&#19968;&#20010;&#39033;&#30446;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#23558;&#19968;&#20010;&#39033;&#30446;&#30340;&#25991;&#26723;&#25991;&#20214;&#22841;&#22797;&#21046;&#21040;&#19968;&#20010;&#26032;&#39033;&#30446;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#23558;&#19968;&#20010;&#39033;&#30446;&#30340;&#25991;&#26723;&#25991;&#20214;&#22841;&#22797;&#21046;&#21040;&#19968;&#20010;&#26032;&#39033;&#30446;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#22312;&#19979;&#28216;&#21327;&#20316;&#32773;&#21709;&#24212;&#21464;&#26356;&#20107;&#20214;&#30340; RFQ &#20043;&#21069;&#20026;&#21512;&#21516;&#25110;&#36164;&#37329;&#21019;&#24314;&#21464;&#26356;&#36890;&#30693;&#21333;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312;&#19979;&#28216;&#21327;&#20316;&#32773;&#21709;&#24212;&#21464;&#26356;&#20107;&#20214;&#30340; RFQ &#20043;&#21069;&#20026;&#21512;&#21516;&#25110;&#36164;&#37329;&#21019;&#24314;&#21464;&#26356;&#36890;&#30693;&#21333;&#21527;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-create-a-list-of-overdue-pccos" title="&#25105;&#21487;&#20197;&#21019;&#24314;&#19968;&#20221;&#36926;&#26399;&#20027;&#21512;&#21516;&#21464;&#26356;&#36890;&#30693;&#21333; (PCCO) &#30340;&#28165;&#21333;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#21019;&#24314;&#19968;&#20221;&#36926;&#26399;&#20027;&#21512;&#21516;&#21464;&#26356;&#36890;&#30693;&#21333; (PCCO) &#30340;&#28165;&#21333;&#21527;&#65311;</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="&#25105;&#33021;&#21542;&#21019;&#24314;&#20855;&#26377;&#37325;&#22797;&#32534;&#21495;&#30340; RFI&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#21019;&#24314;&#20855;&#26377;&#37325;&#22797;&#32534;&#21495;&#30340; RFI&#65311;</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="&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#33258;&#23450;&#20041;&#39033;&#30446;&#31867;&#22411;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#33258;&#23450;&#20041;&#39033;&#30446;&#31867;&#22411;&#36873;&#39033;&#65311;</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="&#25105;&#21487;&#20197;&#20174; Procore &#20013;&#21024;&#38500; Sage 300 CRE &#25104;&#26412;&#32534;&#21495;&#12289;&#25104;&#26412;&#31867;&#22411;&#25110;&#20379;&#24212;&#21830;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#20174; Procore &#20013;&#21024;&#38500; Sage 300 CRE &#25104;&#26412;&#32534;&#21495;&#12289;&#25104;&#26412;&#31867;&#22411;&#25110;&#20379;&#24212;&#21830;&#21527;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-disable-the-change-events-tool" title="&#25105;&#21487;&#20197;&#31105;&#29992;&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#31105;&#29992;&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#32534;&#36753;&#25105;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#25110;&#21457;&#31080;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#32534;&#36753;&#25105;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#25110;&#21457;&#31080;&#21527;&#65311;</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="&#21512;&#32422;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#21518;&#65292;&#25105;&#33021;&#21542;&#32534;&#36753;&#25110;&#21024;&#38500;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#21518;&#65292;&#25105;&#33021;&#21542;&#32534;&#36753;&#25110;&#21024;&#38500;&#65311;</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="&#21487;&#20197;&#22312;&#29616;&#26377;&#39033;&#30446;&#19978;&#21551;&#29992;&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#22312;&#29616;&#26377;&#39033;&#30446;&#19978;&#21551;&#29992;&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#23548;&#20986;&#35774;&#32622;&#20026;&#31169;&#23494;&#30340;&#36890;&#20449;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#23548;&#20986;&#35774;&#32622;&#20026;&#31169;&#23494;&#30340;&#36890;&#20449;&#21527;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-export-a-lookahead-schedule" title="&#21487;&#20197;&#23548;&#20986;&#23637;&#26395;&#36827;&#24230;&#35745;&#21010;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#23548;&#20986;&#23637;&#26395;&#36827;&#24230;&#35745;&#21010;&#21527;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-export-data-from-the-conversations-tool" title="&#26159;&#21542;&#21487;&#20197;&#20174;&#23545;&#35805;&#24037;&#20855;&#20013;&#23548;&#20986;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>&#26159;&#21542;&#21487;&#20197;&#20174;&#23545;&#35805;&#24037;&#20855;&#20013;&#23548;&#20986;&#25968;&#25454;&#65311;</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="&#25105;&#21487;&#20197;&#23558; Procore &#39044;&#31639;&#20462;&#25913;&#23548;&#20986;&#21040;&#38598;&#25104; ERP &#31995;&#32479;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#23558; Procore &#39044;&#31639;&#20462;&#25913;&#23548;&#20986;&#21040;&#38598;&#25104; ERP &#31995;&#32479;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#22312;&#25105;&#30340;&#31227;&#21160;&#35774;&#22791;&#19978;&#22635;&#20889;&#34920;&#21333;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312;&#25105;&#30340;&#31227;&#21160;&#35774;&#22791;&#19978;&#22635;&#20889;&#34920;&#21333;&#21527;&#65311;</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="&#25105;&#33021;&#21542;&#22312; Procore Web &#29256;&#19978;&#22635;&#20889;&#34920;&#21333;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312; Procore Web &#29256;&#19978;&#22635;&#20889;&#34920;&#21333;&#65311;</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="&#22914;&#26524; CSV &#20855;&#26377;&#31354;&#30333;&#20540;&#65292;&#25105;&#33021;&#21542;&#23558;&#20854;&#23548;&#20837;&#21040;&#39033;&#30446;&#36130;&#21153;&#31649;&#29702;&#24037;&#20855;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524; CSV &#20855;&#26377;&#31354;&#30333;&#20540;&#65292;&#25105;&#33021;&#21542;&#23558;&#20854;&#23548;&#20837;&#21040;&#39033;&#30446;&#36130;&#21153;&#31649;&#29702;&#24037;&#20855;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&#20013;&#65311;</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="&#25105;&#21487;&#20197;&#23558;&#20914;&#31361;&#21644;&#20914;&#31361;&#32452;&#23548;&#20837;&#21040;&#21327;&#35843;&#38382;&#39064;&#24037;&#20855;&#20013;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#23558;&#20914;&#31361;&#21644;&#20914;&#31361;&#32452;&#23548;&#20837;&#21040;&#21327;&#35843;&#38382;&#39064;&#24037;&#20855;&#20013;&#21527;&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#25237;&#26631;&#23460;&#30340;&#25237;&#26631;&#36882;&#20132;&#20013;&#21253;&#21547;&#25187;&#38500;&#39069;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312;&#25237;&#26631;&#23460;&#30340;&#25237;&#26631;&#36882;&#20132;&#20013;&#21253;&#21547;&#25187;&#38500;&#39069;&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#21487;&#22635;&#20889; PDF &#34920;&#21333;&#20013;&#21253;&#21547;&#24517;&#22635;&#23383;&#27573;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312;&#21487;&#22635;&#20889; PDF &#34920;&#21333;&#20013;&#21253;&#21547;&#24517;&#22635;&#23383;&#27573;&#65311;</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="&#25105;&#21487;&#20197;&#22312;&#21487;&#22635;&#20889;&#30340; PDF &#20013;&#21253;&#21547;&#31614;&#21517;&#23383;&#27573;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312;&#21487;&#22635;&#20889;&#30340; PDF &#20013;&#21253;&#21547;&#31614;&#21517;&#23383;&#27573;&#21527;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-integrate-my-lms-with-procore-certification" title="&#25105;&#21487;&#20197;&#23558;&#25105;&#30340; LMS &#19982; Procore &#35748;&#35777;&#38598;&#25104;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#23558;&#25105;&#30340; LMS &#19982; Procore &#35748;&#35777;&#38598;&#25104;&#21527;&#65311;</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="&#21019;&#24314;&#32771;&#21220;&#34920;&#26465;&#30446;&#26102;&#65292;&#21487;&#20197;&#38480;&#21046;&#21487;&#20379;&#36873;&#25321;&#30340;&#25104;&#26412;&#32534;&#21495;&#25968;&#37327;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#21019;&#24314;&#32771;&#21220;&#34920;&#26465;&#30446;&#26102;&#65292;&#21487;&#20197;&#38480;&#21046;&#21487;&#20379;&#36873;&#25321;&#30340;&#25104;&#26412;&#32534;&#21495;&#25968;&#37327;&#21527;&#65311;</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="&#22914;&#26524;&#25105;&#30340;&#20844;&#21496;&#24050;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#21487;&#20197;&#30452;&#25509;&#30331;&#24405; Procore Web &#24212;&#29992;&#31243;&#24207;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#25105;&#30340;&#20844;&#21496;&#24050;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#21487;&#20197;&#30452;&#25509;&#30331;&#24405; Procore Web &#24212;&#29992;&#31243;&#24207;&#21527;&#65311;</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="&#26159;&#21542;&#21487;&#20197;&#40664;&#35748;&#22312;&#25991;&#26723;&#24037;&#20855;&#20013;&#23558;&#25991;&#20214;&#21644;&#25991;&#20214;&#22841;&#35774;&#20026;&#31169;&#23494;&#65311;"><span class="mt-icon-article-none"></span>&#26159;&#21542;&#21487;&#20197;&#40664;&#35748;&#22312;&#25991;&#26723;&#24037;&#20855;&#20013;&#23558;&#25991;&#20214;&#21644;&#25991;&#20214;&#22841;&#35774;&#20026;&#31169;&#23494;&#65311;</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="&#25105;&#21487;&#20197;&#22312;&#39033;&#30446;&#30340;&#29031;&#29255;&#24037;&#20855;&#20013;&#23558;&#25152;&#26377;&#29031;&#29255;&#26631;&#35760;&#20026;&ldquo;&#31169;&#23494;&rdquo;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312;&#39033;&#30446;&#30340;&#29031;&#29255;&#24037;&#20855;&#20013;&#23558;&#25152;&#26377;&#29031;&#29255;&#26631;&#35760;&#20026;&ldquo;&#31169;&#23494;&rdquo;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#38459;&#27490;&#22312;&#21608;&#26411;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#38459;&#27490;&#22312;&#21608;&#26411;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#21527;&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#25237;&#26631;&#23460;&#25171;&#21360;&#25110;&#23548;&#20986;&#25105;&#30340;&#25237;&#26631;&#21103;&#26412;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312;&#25237;&#26631;&#23460;&#25171;&#21360;&#25110;&#23548;&#20986;&#25105;&#30340;&#25237;&#26631;&#21103;&#26412;&#65311;</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="&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;</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="&#33021;&#21542;&#37325;&#26032;&#25490;&#21015;&#21508;&#24037;&#20316;&#26085;&#24535;&#37096;&#20998;&#30340;&#39034;&#24207;&#65311;"><span class="mt-icon-article-none"></span>&#33021;&#21542;&#37325;&#26032;&#25490;&#21015;&#21508;&#24037;&#20316;&#26085;&#24535;&#37096;&#20998;&#30340;&#39034;&#24207;&#65311;</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="&#25105;&#33021;&#21542;&#25509;&#25910;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&#27599;&#26085;&#27963;&#21160;&#25688;&#35201;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#25509;&#25910;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&#27599;&#26085;&#27963;&#21160;&#25688;&#35201;&#65311;</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="&#25105;&#21487;&#20197;&#36890;&#36807;&#30005;&#35805;&#25110;&#30005;&#23376;&#37038;&#20214;&#25509;&#25910;&#22825;&#27668;&#23548;&#33268;&#30340;&#24310;&#35823;&#35686;&#25253;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#36890;&#36807;&#30005;&#35805;&#25110;&#30005;&#23376;&#37038;&#20214;&#25509;&#25910;&#22825;&#27668;&#23548;&#33268;&#30340;&#24310;&#35823;&#35686;&#25253;&#21527;&#65311;</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="&#33021;&#21542;&#20174;&#25237;&#26631;&#20013;&#31227;&#38500;&#26126;&#32454;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#33021;&#21542;&#20174;&#25237;&#26631;&#20013;&#31227;&#38500;&#26126;&#32454;&#39033;&#65311;</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="&#25105;&#33021;&#21542;&#25253;&#21578;&#34920;&#21333;&#24037;&#20855;&#20013;&#30340;&#20869;&#23481;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#25253;&#21578;&#34920;&#21333;&#24037;&#20855;&#20013;&#30340;&#20869;&#23481;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-rotate-a-drawing-in-procore" title="&#25105;&#21487;&#20197;&#22312; Procore &#20013;&#26059;&#36716;&#22270;&#32440;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312; Procore &#20013;&#26059;&#36716;&#22270;&#32440;&#21527;&#65311;</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="&#25105;&#33021;&#21542;&#25628;&#32034;&#21487;&#22635;&#20889; PDF &#30340;&#20869;&#23481;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#25628;&#32034;&#21487;&#22635;&#20889; PDF &#30340;&#20869;&#23481;&#65311;</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="&#25105;&#33021;&#21542;&#21521;&#27599;&#20010;&#20379;&#24212;&#21830;/&#20998;&#21253;&#21830;&#21457;&#36865;&#25237;&#26631;&#26356;&#26032;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#21521;&#27599;&#20010;&#20379;&#24212;&#21830;/&#20998;&#21253;&#21830;&#21457;&#36865;&#25237;&#26631;&#26356;&#26032;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#25105;&#21487;&#20197;&#22312;&#25237;&#26631;&#25130;&#27490;&#26085;&#26399;&#20043;&#21518;&#21457;&#36865;&#36890;&#20449;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312;&#25237;&#26631;&#25130;&#27490;&#26085;&#26399;&#20043;&#21518;&#21457;&#36865;&#36890;&#20449;&#21527;&#65311;</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="&#26159;&#21542;&#21487;&#20197;&#20026;&#25105;&#30340;&#39033;&#30446;&#24037;&#20855;&#35774;&#32622;&#22810;&#20010;&#25910;&#34255;&#22841;&#21015;&#34920;&#65292;&#20197;&#24212;&#29992;&#20110;&#19981;&#21516;&#30340;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#26159;&#21542;&#21487;&#20197;&#20026;&#25105;&#30340;&#39033;&#30446;&#24037;&#20855;&#35774;&#32622;&#22810;&#20010;&#25910;&#34255;&#22841;&#21015;&#34920;&#65292;&#20197;&#24212;&#29992;&#20110;&#19981;&#21516;&#30340;&#39033;&#30446;&#65311;</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="&#25105;&#33021;&#21542;&#26356;&#26032; Procore Web &#24212;&#29992;&#31243;&#24207;&#19978;&#30340;&ldquo;&#23436;&#25104;&#30334;&#20998;&#27604;&rdquo;&#23383;&#27573;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#26356;&#26032; Procore Web &#24212;&#29992;&#31243;&#24207;&#19978;&#30340;&ldquo;&#23436;&#25104;&#30334;&#20998;&#27604;&rdquo;&#23383;&#27573;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-upload-drawings-with-the-same-revision" title="&#25105;&#21487;&#20197;&#19978;&#20256;&#21253;&#21547;&#30456;&#21516;&#20462;&#35746;&#30340;&#22270;&#32440;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#19978;&#20256;&#21253;&#21547;&#30456;&#21516;&#20462;&#35746;&#30340;&#22270;&#32440;&#21527;&#65311;</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="&#25105;&#33021;&#21542;&#19978;&#20256;&#21463;&#23494;&#30721;&#20445;&#25252;&#30340;&#21487;&#22635;&#20889; PDF&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#19978;&#20256;&#21463;&#23494;&#30721;&#20445;&#25252;&#30340;&#21487;&#22635;&#20889; PDF&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-use-procores-mobile-application-offline" title="&#25105;&#21487;&#20197;&#22312;&#31163;&#32447;&#27169;&#24335;&#19979;&#20351;&#29992; Procore &#30340;&#31227;&#21160;&#24212;&#29992;&#31243;&#24207;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312;&#31163;&#32447;&#27169;&#24335;&#19979;&#20351;&#29992; Procore &#30340;&#31227;&#21160;&#24212;&#29992;&#31243;&#24207;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#22312; Mac &#19978;&#20351;&#29992; Procore Extracts &#24212;&#29992;&#31243;&#24207;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312; Mac &#19978;&#20351;&#29992; Procore Extracts &#24212;&#29992;&#31243;&#24207;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#20174;&#25105;&#30340;&#31227;&#21160;&#35774;&#22791;&#35266;&#30475; Procore &#35748;&#35777;&#21644;&#25104;&#20154;&#25945;&#32946;&#35838;&#31243;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#20174;&#25105;&#30340;&#31227;&#21160;&#35774;&#22791;&#35266;&#30475; Procore &#35748;&#35777;&#21644;&#25104;&#20154;&#25945;&#32946;&#35838;&#31243;&#21527;&#65311;</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="&#22810;&#20010;&#29992;&#25143;&#26159;&#21542;&#21487;&#20197;&#22312;&#20272;&#31639;&#24037;&#20855;&#20013;&#21516;&#26102;&#36827;&#34892;&#20272;&#31639;&#21644;&#25187;&#20943;&#65311;"><span class="mt-icon-article-none"></span>&#22810;&#20010;&#29992;&#25143;&#26159;&#21542;&#21487;&#20197;&#22312;&#20272;&#31639;&#24037;&#20855;&#20013;&#21516;&#26102;&#36827;&#34892;&#20272;&#31639;&#21644;&#25187;&#20943;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-the-drawing-markup-tool-be-disabled" title="&#21487;&#20197;&#31105;&#29992;&#22270;&#32440;&#26631;&#35760;&#24037;&#20855;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#31105;&#29992;&#22270;&#32440;&#26631;&#35760;&#24037;&#20855;&#21527;&#65311;</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="&#25105;&#20204;&#33021;&#21542;&#23548;&#20837;&#31532;&#19977;&#26041;&#32771;&#21220;&#21345;&#26465;&#30446;&#20197;&#19982; Procore &#39044;&#31639;&#24037;&#20855;&#20013;&#30340;&ldquo;&#32771;&#21220;&#34920;&#24037;&#26102;&rdquo;&#21015;&#37197;&#21512;&#20351;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#20204;&#33021;&#21542;&#23548;&#20837;&#31532;&#19977;&#26041;&#32771;&#21220;&#21345;&#26465;&#30446;&#20197;&#19982; Procore &#39044;&#31639;&#24037;&#20855;&#20013;&#30340;&ldquo;&#32771;&#21220;&#34920;&#24037;&#26102;&rdquo;&#21015;&#37197;&#21512;&#20351;&#29992;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/common-questions-apps-and-marketplace" title="&#20851;&#20110;&#24212;&#29992;&#31243;&#24207;&#21644; Procore &#24212;&#29992;&#21830;&#24215;&#30340;&#24120;&#35265;&#38382;&#39064;"><span class="mt-icon-article-none"></span>&#20851;&#20110;&#24212;&#29992;&#31243;&#24207;&#21644; Procore &#24212;&#29992;&#21830;&#24215;&#30340;&#24120;&#35265;&#38382;&#39064;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/document-management-general-faq" title="&#25991;&#26723;&#31649;&#29702;&#65306;&#19968;&#33324;&#24120;&#35265;&#38382;&#39064;"><span class="mt-icon-article-none"></span>&#25991;&#26723;&#31649;&#29702;&#65306;&#19968;&#33324;&#24120;&#35265;&#38382;&#39064;</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="&#21457;&#31080;&#32852;&#31995;&#20154;&#26159;&#21542;&#38656;&#35201;&ldquo;&#32467;&#31639;&#36992;&#35831;&rdquo;&#25165;&#33021;&#25552;&#20132;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>&#21457;&#31080;&#32852;&#31995;&#20154;&#26159;&#21542;&#38656;&#35201;&ldquo;&#32467;&#31639;&#36992;&#35831;&rdquo;&#25165;&#33021;&#25552;&#20132;&#21457;&#31080;&#65311;</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="&#29992;&#25143;&#26159;&#21542;&#38656;&#35201;&#30331;&#24405; Procore &#25165;&#33021;&#31572;&#22797; RFI&#65311;"><span class="mt-icon-article-none"></span>&#29992;&#25143;&#26159;&#21542;&#38656;&#35201;&#30331;&#24405; Procore &#25165;&#33021;&#31572;&#22797; RFI&#65311;</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&reg; &#38598;&#25104;&#23545;&#38468;&#20214;&#25110;&#20449;&#23553;&#26159;&#21542;&#26377;&#20219;&#20309;&#25991;&#20214;&#22823;&#23567;&#38480;&#21046;&#65311;"><span class="mt-icon-article-none"></span>DocuSign&reg; &#38598;&#25104;&#23545;&#38468;&#20214;&#25110;&#20449;&#23553;&#26159;&#21542;&#26377;&#20219;&#20309;&#25991;&#20214;&#22823;&#23567;&#38480;&#21046;&#65311;</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 &#30340; hh2 &#21516;&#27493;&#36807;&#31243;&#26159;&#21542;&#38656;&#35201;&#32456;&#31471;&#26381;&#21153;&#22120;&#65311;"><span class="mt-icon-article-none"></span>Sage 100 Contractor &#30340; hh2 &#21516;&#27493;&#36807;&#31243;&#26159;&#21542;&#38656;&#35201;&#32456;&#31471;&#26381;&#21153;&#22120;&#65311;</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 &#30340; hh2 &#21516;&#27493;&#27969;&#31243;&#26159;&#21542;&#38656;&#35201;&#32456;&#31471;&#26381;&#21153;&#22120;&#65311;"><span class="mt-icon-article-none"></span>Sage 300 CRE &#30340; hh2 &#21516;&#27493;&#27969;&#31243;&#26159;&#21542;&#38656;&#35201;&#32456;&#31471;&#26381;&#21153;&#22120;&#65311;</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="&#23545;&#23637;&#26395;&#36827;&#24230;&#35745;&#21010;&#36827;&#34892;&#26356;&#25913;&#26102;&#65292;&#20027;&#36827;&#24230;&#35745;&#21010;&#26159;&#21542;&#20250;&#26356;&#26032;&#65311;"><span class="mt-icon-article-none"></span>&#23545;&#23637;&#26395;&#36827;&#24230;&#35745;&#21010;&#36827;&#34892;&#26356;&#25913;&#26102;&#65292;&#20027;&#36827;&#24230;&#35745;&#21010;&#26159;&#21542;&#20250;&#26356;&#26032;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-i-need-a-docusign-account" title="&#25105;&#38656;&#35201;&#25317;&#26377; DocuSign&copy; &#36134;&#25143;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#38656;&#35201;&#25317;&#26377; DocuSign&copy; &#36134;&#25143;&#21527;&#65311;</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="&#25105;&#26159;&#21542;&#38656;&#35201;&#22312; Sage 300 CRE &#20013;&#20026; hh2 &#21516;&#27493;&#23458;&#25143;&#31471;&#21019;&#24314;&#19987;&#29992;&#29992;&#25143;&#36134;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#26159;&#21542;&#38656;&#35201;&#22312; Sage 300 CRE &#20013;&#20026; hh2 &#21516;&#27493;&#23458;&#25143;&#31471;&#21019;&#24314;&#19987;&#29992;&#29992;&#25143;&#36134;&#25143;&#65311;</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="&#22914;&#26524;&#25105;&#20204;&#20844;&#21496;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#26159;&#21542;&#38656;&#35201;&#21019;&#24314; Procore &#29992;&#25143;&#36134;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#25105;&#20204;&#20844;&#21496;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#26159;&#21542;&#38656;&#35201;&#21019;&#24314; Procore &#29992;&#25143;&#36134;&#25143;&#65311;</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="&#25105;&#26159;&#21542;&#38656;&#35201;&#22312;&#25237;&#26631;&#34920;&#21333;&#19978;&#20351;&#29992;&#25104;&#26412;&#32534;&#21495;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#26159;&#21542;&#38656;&#35201;&#22312;&#25237;&#26631;&#34920;&#21333;&#19978;&#20351;&#29992;&#25104;&#26412;&#32534;&#21495;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-meetings-integrate-with-microsoft-outlook-calendar" title="&#20250;&#35758;&#26159;&#21542;&#19982; Microsoft Outlook &#26085;&#21382;&#38598;&#25104;&#65311;"><span class="mt-icon-article-none"></span>&#20250;&#35758;&#26159;&#21542;&#19982; Microsoft Outlook &#26085;&#21382;&#38598;&#25104;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#37324;&#31243;&#30865;&#26159;&#21542;&#19982;&#25105;&#30340;&#22806;&#37096;&#39033;&#30446;&#36827;&#24230;&#35745;&#21010;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#37324;&#31243;&#30865;&#26159;&#21542;&#19982;&#25105;&#30340;&#22806;&#37096;&#39033;&#30446;&#36827;&#24230;&#35745;&#21010;&#21516;&#27493;&#65311;</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 &#30340;&#21333;&#28857;&#30331;&#24405;&#38598;&#25104;&#25903;&#25345;&#21333;&#20010;&#22495;&#36824;&#26159;&#22810;&#20010;&#22495;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#21333;&#28857;&#30331;&#24405;&#38598;&#25104;&#25903;&#25345;&#21333;&#20010;&#22495;&#36824;&#26159;&#22810;&#20010;&#22495;&#65311;</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="&#25105;&#20204;&#26159;&#21542;&#24517;&#39035;&#20351;&#29992;&#30005;&#23376;&#37038;&#20214;&#24037;&#20855;&#21019;&#24314;&#21644;&#21457;&#36865;&#25105;&#20204;&#25152;&#26377;&#30340;&#39033;&#30446;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#20204;&#26159;&#21542;&#24517;&#39035;&#20351;&#29992;&#30005;&#23376;&#37038;&#20214;&#24037;&#20855;&#21019;&#24314;&#21644;&#21457;&#36865;&#25105;&#20204;&#25152;&#26377;&#30340;&#39033;&#30446;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#25105;&#24212;&#35813;&#20026; Procore &#20013;&#30340;&#21738;&#20123;&#39033;&#21046;&#20316;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#24212;&#35813;&#20026; Procore &#20013;&#30340;&#21738;&#20123;&#39033;&#21046;&#20316;&#27169;&#26495;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-action-plans-item-statuses-updated" title="&#22914;&#20309;&#26356;&#26032;&#34892;&#21160;&#35745;&#21010;&#39033;&#29366;&#24577;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26356;&#26032;&#34892;&#21160;&#35745;&#21010;&#39033;&#29366;&#24577;</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="&#20225;&#19994;&#22914;&#20309;&#33719;&#25209;&#22312; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#20013;&#19978;&#24066;&#65311;"><span class="mt-icon-article-none"></span>&#20225;&#19994;&#22914;&#20309;&#33719;&#25209;&#22312; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#20013;&#19978;&#24066;&#65311;</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="&#22914;&#20309;&#22788;&#29702;&#30446;&#24405;&#24037;&#20855;&#21644; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#20043;&#38388;&#30340;&#37325;&#22797;&#20844;&#21496;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22788;&#29702;&#30446;&#24405;&#24037;&#20855;&#21644; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#20043;&#38388;&#30340;&#37325;&#22797;&#20844;&#21496;&#65311;</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="&#22914;&#20309;&#36328;&#21464;&#26356;&#23545;&#35937;&#26356;&#26032;&#36130;&#21153;&#26126;&#32454;&#39033;&#21644;&#39044;&#31639;&#32534;&#21495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#36328;&#21464;&#26356;&#23545;&#35937;&#26356;&#26032;&#36130;&#21153;&#26126;&#32454;&#39033;&#21644;&#39044;&#31639;&#32534;&#21495;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-insights-calculated" title="&#35265;&#35299;&#26159;&#22914;&#20309;&#35745;&#31639;&#30340;&#65311;"><span class="mt-icon-article-reference"></span>&#35265;&#35299;&#26159;&#22914;&#20309;&#35745;&#31639;&#30340;&#65311;</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="&#22914;&#20309;&#22312;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#22788;&#29702;&#38145;&#23450;&#25110;&#21463;&#38480;&#30340; PDF &#25991;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#22788;&#29702;&#38145;&#23450;&#25110;&#21463;&#38480;&#30340; PDF &#25991;&#20214;&#65311;</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="&#19978;&#20256;&#21040;&#36865;&#23457;&#24037;&#20855;&#30340; PDF &#22914;&#20309;&#21463;&#25991;&#20214;&#38480;&#21046;&#24433;&#21709;&#65311;"><span class="mt-icon-article-none"></span>&#19978;&#20256;&#21040;&#36865;&#23457;&#24037;&#20855;&#30340; PDF &#22914;&#20309;&#21463;&#25991;&#20214;&#38480;&#21046;&#24433;&#21709;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-submittals-numbered-in-procore" title="Procore &#20013;&#30340;&#36865;&#23457;&#22914;&#20309;&#32534;&#21495;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#36865;&#23457;&#22914;&#20309;&#32534;&#21495;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-task-codes-configured-for-time-entry" title="&#22914;&#20309;&#20026;&#24037;&#26102;&#26465;&#30446;&#37197;&#32622;&#20219;&#21153;&#32534;&#21495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#24037;&#26102;&#26465;&#30446;&#37197;&#32622;&#20219;&#21153;&#32534;&#21495;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-templates-created-in-portfolio-financials" title="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#21019;&#24314;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#21019;&#24314;&#27169;&#26495;&#65311;</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="&#36865;&#23457;&#33258;&#23450;&#20041;&#25253;&#21578;&#20013;&#30340;&#26085;&#26399;&#21015;&#26159;&#22914;&#20309;&#35745;&#31639;&#30340;&#65311;"><span class="mt-icon-article-none"></span>&#36865;&#23457;&#33258;&#23450;&#20041;&#25253;&#21578;&#20013;&#30340;&#26085;&#26399;&#21015;&#26159;&#22914;&#20309;&#35745;&#31639;&#30340;&#65311;</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="&#22914;&#20309;&#22312;&#20844;&#21496;&#32423;&#21035;&#24037;&#20316;&#27969;&#24037;&#20855;&#20013;&#26356;&#26032;&#29256;&#26412;&#21495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#20844;&#21496;&#32423;&#21035;&#24037;&#20316;&#27969;&#24037;&#20855;&#20013;&#26356;&#26032;&#29256;&#26412;&#21495;&#65311;</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="&#22914;&#20309;&#23558;&#25237;&#26631;&#20154;&#38145;&#23450;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#30340;&#23494;&#23553;&#25237;&#26631;&#23460;&#20043;&#22806;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#25237;&#26631;&#20154;&#38145;&#23450;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#30340;&#23494;&#23553;&#25237;&#26631;&#23460;&#20043;&#22806;&#65311;</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="&#22914;&#20309;&#23558;&#25104;&#26412;&#32534;&#21495;&#28155;&#21152;&#21040;&#19982; Yardi Voyager&reg; &#21516;&#27493;&#30340;&#39033;&#30446;&#20013;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#25104;&#26412;&#32534;&#21495;&#28155;&#21152;&#21040;&#19982; Yardi Voyager&reg; &#21516;&#27493;&#30340;&#39033;&#30446;&#20013;</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="&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#28155;&#21152;&#33258;&#23450;&#20041;&#25237;&#26631;&#34920;&#21333;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#28155;&#21152;&#33258;&#23450;&#20041;&#25237;&#26631;&#34920;&#21333;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#28155;&#21152;&#33258;&#23450;&#20041;&#25104;&#26412;&#36319;&#36394;&#22120;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#28155;&#21152;&#33258;&#23450;&#20041;&#25104;&#26412;&#36319;&#36394;&#22120;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#23558;&ldquo;[Procore] &#39033;&#30446;&#20572;&#24037;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#28155;&#21152;&#21040;&#25105;&#30340; Procore &#36134;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&ldquo;[Procore] &#39033;&#30446;&#20572;&#24037;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#28155;&#21152;&#21040;&#25105;&#30340; Procore &#36134;&#25143;&#65311;</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="&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25104;&#26412;&#39033;&#30340;&#21333;&#20010;&#20540;&#32534;&#21046;&#39044;&#31639;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25104;&#26412;&#39033;&#30340;&#21333;&#20010;&#20540;&#32534;&#21046;&#39044;&#31639;&#65311;</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="&#22914;&#20309;&#26597;&#30475;&#35841;&#26377;&#26435;&#26597;&#30475;&#29305;&#23450;&#36890;&#20449;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26597;&#30475;&#35841;&#26377;&#26435;&#26597;&#30475;&#29305;&#23450;&#36890;&#20449;&#65311;</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="&#22914;&#20309;&#26597;&#30475;&#35841;&#26377;&#26435;&#26597;&#30475;&#26576;&#31181;&#31867;&#22411;&#30340;&#36890;&#20449;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26597;&#30475;&#35841;&#26377;&#26435;&#26597;&#30475;&#26576;&#31181;&#31867;&#22411;&#30340;&#36890;&#20449;&#65311;</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="&#22312;&#25105;&#30340; Procore &#20844;&#21496;&#36134;&#25143;&#20013;&#23454;&#26045; SSO &#20043;&#21069;&#65292;&#22914;&#20309;&#22312;&#27801;&#31665;&#29615;&#22659;&#20013;&#37197;&#32622; SSO &#20197;&#36827;&#34892;&#27979;&#35797;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#25105;&#30340; Procore &#20844;&#21496;&#36134;&#25143;&#20013;&#23454;&#26045; SSO &#20043;&#21069;&#65292;&#22914;&#20309;&#22312;&#27801;&#31665;&#29615;&#22659;&#20013;&#37197;&#32622; SSO &#20197;&#36827;&#34892;&#27979;&#35797;&#65311;</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="&#25105;&#22914;&#20309;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#21457;&#36865;&#36865;&#23457;&#65292;&#20197;&#20415;&#20154;&#20204;&#21487;&#20197;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#22238;&#22797;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#22914;&#20309;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#21457;&#36865;&#36865;&#23457;&#65292;&#20197;&#20415;&#20154;&#20204;&#21487;&#20197;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#22238;&#22797;&#65311;</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="&#22914;&#20309;&#22312;&#36865;&#23457;&#24037;&#20855;&#20013;&#20462;&#22797; PDF &#25991;&#20214;&#38169;&#35823;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#36865;&#23457;&#24037;&#20855;&#20013;&#20462;&#22797; PDF &#25991;&#20214;&#38169;&#35823;&#65311;</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="&#22914;&#20309;&#25480;&#20104;&ldquo;&#26377;&#38480;&rdquo;&#29992;&#25143;&#35775;&#38382;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#29305;&#23450;&#25237;&#26631;&#23460;&#30340;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#25480;&#20104;&ldquo;&#26377;&#38480;&rdquo;&#29992;&#25143;&#35775;&#38382;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#29305;&#23450;&#25237;&#26631;&#23460;&#30340;&#26435;&#38480;&#65311;</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="&#25105;&#22914;&#20309;&#22788;&#29702;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340; CM &#36153;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#22914;&#20309;&#22788;&#29702;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340; CM &#36153;&#29992;&#65311;</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="&#22914;&#20309;&#25552;&#39640;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#22635;&#20805;&#25968;&#25454;&#30340;&#20934;&#30830;&#24615;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#25552;&#39640;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#22635;&#20805;&#25968;&#25454;&#30340;&#20934;&#30830;&#24615;&#65311;</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="&#22914;&#20309;&#25552;&#39640;&#22270;&#32440;&#19978; OCR &#30340;&#20934;&#30830;&#24615;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#25552;&#39640;&#22270;&#32440;&#19978; OCR &#30340;&#20934;&#30830;&#24615;&#65311;</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="&#22914;&#20309;&#25552;&#39640;&#35268;&#33539;&#20998;&#39033;&#35782;&#21035;&#30340;&#20934;&#30830;&#24615;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#25552;&#39640;&#35268;&#33539;&#20998;&#39033;&#35782;&#21035;&#30340;&#20934;&#30830;&#24615;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-keep-track-of-emailed-drawings" title="&#22914;&#20309;&#36319;&#36394;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#21457;&#36865;&#30340;&#22270;&#32440;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#36319;&#36394;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#21457;&#36865;&#30340;&#22270;&#32440;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-keep-track-of-emailed-specifications" title="&#22914;&#20309;&#36319;&#36394;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#21457;&#36865;&#30340;&#35268;&#33539;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#36319;&#36394;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#21457;&#36865;&#30340;&#35268;&#33539;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25163;&#21160;&#28155;&#21152;&#25237;&#26631;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25163;&#21160;&#28155;&#21152;&#25237;&#26631;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30417;&#25511;&#25105;&#25152;&#26377;&#24314;&#31569;&#29289;&#30340;&#27963;&#21160;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30417;&#25511;&#25105;&#25152;&#26377;&#24314;&#31569;&#29289;&#30340;&#27963;&#21160;&#65311;</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="&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#39033;&#30446;&#20013;&#30340;&#25991;&#26723;&#35831;&#27714;&#25991;&#20214;&#22841;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#39033;&#30446;&#20013;&#30340;&#25991;&#26723;&#35831;&#27714;&#25991;&#20214;&#22841;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#36827;&#34892;&#26368;&#20339;&#21644;&#26368;&#21518;&#19968;&#36718;&#25237;&#26631;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#36827;&#34892;&#26368;&#20339;&#21644;&#26368;&#21518;&#19968;&#36718;&#25237;&#26631;&#65311;</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="&#22914;&#20309;&#26597;&#30475;&#26410;&#32534;&#21046;&#39044;&#31639;&#30340;&#26126;&#32454;&#39033;&#30340;&#26469;&#28304;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26597;&#30475;&#26410;&#32534;&#21046;&#39044;&#31639;&#30340;&#26126;&#32454;&#39033;&#30340;&#26469;&#28304;&#65311;</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="&#22914;&#20309;&#22312;&#25104;&#26412;&#36319;&#36394;&#22120;&#20013;&#35774;&#32622;&#31199;&#25143;&#26045;&#24037;&#36864;&#27454;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25104;&#26412;&#36319;&#36394;&#22120;&#20013;&#35774;&#32622;&#31199;&#25143;&#26045;&#24037;&#36864;&#27454;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20849;&#20139;&#23545;&#25237;&#26631;&#23460;&#30340;&#35775;&#38382;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20849;&#20139;&#23545;&#25237;&#26631;&#23460;&#30340;&#35775;&#38382;&#26435;&#38480;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20849;&#20139;&#23545;&#21512;&#21516;&#23460;&#30340;&#35775;&#38382;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20849;&#20139;&#23545;&#21512;&#21516;&#23460;&#30340;&#35775;&#38382;&#26435;&#38480;&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#30340;&#39044;&#31639;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#30340;&#39044;&#31639;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</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="&#22914;&#20309;&#21028;&#26029;&#25105;&#26377;&#20813;&#36153;&#36824;&#26159;&#20184;&#36153; Procore &#20844;&#21496;&#36134;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029;&#25105;&#26377;&#20813;&#36153;&#36824;&#26159;&#20184;&#36153; Procore &#20844;&#21496;&#36134;&#25143;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#35299;&#38500;&#25237;&#26631;&#25110;&#21512;&#21516;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#35299;&#38500;&#25237;&#26631;&#25110;&#21512;&#21516;&#65311;</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="&#22914;&#20309;&#23558;&#22823;&#25991;&#20214;&#19978;&#20256;&#21040;Procore Web&#24212;&#29992;&#31243;&#24207;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#22823;&#25991;&#20214;&#19978;&#20256;&#21040;Procore Web&#24212;&#29992;&#31243;&#24207;&#65311;</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="&#22914;&#20309;&#22312;&#39033;&#30446;&#34920;&#21333;&#24037;&#20855;&#20013;&#20351;&#29992; Procore &#30340;&#21160;&#28779;&#20316;&#19994;&#35768;&#21487; PDF&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#39033;&#30446;&#34920;&#21333;&#24037;&#20855;&#20013;&#20351;&#29992; Procore &#30340;&#21160;&#28779;&#20316;&#19994;&#35768;&#21487; PDF&#65311;</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="&#22914;&#20309;&#20351;&#29992; Procore &#30340;&#20107;&#20214;&#24037;&#20855;&#35760;&#24405;&#20896;&#29366;&#30149;&#27602; (COVID-19) &#24863;&#26579;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20351;&#29992; Procore &#30340;&#20107;&#20214;&#24037;&#20855;&#35760;&#24405;&#20896;&#29366;&#30149;&#27602; (COVID-19) &#24863;&#26579;&#20449;&#24687;&#65311;</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="&#22914;&#20309;&#22312;&#39033;&#30446;&#34920;&#21333;&#24037;&#20855;&#20013;&#20351;&#29992; Procore &#30340;&#20316;&#19994;&#21361;&#23475;&#20998;&#26512; PDF&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#39033;&#30446;&#34920;&#21333;&#24037;&#20855;&#20013;&#20351;&#29992; Procore &#30340;&#20316;&#19994;&#21361;&#23475;&#20998;&#26512; PDF&#65311;</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="&#22914;&#20309;&#22312;&#39033;&#30446;&#34920;&#21333;&#24037;&#20855;&#20013;&#20351;&#29992; Procore &#30340; Toolbox Talk Sign-In PDF&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#39033;&#30446;&#34920;&#21333;&#24037;&#20855;&#20013;&#20351;&#29992; Procore &#30340; Toolbox Talk Sign-In PDF&#65311;</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="&#22914;&#20309;&#22312; Procore &#39033;&#30446;&#20013;&#20351;&#29992;&#31246;&#21153;&#20195;&#30721;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#39033;&#30446;&#20013;&#20351;&#29992;&#31246;&#21153;&#20195;&#30721;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[NextWave Safety Solutions] &#28151;&#20957;&#22303;&#39044;&#27975;&#27880;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[NextWave Safety Solutions] &#28151;&#20957;&#22303;&#39044;&#27975;&#27880;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[NextWave Safety Solutions] &#26799;&#23376;&#23433;&#20840;&#24615; - &#31616;&#21333;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[NextWave Safety Solutions] &#26799;&#23376;&#23433;&#20840;&#24615; - &#31616;&#21333;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OAC Management Inc.] &#39044;&#22238;&#22635;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OAC Management Inc.] &#39044;&#22238;&#22635;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OAC Management Inc.] &#39044;&#24178;&#22681;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OAC Management Inc.] &#39044;&#24178;&#22681;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OAC Management Inc.] &#38138;&#30422;&#23627;&#39030;&#21069;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OAC Management Inc.] &#38138;&#30422;&#23627;&#39030;&#21069;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OSHA] &#27807;&#27133;&#21644;&#25366;&#25496;&#26085;&#24120;&#26816;&#26597;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OSHA] &#27807;&#27133;&#21644;&#25366;&#25496;&#26085;&#24120;&#26816;&#26597;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OSHA] &#19978;&#38145;/&#25346;&#29260;&#31243;&#24207;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OSHA] &#19978;&#38145;/&#25346;&#29260;&#31243;&#24207;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OSHA] &#26448;&#26009;&#22788;&#29702;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OSHA] &#26448;&#26009;&#22788;&#29702;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[Procore] &#35774;&#22791;&#25805;&#20316;&#21069;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[Procore] &#35774;&#22791;&#25805;&#20316;&#21069;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[Procore] &#20316;&#19994;&#29616;&#22330;&#28165;&#27905;&#21644;&#20934;&#22791;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[Procore] &#20316;&#19994;&#29616;&#22330;&#28165;&#27905;&#21644;&#20934;&#22791;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[Procore] SWPPP - &#26045;&#24037;&#29616;&#22330;&#38632;&#27700;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[Procore] SWPPP - &#26045;&#24037;&#29616;&#22330;&#38632;&#27700;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;&#29616;&#22330;&#23433;&#20840;&#26816;&#26597;&#20219;&#21153;&rdquo;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;&#29616;&#22330;&#23433;&#20840;&#26816;&#26597;&#20219;&#21153;&rdquo;&#27169;&#26495;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-wages-in-resource-planning" title="&#22914;&#20309;&#22312;&#36164;&#28304;&#35268;&#21010;&#20013;&#20351;&#29992;&#24037;&#36164;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#36164;&#28304;&#35268;&#21010;&#20013;&#20351;&#29992;&#24037;&#36164;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-view-a-custom-training-center" title="&#22914;&#20309;&#26597;&#30475;&#33258;&#23450;&#20041;&#22521;&#35757;&#20013;&#24515;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26597;&#30475;&#33258;&#23450;&#20041;&#22521;&#35757;&#20013;&#24515;&#65311;</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="&#22914;&#20309;&#26597;&#30475;&#21333;&#20010;&#26085;&#24535;&#25110;&#26085;&#24535;&#20013;&#26576;&#20154;&#30340;&#25253;&#21578;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26597;&#30475;&#21333;&#20010;&#26085;&#24535;&#25110;&#26085;&#24535;&#20013;&#26576;&#20154;&#30340;&#25253;&#21578;&#65311;</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="&#25105;&#30340;&#20844;&#21496;&#22914;&#20309;&#36890;&#36807; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#25509;&#25910;&#25237;&#26631;&#36992;&#35831;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#30340;&#20844;&#21496;&#22914;&#20309;&#36890;&#36807; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#25509;&#25910;&#25237;&#26631;&#36992;&#35831;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#35774;&#32622;&#23457;&#25209;&#24037;&#20316;&#27969;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#35774;&#32622;&#23457;&#25209;&#24037;&#20316;&#27969;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-bid-approvals-work-in-portfolio-financials" title="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-budget-approvals-work-in-portfolio-financials" title="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39044;&#31639;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39044;&#31639;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;</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="&#20272;&#31639;&#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#22914;&#20309;&#21019;&#24314;&#39044;&#31639;&#20013;&#30340;&#26126;&#32454;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20272;&#31639;&#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#22914;&#20309;&#21019;&#24314;&#39044;&#31639;&#20013;&#30340;&#26126;&#32454;&#39033;&#65311;</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="&#29616;&#37329;&#27969;&#39044;&#27979;&#21644;&#36164;&#37329;&#35268;&#21010;&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30456;&#20114;&#20316;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#29616;&#37329;&#27969;&#39044;&#27979;&#21644;&#36164;&#37329;&#35268;&#21010;&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30456;&#20114;&#20316;&#29992;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-contract-approvals-work-in-portfolio-financials" title="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;</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="&#25104;&#26412;&#30446;&#24405;&#39033;&#31867;&#22411;&#19982; Procore &#20013;&#30340;&#25104;&#26412;&#31867;&#22411;&#26377;&#20309;&#20851;&#31995;&#65311;"><span class="mt-icon-article-none"></span>&#25104;&#26412;&#30446;&#24405;&#39033;&#31867;&#22411;&#19982; Procore &#20013;&#30340;&#25104;&#26412;&#31867;&#22411;&#26377;&#20309;&#20851;&#31995;&#65311;</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="&#20351;&#29992;&#25163;&#21160;&#36755;&#20837;&#21019;&#24314;&#30340;&#23614;&#39033;&#39033;&#30446;&#21644;&#20351;&#29992; Quick Capture &#21019;&#24314;&#30340;&#23614;&#39033;&#39033;&#30446;&#20043;&#38388;&#30340;&#25968;&#25454;&#36755;&#20837;&#26377;&#20309;&#19981;&#21516;&#65311;"><span class="mt-icon-article-none"></span>&#20351;&#29992;&#25163;&#21160;&#36755;&#20837;&#21019;&#24314;&#30340;&#23614;&#39033;&#39033;&#30446;&#21644;&#20351;&#29992; Quick Capture &#21019;&#24314;&#30340;&#23614;&#39033;&#39033;&#30446;&#20043;&#38388;&#30340;&#25968;&#25454;&#36755;&#20837;&#26377;&#20309;&#19981;&#21516;&#65311;</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 &#22914;&#20309;&#36830;&#25509;&#21040; Sage 300 CRE &#26381;&#21153;&#22120;&#65311;"><span class="mt-icon-article-none"></span>hh2 &#22914;&#20309;&#36830;&#25509;&#21040; Sage 300 CRE &#26381;&#21153;&#22120;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-analytics-store-dates" title="Procore Analytics&#22914;&#20309;&#23384;&#20648;&#26085;&#26399;&#65311;"><span class="mt-icon-article-none"></span>Procore Analytics&#22914;&#20309;&#23384;&#20648;&#26085;&#26399;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-assign-numbers-to-rfis" title="Procore &#22914;&#20309;&#20026; RFI &#20998;&#37197;&#32534;&#21495;&#65311;"><span class="mt-icon-article-none"></span>Procore &#22914;&#20309;&#20026; RFI &#20998;&#37197;&#32534;&#21495;&#65311;</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 &#22914;&#20309;&#33258;&#21160;&#23436;&#25104;&#19994;&#20027; &#21457;&#31080;&#19978;&#30340;&#37329;&#39069;&#65311; &#65288;&#27979;&#35797;&#29256;&#65289;"><span class="mt-icon-article-none"></span>Procore &#22914;&#20309;&#33258;&#21160;&#23436;&#25104;&#19994;&#20027; &#21457;&#31080;&#19978;&#30340;&#37329;&#39069;&#65311; &#65288;&#27979;&#35797;&#29256;&#65289;</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 &#22914;&#20309;&#33258;&#21160;&#23436;&#25104;&#19978;&#28216; &#21457;&#31080;&#19978;&#30340;&#37329;&#39069;&#65311; &#65288;&#26087;&#29256;&#65289;"><span class="mt-icon-article-none"></span>Procore &#22914;&#20309;&#33258;&#21160;&#23436;&#25104;&#19978;&#28216; &#21457;&#31080;&#19978;&#30340;&#37329;&#39069;&#65311; &#65288;&#26087;&#29256;&#65289;</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 &#22914;&#20309;&#35745;&#31639;&#21457;&#31080;&#30340;&ldquo;&#24403;&#21069;&#21040;&#26399;&#24212;&#20184;&#27454;&rdquo;&#37329;&#39069;&#65311;"><span class="mt-icon-article-none"></span>Procore &#22914;&#20309;&#35745;&#31639;&#21457;&#31080;&#30340;&ldquo;&#24403;&#21069;&#21040;&#26399;&#24212;&#20184;&#27454;&rdquo;&#37329;&#39069;&#65311;</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 &#22914;&#20309;&#35745;&#31639;&#21464;&#26356;&#20107;&#20214;&#20013;&#30340;&#36229;&#25903;/&#32467;&#20313;&#20540;&#65311;"><span class="mt-icon-article-none"></span>Procore &#22914;&#20309;&#35745;&#31639;&#21464;&#26356;&#20107;&#20214;&#20013;&#30340;&#36229;&#25903;/&#32467;&#20313;&#20540;&#65311;</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 &#22914;&#20309;&#30830;&#23450;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#30340;&#26368;&#26032;&#25991;&#26723;&#29256;&#26412;&#65311;"><span class="mt-icon-article-none"></span>Procore &#22914;&#20309;&#30830;&#23450;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#30340;&#26368;&#26032;&#25991;&#26723;&#29256;&#26412;&#65311;</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="&#26576;&#20154;&#22914;&#20309;&#25165;&#33021;&#25104;&#20026; Procore &#20013;&#23545;&#35805;&#30340;&ldquo;&#20851;&#27880;&#32773;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#26576;&#20154;&#22914;&#20309;&#25165;&#33021;&#25104;&#20026; Procore &#20013;&#23545;&#35805;&#30340;&ldquo;&#20851;&#27880;&#32773;&rdquo;&#65311;</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="&ldquo;&#25353;&#26085;&#26399;&#30340;&#23454;&#38469;&#20540;&rdquo;&#31579;&#36873;&#22120;&#22914;&#20309;&#22312;&#39044;&#31639;&#35270;&#22270;&#20013;&#24037;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&ldquo;&#25353;&#26085;&#26399;&#30340;&#23454;&#38469;&#20540;&rdquo;&#31579;&#36873;&#22120;&#22914;&#20309;&#22312;&#39044;&#31639;&#35270;&#22270;&#20013;&#24037;&#20316;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-the-budget-forecast-report" title="&#20160;&#20040;&#26159;&#39044;&#31639;&#39044;&#27979;&#25253;&#21578;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#39044;&#31639;&#39044;&#27979;&#25253;&#21578;&#65311;</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 &#21516;&#27493;&#23458;&#25143;&#31471;&#22914;&#20309;&#23558; Procore &#36830;&#25509;&#21040; Sage 100 Contractor&#65311;"><span class="mt-icon-article-none"></span>hh2 &#21516;&#27493;&#23458;&#25143;&#31471;&#22914;&#20309;&#23558; Procore &#36830;&#25509;&#21040; Sage 100 Contractor&#65311;</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 &#21516;&#27493;&#23458;&#25143;&#31471;&#22914;&#20309;&#20256;&#36755;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>hh2 &#21516;&#27493;&#23458;&#25143;&#31471;&#22914;&#20309;&#20256;&#36755;&#25968;&#25454;&#65311;</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 &#38598;&#25104;&#22914;&#20309;&#36830;&#25509; Procore &#19982; Viewpoint&reg; Vista&trade;&#65311;"><span class="mt-icon-article-none"></span>Ryvit &#38598;&#25104;&#22914;&#20309;&#36830;&#25509; Procore &#19982; Viewpoint&reg; Vista&trade;&#65311;</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 &#25991;&#26723;&#24037;&#20855;&#20013;&#30340; Office 365 &#38598;&#25104;&#22914;&#20309;&#36816;&#34892;&#65311;"><span class="mt-icon-article-none"></span>Procore &#25991;&#26723;&#24037;&#20855;&#20013;&#30340; Office 365 &#38598;&#25104;&#22914;&#20309;&#36816;&#34892;&#65311;</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="&#23614;&#39033;&#28165;&#21333;&#24037;&#20316;&#27969;&#22914;&#20309;&#24433;&#21709;&#25105;&#29616;&#26377;&#30340;&#23614;&#39033;&#28165;&#21333;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#23614;&#39033;&#28165;&#21333;&#24037;&#20316;&#27969;&#22914;&#20309;&#24433;&#21709;&#25105;&#29616;&#26377;&#30340;&#23614;&#39033;&#28165;&#21333;&#39033;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-tls-1-2-impact-users" title="&#20256;&#36755;&#23618;&#23433;&#20840; v1.2 &#35201;&#27714;&#23545;&#29992;&#25143;&#26377;&#20309;&#24433;&#21709;&#65311;"><span class="mt-icon-article-none"></span>&#20256;&#36755;&#23618;&#23433;&#20840; v1.2 &#35201;&#27714;&#23545;&#29992;&#25143;&#26377;&#20309;&#24433;&#21709;&#65311;</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 &#35777;&#20070;&#21319;&#32423;&#23545;&#29992;&#25143;&#26377;&#20309;&#24433;&#21709;&#65311;"><span class="mt-icon-article-none"></span>X.509 &#35777;&#20070;&#21319;&#32423;&#23545;&#29992;&#25143;&#26377;&#20309;&#24433;&#21709;&#65311;</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="&#20316;&#20026;&#20219;&#21153;&#20998;&#37197;&#23545;&#35937;&#65292;&#22914;&#20309;&#35775;&#38382; RFI&#65311;"><span class="mt-icon-article-none"></span>&#20316;&#20026;&#20219;&#21153;&#20998;&#37197;&#23545;&#35937;&#65292;&#22914;&#20309;&#35775;&#38382; RFI&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-access-my-companys-training-center" title="&#22914;&#20309;&#35775;&#38382;&#25105;&#20844;&#21496;&#30340;&#22521;&#35757;&#20013;&#24515;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35775;&#38382;&#25105;&#20844;&#21496;&#30340;&#22521;&#35757;&#20013;&#24515;&#65311;</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="&#22914;&#20309;&#23558;&#25237;&#26631;&#38754;&#26495;&#39033;&#30446;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#30446;&#38598;&#21512;&#24037;&#20855;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#25237;&#26631;&#38754;&#26495;&#39033;&#30446;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#30446;&#38598;&#21512;&#24037;&#20855;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#23558;&#24314;&#31569;&#28155;&#21152;&#21040;&#25105;&#30340;&#36134;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#23558;&#24314;&#31569;&#28155;&#21152;&#21040;&#25105;&#30340;&#36134;&#25143;&#65311;</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="&#22914;&#20309;&#21521;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#20379;&#24212;&#21830;&#37197;&#32622;&#25991;&#20214;&#28155;&#21152;&#20854;&#20182;&#32852;&#31995;&#20154;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21521;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#20379;&#24212;&#21830;&#37197;&#32622;&#25991;&#20214;&#28155;&#21152;&#20854;&#20182;&#32852;&#31995;&#20154;&#65311;</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="&#22914;&#20309;&#21521; Procore &#28155;&#21152;&#22836;&#20687;&#25110;&#20010;&#20154;&#36164;&#26009;&#29031;&#29255;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21521; Procore &#28155;&#21152;&#22836;&#20687;&#25110;&#20010;&#20154;&#36164;&#26009;&#29031;&#29255;&#65311;</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="&#22914;&#20309;&#28155;&#21152;&#26032;&#30340; Sage 300 CRE &#25104;&#26412;&#32534;&#21495;&#25110;&#25104;&#26412;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#28155;&#21152;&#26032;&#30340; Sage 300 CRE &#25104;&#26412;&#32534;&#21495;&#25110;&#25104;&#26412;&#31867;&#22411;&#65311;</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="&#22914;&#20309;&#22312;&#26032;&#30340;&#25237;&#26631;&#31649;&#29702;&#20307;&#39564;&#20013;&#28155;&#21152;&#25237;&#26631;&#20154;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#26032;&#30340;&#25237;&#26631;&#31649;&#29702;&#20307;&#39564;&#20013;&#28155;&#21152;&#25237;&#26631;&#20154;&#65311;</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="&#22914;&#20309;&#28155;&#21152;&#32570;&#22833;&#30340;&#25104;&#26412;&#32534;&#21495;&#20197;&#20415;&#23558;&#39033;&#30446;&#36801;&#31227;&#21040;&#26032;&#29256;&#25237;&#26631;&#31649;&#29702;&#20307;&#39564;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#28155;&#21152;&#32570;&#22833;&#30340;&#25104;&#26412;&#32534;&#21495;&#20197;&#20415;&#23558;&#39033;&#30446;&#36801;&#31227;&#21040;&#26032;&#29256;&#25237;&#26631;&#31649;&#29702;&#20307;&#39564;&#65311;</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="&#22914;&#20309;&#23558;&#20154;&#21592;&#28155;&#21152;&#21040;&#36865;&#23457;&#24037;&#20316;&#27969;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#20154;&#21592;&#28155;&#21152;&#21040;&#36865;&#23457;&#24037;&#20316;&#27969;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340; LinkedIn &#20010;&#20154;&#36164;&#26009;&#20013;&#28155;&#21152;&ldquo;Procore&rdquo;&#20316;&#20026;&#21487;&#35748;&#21487;&#30340;&#25216;&#33021;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25105;&#30340; LinkedIn &#20010;&#20154;&#36164;&#26009;&#20013;&#28155;&#21152;&ldquo;Procore&rdquo;&#20316;&#20026;&#21487;&#35748;&#21487;&#30340;&#25216;&#33021;&#65311;</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="&#22914;&#20309;&#23558;&ldquo;&#32771;&#21220;&#34920;&#24037;&#26102;&rdquo;&#21015;&#28155;&#21152;&#21040;&#39044;&#31639;&#35270;&#22270;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&ldquo;&#32771;&#21220;&#34920;&#24037;&#26102;&rdquo;&#21015;&#28155;&#21152;&#21040;&#39044;&#31639;&#35270;&#22270;&#65311;</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="&#22914;&#20309;&#22312; Procore &#20013;&#23558;&#24037;&#20855;&#28155;&#21152;&#21040;&#25910;&#34255;&#22841;&#21015;&#34920;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#20013;&#23558;&#24037;&#20855;&#28155;&#21152;&#21040;&#25910;&#34255;&#22841;&#21015;&#34920;&#65311;</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="&#22914;&#20309;&#22312; Procore &#30340;&#39044;&#31639;&#23548;&#20837;&#27169;&#26495;&#20013;&#28155;&#21152;&#22522;&#20110;&#21333;&#20301;&#30340;&#26126;&#32454;&#39033;&#35814;&#32454;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#30340;&#39044;&#31639;&#23548;&#20837;&#27169;&#26495;&#20013;&#28155;&#21152;&#22522;&#20110;&#21333;&#20301;&#30340;&#26126;&#32454;&#39033;&#35814;&#32454;&#20449;&#24687;&#65311;</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="&#24403;&#25105;&#20844;&#21496; Procore &#36134;&#25143;&#31105;&#29992;&#23458;&#25143;&#21512;&#21516;&#12289;&#36164;&#37329;&#25110;&#20027;&#21512;&#21516;&#24037;&#20855;&#26102;&#65292;&#25105;&#33021;&#22914;&#20309;&#35843;&#25972;&#39044;&#31639;&#35270;&#22270;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#25105;&#20844;&#21496; Procore &#36134;&#25143;&#31105;&#29992;&#23458;&#25143;&#21512;&#21516;&#12289;&#36164;&#37329;&#25110;&#20027;&#21512;&#21516;&#24037;&#20855;&#26102;&#65292;&#25105;&#33021;&#22914;&#20309;&#35843;&#25972;&#39044;&#31639;&#35270;&#22270;&#65311;</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="&#24403;&#23458;&#25143;&#21512;&#21516;&#12289;&#36164;&#37329;&#25110;&#20027;&#21512;&#21516;&#24037;&#20855;&#34987;&#31105;&#29992;&#26102;&#65292;&#25105;&#22914;&#20309;&#35843;&#25972; Procore &#26631;&#20934;&#39044;&#27979;&#35270;&#22270;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#23458;&#25143;&#21512;&#21516;&#12289;&#36164;&#37329;&#25110;&#20027;&#21512;&#21516;&#24037;&#20855;&#34987;&#31105;&#29992;&#26102;&#65292;&#25105;&#22914;&#20309;&#35843;&#25972; Procore &#26631;&#20934;&#39044;&#27979;&#35270;&#22270;&#65311;</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="&#22914;&#20309;&#23558;&#20808;&#21069;&#20462;&#35746;&#20013;&#30340;&#26631;&#35760;&#24212;&#29992;&#21040;&#26032;&#20462;&#35746;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#20808;&#21069;&#20462;&#35746;&#20013;&#30340;&#26631;&#35760;&#24212;&#29992;&#21040;&#26032;&#20462;&#35746;&#65311;</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="&#22914;&#20309;&#19968;&#27425;&#23558;&#22810;&#20010;&#25991;&#20214;&#28155;&#21152;&#21040;&#20256;&#36755;&#35760;&#24405;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#19968;&#27425;&#23558;&#22810;&#20010;&#25991;&#20214;&#28155;&#21152;&#21040;&#20256;&#36755;&#35760;&#24405;&#20013;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-avoid-and-report-phishing-emails" title="&#22914;&#20309;&#36991;&#20813;&#21644;&#25253;&#21578;&#32593;&#32476;&#38035;&#40060;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#36991;&#20813;&#21644;&#25253;&#21578;&#32593;&#32476;&#38035;&#40060;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#22914;&#20309;&#23558;&#26469;&#33258; Yardi &#30340;&#21457;&#31080;&#22238;&#22635;&#21040;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#26469;&#33258; Yardi &#30340;&#21457;&#31080;&#22238;&#22635;&#21040;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#65311;</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="&#22914;&#20309;&#22312;&#21457;&#31080;&#20013;&#20026;&#24211;&#23384;&#26448;&#26009;&#24320;&#20855;&#36134;&#21333;&#65311; &#65288;&#27979;&#35797;&#29256;&#65289;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#21457;&#31080;&#20013;&#20026;&#24211;&#23384;&#26448;&#26009;&#24320;&#20855;&#36134;&#21333;&#65311; &#65288;&#27979;&#35797;&#29256;&#65289;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-change-a-known-password" title="&#22914;&#20309;&#26356;&#25913;&#24050;&#30693;&#23494;&#30721;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26356;&#25913;&#24050;&#30693;&#23494;&#30721;&#65311;</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="&#22914;&#20309;&#26356;&#25913;&#25105;&#22312; Procore &#35748;&#35777;&#20013;&#30340;&#22995;&#21517;&#25110;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26356;&#25913;&#25105;&#22312; Procore &#35748;&#35777;&#20013;&#30340;&#22995;&#21517;&#25110;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&#65311;</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="&#22914;&#20309;&#20026; mailto &#38142;&#25509;&#26356;&#25913;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#30340;&#40664;&#35748;&#30005;&#23376;&#37038;&#20214;&#23458;&#25143;&#31471;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026; mailto &#38142;&#25509;&#26356;&#25913;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#30340;&#40664;&#35748;&#30005;&#23376;&#37038;&#20214;&#23458;&#25143;&#31471;&#65311;</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="&#22914;&#20309;&#26356;&#25913;&#36865;&#23457;&#30340;&ldquo;&#36131;&#20219;&#25215;&#21253;&#21830;&rdquo;&#23383;&#27573;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26356;&#25913;&#36865;&#23457;&#30340;&ldquo;&#36131;&#20219;&#25215;&#21253;&#21830;&rdquo;&#23383;&#27573;&#65311;</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="&#22914;&#20309;&#26597;&#30475;&#25105;&#30340; Procore &#36134;&#25143;&#20013;&#21253;&#21547;&#21738;&#20123; Procore &#24037;&#20855;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26597;&#30475;&#25105;&#30340; Procore &#36134;&#25143;&#20013;&#21253;&#21547;&#21738;&#20123; Procore &#24037;&#20855;&#65311;</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="&#22914;&#20309;&#20026;&#25105;&#30340;&#39033;&#30446;&#36873;&#25321;&#40664;&#35748;&#23614;&#39033;&#39033;&#30446;&#32463;&#29702;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#25105;&#30340;&#39033;&#30446;&#36873;&#25321;&#40664;&#35748;&#23614;&#39033;&#39033;&#30446;&#32463;&#29702;&#65311;</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="&#22914;&#20309;&#22312; Procore &#20013;&#23436;&#25104;&#20197;&#21069;&#22312;&#29420;&#31435; Procore Estimating &#24212;&#29992;&#31243;&#24207;&#20013;&#23436;&#25104;&#30340;&#20219;&#21153;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#20013;&#23436;&#25104;&#20197;&#21069;&#22312;&#29420;&#31435; Procore Estimating &#24212;&#29992;&#31243;&#24207;&#20013;&#23436;&#25104;&#30340;&#20219;&#21153;&#65311;</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="&#22914;&#20309;&#37197;&#32622;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#20197;&#20801;&#35768;&#26469;&#33258; Procore &#30340;&#24377;&#20986;&#31383;&#21475;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#37197;&#32622;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#20197;&#20801;&#35768;&#26469;&#33258; Procore &#30340;&#24377;&#20986;&#31383;&#21475;&#65311;</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="&#22914;&#20309;&#20026;&#36890;&#20449;&#39033;&#37197;&#32622;&#38544;&#31169;&#35774;&#32622;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#36890;&#20449;&#39033;&#37197;&#32622;&#38544;&#31169;&#35774;&#32622;&#65311;</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="&#22914;&#20309;&#20026;&#24102;&#35745;&#26102;&#30340;&#22810;&#23618;&#23457;&#25209;&#37197;&#32622;&#29992;&#25143;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#24102;&#35745;&#26102;&#30340;&#22810;&#23618;&#23457;&#25209;&#37197;&#32622;&#29992;&#25143;&#26435;&#38480;&#65311;</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="&#22914;&#20309;&#25511;&#21046; Procore &#22312; RFI &#36807;&#31243;&#20013;&#21457;&#36865;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#25511;&#21046; Procore &#22312; RFI &#36807;&#31243;&#20013;&#21457;&#36865;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#25105;&#22914;&#20309;&#25511;&#21046; Procore &#20174;&#23614;&#39033;&#28165;&#21333;&#24037;&#20855;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#22914;&#20309;&#25511;&#21046; Procore &#20174;&#23614;&#39033;&#28165;&#21333;&#24037;&#20855;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#22914;&#20309;&#20026;&#21457;&#31080;&#21019;&#24314;&#32467;&#31639;&#26399;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#21457;&#31080;&#21019;&#24314;&#32467;&#31639;&#26399;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-create-a-bookmark-to-procore" title="&#22914;&#20309;&#20026; Procore &#21019;&#24314;&#20070;&#31614;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026; Procore &#21019;&#24314;&#20070;&#31614;&#65311;</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="&#22914;&#20309;&#21019;&#24314; Procore &#30340;&#26700;&#38754;&#24555;&#25463;&#26041;&#24335;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21019;&#24314; Procore &#30340;&#26700;&#38754;&#24555;&#25463;&#26041;&#24335;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-create-a-fillable-pdf" title="&#22914;&#20309;&#21019;&#24314;&#21487;&#22635;&#20889; PDF&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21019;&#24314;&#21487;&#22635;&#20889; PDF&#65311;</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="&#22914;&#20309;&#22312; Procore &#20013;&#21019;&#24314;&#25110;&#21152;&#20837; Zoom &#20250;&#35758;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#20013;&#21019;&#24314;&#25110;&#21152;&#20837; Zoom &#20250;&#35758;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-customize-submittal-responses" title="&#22914;&#20309;&#33258;&#23450;&#20041;&#36865;&#23457;&#31572;&#22797;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#33258;&#23450;&#20041;&#36865;&#23457;&#31572;&#22797;&#65311;</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="&#22914;&#20309;&#21024;&#38500;&#24050;&#33719;&#25209;&#21464;&#26356;&#36890;&#30693;&#21333;&#20013;&#30340;&#26126;&#32454;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21024;&#38500;&#24050;&#33719;&#25209;&#21464;&#26356;&#36890;&#30693;&#21333;&#20013;&#30340;&#26126;&#32454;&#39033;&#65311;</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="&#22914;&#20309;&#30830;&#23450;&#22320;&#22336;&#30340;&#32428;&#24230;&#21644;&#32463;&#24230;&#20540;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#30830;&#23450;&#22320;&#22336;&#30340;&#32428;&#24230;&#21644;&#32463;&#24230;&#20540;&#65311;</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="&#22914;&#20309;&#30830;&#23450;&#26159;&#21542;&#24050;&#21457;&#36865;&#23614;&#39033;&#28165;&#21333;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#30830;&#23450;&#26159;&#21542;&#24050;&#21457;&#36865;&#23614;&#39033;&#28165;&#21333;&#39033;&#30446;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-disable-quick-capture-for-ios" title="&#22914;&#20309;&#31105;&#29992; iOS &#30340; Quick Capture&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#31105;&#29992; iOS &#30340; Quick Capture&#65311;</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="&#22914;&#20309;&#22312;&#20027;&#39029;&#19978;&#26174;&#31034;&#39033;&#30446;&#26085;&#26399;&#21015;&#34920;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#20027;&#39029;&#19978;&#26174;&#31034;&#39033;&#30446;&#26085;&#26399;&#21015;&#34920;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-download-the-google-chrome-browser" title="&#22914;&#20309;&#19979;&#36733; Google Chrome &#27983;&#35272;&#22120;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#19979;&#36733; Google Chrome &#27983;&#35272;&#22120;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-download-the-mozilla-firefox-browser" title="&#22914;&#20309;&#19979;&#36733; Mozilla Firefox &#27983;&#35272;&#22120;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#19979;&#36733; Mozilla Firefox &#27983;&#35272;&#22120;&#65311;</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="&#22914;&#20309;&#19979;&#36733; Procore &#30340; Android &#31227;&#21160;&#24212;&#29992;&#31243;&#24207;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#19979;&#36733; Procore &#30340; Android &#31227;&#21160;&#24212;&#29992;&#31243;&#24207;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#32534;&#36753;&#21512;&#21516;&#21021;&#22987;&#22870;&#21169;&#37329;&#39069;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#32534;&#36753;&#21512;&#21516;&#21021;&#22987;&#22870;&#21169;&#37329;&#39069;&#65311;</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="&#22914;&#20309;&#22312; Procore &#20013;&#32534;&#36753;&#39033;&#30446;&#36827;&#24230;&#35745;&#21010;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#20013;&#32534;&#36753;&#39033;&#30446;&#36827;&#24230;&#35745;&#21010;&#65311;</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="&#22914;&#20309;&#20026;&#24037;&#20316;&#26085;&#24535;&#21551;&#29992;&#20854;&#20182;&#21171;&#21160;&#21147;&#20154;&#24037;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#24037;&#20316;&#26085;&#24535;&#21551;&#29992;&#20854;&#20182;&#21171;&#21160;&#21147;&#20154;&#24037;&#31867;&#22411;&#65311;</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="&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#39033;&#30446;&#21551;&#29992;&#25104;&#26412;&#20998;&#37197;&#21644;&#32452;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#39033;&#30446;&#21551;&#29992;&#25104;&#26412;&#20998;&#37197;&#21644;&#32452;&#20214;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20026;&#21512;&#21516;&#21551;&#29992;&#20445;&#30041;&#37329;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20026;&#21512;&#21516;&#21551;&#29992;&#20445;&#30041;&#37329;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enable-the-docusign-integration" title="&#22914;&#20309;&#21551;&#29992; DocuSign&reg; &#38598;&#25104;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21551;&#29992; DocuSign&reg; &#38598;&#25104;&#65311;</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="&#22914;&#20309;&#30830;&#20445; Procore &#30005;&#23376;&#37038;&#20214;&#36865;&#36798;&#25910;&#20214;&#20154;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#30830;&#20445; Procore &#30005;&#23376;&#37038;&#20214;&#36865;&#36798;&#25910;&#20214;&#20154;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#36755;&#20837;&#20449;&#29992;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#36755;&#20837;&#20449;&#29992;&#21457;&#31080;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#36755;&#20837;&#24403;&#24180;&#30340;&#39044;&#31639;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#36755;&#20837;&#24403;&#24180;&#30340;&#39044;&#31639;&#39033;&#30446;&#65311;</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="&#22914;&#20309;&#23558;&#39033;&#30446;&#39044;&#31639;&#20174; Procore &#23548;&#20986;&#21040; Sage 300 CRE&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#39033;&#30446;&#39044;&#31639;&#20174; Procore &#23548;&#20986;&#21040; Sage 300 CRE&#65311;</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="&#22914;&#20309;&#23558;&#25104;&#26412;&#39044;&#27979;&#25968;&#25454;&#20174; Procore &#39044;&#31639;&#23548;&#20986;&#21040;CMiC"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#25104;&#26412;&#39044;&#27979;&#25968;&#25454;&#20174; Procore &#39044;&#31639;&#23548;&#20986;&#21040;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="&#22914;&#20309;&#23558;&#25104;&#26412;&#39044;&#27979;&#25968;&#25454;&#20174; Procore &#39044;&#31639;&#23548;&#20986;&#21040; ERP"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#25104;&#26412;&#39044;&#27979;&#25968;&#25454;&#20174; Procore &#39044;&#31639;&#23548;&#20986;&#21040; 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="&#22914;&#20309;&#25353;&#22810;&#23618;&#22320;&#28857;&#31579;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#25353;&#22810;&#23618;&#22320;&#28857;&#31579;&#36873;&#39033;&#65311;</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="&#22914;&#20309;&#20174;&#33258;&#23450;&#20041; RFI &#25253;&#21578;&#20013;&#31579;&#36873;&#25481;&ldquo;&#24050;&#22238;&#25910;&rdquo;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20174;&#33258;&#23450;&#20041; RFI &#25253;&#21578;&#20013;&#31579;&#36873;&#25481;&ldquo;&#24050;&#22238;&#25910;&rdquo;&#39033;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-find-the-company-id" title="&#22914;&#20309;&#25214;&#21040;&#20844;&#21496; ID&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#25214;&#21040;&#20844;&#21496; ID&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-find-the-project-id" title="&#22914;&#20309;&#26597;&#25214;&#39033;&#30446; ID&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26597;&#25214;&#39033;&#30446; ID&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-get-a-docusign-account" title="&#22914;&#20309;&#33719;&#24471; DocuSign&reg; &#36134;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#33719;&#24471; DocuSign&reg; &#36134;&#25143;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-get-started-with-procore-analytics" title="&#22914;&#20309;&#24320;&#22987;&#20351;&#29992;Procore Analytics&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#24320;&#22987;&#20351;&#29992;Procore Analytics&#65311;</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="&#22914;&#20309;&#33719;&#21462;&#36866;&#29992;&#20110; Mac OS X &#30340;&#26368;&#26032;&#29256;&#26412;&#30340; Safari&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#33719;&#21462;&#36866;&#29992;&#20110; Mac OS X &#30340;&#26368;&#26032;&#29256;&#26412;&#30340; Safari&#65311;</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="&#22914;&#20309;&#22312;&#26412;&#22320;&#36827;&#24230;&#35745;&#21010;&#25991;&#20214;&#20013;&#26356;&#26032;&#23436;&#25104;&#30334;&#20998;&#27604;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#26412;&#22320;&#36827;&#24230;&#35745;&#21010;&#25991;&#20214;&#20013;&#26356;&#26032;&#23436;&#25104;&#30334;&#20998;&#27604;&#65311;</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="&#22914;&#20309;&#35753;&#29992;&#25143;&#35775;&#38382;&#36164;&#26684;&#39044;&#23457;&#24037;&#20855;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35753;&#29992;&#25143;&#35775;&#38382;&#36164;&#26684;&#39044;&#23457;&#24037;&#20855;&#65311;</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="&#25105;&#22914;&#20309;&#30693;&#36947;&#25105;&#22312;&#25237;&#26631;&#23460;&#21457;&#24067;&#30340; RFI &#26159;&#21542;&#24050;&#24471;&#21040;&#31572;&#22797;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#22914;&#20309;&#30693;&#36947;&#25105;&#22312;&#25237;&#26631;&#23460;&#21457;&#24067;&#30340; RFI &#26159;&#21542;&#24050;&#24471;&#21040;&#31572;&#22797;&#65311;</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="&#22914;&#20309;&#20102;&#35299;&#25105;&#30340; DocuSign &#36134;&#25143;&#26159;&#21542;&#19982; Procore &#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20102;&#35299;&#25105;&#30340; DocuSign &#36134;&#25143;&#26159;&#21542;&#19982; Procore &#21516;&#27493;&#65311;</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="&#25105;&#22914;&#20309;&#30693;&#36947;&#26159;&#21542;&#26377;&#20154;&#19979;&#36733;&#20102;&#25991;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#22914;&#20309;&#30693;&#36947;&#26159;&#21542;&#26377;&#20154;&#19979;&#36733;&#20102;&#25991;&#20214;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#25214;&#21040;&#23384;&#26723;&#30340;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#25214;&#21040;&#23384;&#26723;&#30340;&#39033;&#30446;&#65311;</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="&#22914;&#20309;&#30331;&#24405;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#30331;&#24405;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#65311;</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="&#22914;&#20309;&#30331;&#24405; Procore &#25903;&#25345;&#32593;&#31449;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#30331;&#24405; Procore &#25903;&#25345;&#32593;&#31449;&#65311;</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="&#22914;&#20309;&#20351;&#29992;Microsoft Azure AD &#65288;Entra ID&#65289;&#21333;&#28857;&#30331;&#24405;&#26469;&#30331;&#24405; Procore&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20351;&#29992;Microsoft Azure AD &#65288;Entra ID&#65289;&#21333;&#28857;&#30331;&#24405;&#26469;&#30331;&#24405; Procore&#65311;</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="&#22914;&#20309;&#26597;&#30475;&#22810;&#22825;&#30340;&#24037;&#20316;&#26085;&#24535;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26597;&#30475;&#22810;&#22825;&#30340;&#24037;&#20316;&#26085;&#24535;&#65311;</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="&#22914;&#20309;&#23558;&#25105;&#30340;&#23614;&#39033;&#28165;&#21333;&#39033;&#30446;&#40664;&#35748;&#35774;&#20026;&#31169;&#23494;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#25105;&#30340;&#23614;&#39033;&#28165;&#21333;&#39033;&#30446;&#40664;&#35748;&#35774;&#20026;&#31169;&#23494;&#65311;</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="&#22914;&#20309;&#23558;&#20219;&#21153;&#20998;&#37197;&#23545;&#35937;&#26631;&#35760;&#20026; RFI &#30340;&#25152;&#38656;&#31572;&#22797;&#32773;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#20219;&#21153;&#20998;&#37197;&#23545;&#35937;&#26631;&#35760;&#20026; RFI &#30340;&#25152;&#38656;&#31572;&#22797;&#32773;&#65311;</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="&#22914;&#20309;&#23548;&#33322;&#21040;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23548;&#33322;&#21040;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#65311;</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="&#19982; Procore &#38598;&#25104;&#22914;&#20309;&#35775;&#38382;&#20844;&#21496;&#30340;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>&#19982; Procore &#38598;&#25104;&#22914;&#20309;&#35775;&#38382;&#20844;&#21496;&#30340;&#25968;&#25454;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-invoice-approvals-work-in-portfolio-financials" title="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21457;&#31080;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21457;&#31080;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;</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="&#22914;&#20309;&#36873;&#25321;&#21152;&#20837; Procore &#23545;&#35805;&#30340;&#27979;&#35797;&#29256;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#36873;&#25321;&#21152;&#20837; Procore &#23545;&#35805;&#30340;&#27979;&#35797;&#29256;&#65311;</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="&#22914;&#20309;&#22312; Web &#27983;&#35272;&#22120;&#20013;&#25191;&#34892;&#30828;&#21047;&#26032;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Web &#27983;&#35272;&#22120;&#20013;&#25191;&#34892;&#30828;&#21047;&#26032;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-post-an-idea-for-procore" title="&#25105;&#22914;&#20309;&#21457;&#24067;&#26377;&#20851; Procore &#30340;&#24819;&#27861;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#22914;&#20309;&#21457;&#24067;&#26377;&#20851; Procore &#30340;&#24819;&#27861;&#65311;</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="&#22914;&#20309;&#22312; Excel &#20013;&#20445;&#30041;&#25104;&#26412;&#32534;&#21495;&#26684;&#24335;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Excel &#20013;&#20445;&#30041;&#25104;&#26412;&#32534;&#21495;&#26684;&#24335;&#65311;</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="&#19982;&#36164;&#28304;&#35268;&#21010;&#21516;&#27493;&#25968;&#25454;&#26102;&#22914;&#20309;&#38450;&#27490;&#37325;&#22797;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#19982;&#36164;&#28304;&#35268;&#21010;&#21516;&#27493;&#25968;&#25454;&#26102;&#22914;&#20309;&#38450;&#27490;&#37325;&#22797;&#39033;&#30446;&#65311;</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="&#22914;&#20309;&#23545;&#39029;&#38754;&#35780;&#20998;&#24182;&#21457;&#36865;&#21453;&#39304;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23545;&#39029;&#38754;&#35780;&#20998;&#24182;&#21457;&#36865;&#21453;&#39304;&#65311;</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="&#22312;&#23457;&#25209;&#27969;&#31243;&#20013;&#65292;&#22914;&#20309;&#20174;&#36865;&#23457;&#24037;&#20316;&#27969;&#20013;&#31227;&#38500;&#36865;&#23457;&#32773;&#25110;&#23457;&#25209;&#32773;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#23457;&#25209;&#27969;&#31243;&#20013;&#65292;&#22914;&#20309;&#20174;&#36865;&#23457;&#24037;&#20316;&#27969;&#20013;&#31227;&#38500;&#36865;&#23457;&#32773;&#25110;&#23457;&#25209;&#32773;&#65311;</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="&#22914;&#20309;&#35831;&#27714;&#35775;&#38382;&#33258;&#23450;&#20041;&#22521;&#35757;&#20013;&#24515;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35831;&#27714;&#35775;&#38382;&#33258;&#23450;&#20041;&#22521;&#35757;&#20013;&#24515;&#65311;</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="&#22914;&#20309;&#25764;&#38144; Procore &#29992;&#25143;&#30340;&#39033;&#30446;&#35775;&#38382;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#25764;&#38144; Procore &#29992;&#25143;&#30340;&#39033;&#30446;&#35775;&#38382;&#26435;&#38480;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#36816;&#34892;&#23494;&#23553;&#25237;&#26631;&#27969;&#31243;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#36816;&#34892;&#23494;&#23553;&#25237;&#26631;&#27969;&#31243;&#65311;</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="&#22914;&#20309;&#22312; Procore &#20013;&#35774;&#32622;&#21644;&#36820;&#36824;&#20998;&#21253;&#21830;&#21457;&#31080;&#30340;&#20445;&#30041;&#37329;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#20013;&#35774;&#32622;&#21644;&#36820;&#36824;&#20998;&#21253;&#21830;&#21457;&#31080;&#30340;&#20445;&#30041;&#37329;&#65311;</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="&#22914;&#20309;&#35774;&#32622;&#21512;&#21516;&#25110;&#36164;&#37329;&#30340;&#20250;&#35745;&#26041;&#27861;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35774;&#32622;&#21512;&#21516;&#25110;&#36164;&#37329;&#30340;&#20250;&#35745;&#26041;&#27861;&#65311;</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="&#22914;&#20309;&#20026;&#25237;&#26631;&#35774;&#32622;&#20250;&#35745;&#26041;&#27861;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#25237;&#26631;&#35774;&#32622;&#20250;&#35745;&#26041;&#27861;&#65311;</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="&#22914;&#20309;&#20026;&#23454;&#26102;&#20154;&#24037;&#29983;&#20135;&#21147;&#35774;&#32622;&#39044;&#31639;&#35270;&#22270;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#23454;&#26102;&#20154;&#24037;&#29983;&#20135;&#21147;&#35774;&#32622;&#39044;&#31639;&#35270;&#22270;&#65311;</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="&#22914;&#20309;&#22312;&#36164;&#28304;&#35268;&#21010;&#20013;&#35774;&#32622;&#25105;&#30340;&#36134;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#36164;&#28304;&#35268;&#21010;&#20013;&#35774;&#32622;&#25105;&#30340;&#36134;&#25143;&#65311;</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="&#22914;&#20309;&#35774;&#32622;&#36890;&#20449;&#31867;&#22411;&#30340;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35774;&#32622;&#36890;&#20449;&#31867;&#22411;&#30340;&#26435;&#38480;&#65311;</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="&#22914;&#20309;&#20026; Procore &#37197;&#32622; Okta &#21333;&#28857;&#30331;&#24405; (SAML 2.0)&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026; Procore &#37197;&#32622; Okta &#21333;&#28857;&#30331;&#24405; (SAML 2.0)&#65311;</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="&#22914;&#20309;&#20351;&#29992; Procore &#35774;&#32622;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20351;&#29992; Procore &#35774;&#32622;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;</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="&#22914;&#20309;&#35774;&#32622;&ldquo;Procore &#20154;&#24037;&#29983;&#20135;&#21147;&#25104;&#26412;&rdquo;&#39044;&#31639;&#35270;&#22270;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35774;&#32622;&ldquo;Procore &#20154;&#24037;&#29983;&#20135;&#21147;&#25104;&#26412;&rdquo;&#39044;&#31639;&#35270;&#22270;&#65311;</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="&#22914;&#20309;&#20026; Procore + QuickBooks &#35774;&#32622;&#20998;&#21253;&#21830;&#21457;&#31080;&#21644;&#20184;&#27454;&#21151;&#33021;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026; Procore + QuickBooks &#35774;&#32622;&#20998;&#21253;&#21830;&#21457;&#31080;&#21644;&#20184;&#27454;&#21151;&#33021;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-share-feedback-with-procore" title="&#22914;&#20309;&#19982; Procore &#20998;&#20139;&#21453;&#39304;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#19982; Procore &#20998;&#20139;&#21453;&#39304;&#65311;</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="&#22914;&#20309;&#22312;&#20250;&#35758; PDF &#19978;&#26174;&#31034;&#20197;&#21069;&#30340;&#20250;&#35758;&#32426;&#35201;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#20250;&#35758; PDF &#19978;&#26174;&#31034;&#20197;&#21069;&#30340;&#20250;&#35758;&#32426;&#35201;&#65311;</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="&#22914;&#26524;&#25105;&#27809;&#26377; Procore &#30331;&#24405;&#20973;&#35777;&#65292;&#35813;&#22914;&#20309;&#27880;&#20876; Procore &#35748;&#35777;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#25105;&#27809;&#26377; Procore &#30331;&#24405;&#20973;&#35777;&#65292;&#35813;&#22914;&#20309;&#27880;&#20876; Procore &#35748;&#35777;&#65311;</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="&#22914;&#20309;&#38459;&#27490;&#20250;&#35758;&#39033;&#36716;&#31227;&#21040;&#21518;&#32493;&#20250;&#35758;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#38459;&#27490;&#20250;&#35758;&#39033;&#36716;&#31227;&#21040;&#21518;&#32493;&#20250;&#35758;&#65311;</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="&#22914;&#26524;&#25105;&#26159; RFI &#32463;&#29702;&#65292;&#22914;&#20309;&#25552;&#20132;&#23545; RFI&ldquo;&#33609;&#31295;&rdquo;&#30340;&#31572;&#22797;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#25105;&#26159; RFI &#32463;&#29702;&#65292;&#22914;&#20309;&#25552;&#20132;&#23545; RFI&ldquo;&#33609;&#31295;&rdquo;&#30340;&#31572;&#22797;&#65311;</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="&#22914;&#20309;&#25552;&#20132; Procore &#21512;&#32422;&#30340;&#20998;&#21253;&#21830;&#20998;&#39033;&#20215;&#26684;&#34920;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#25552;&#20132; Procore &#21512;&#32422;&#30340;&#20998;&#21253;&#21830;&#20998;&#39033;&#20215;&#26684;&#34920;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25552;&#20132;&#21464;&#26356;&#36890;&#30693;&#21333;&#21644;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25552;&#20132;&#21464;&#26356;&#36890;&#30693;&#21333;&#21644;&#21457;&#31080;&#65311;</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="&#22914;&#20309;&#22312; Procore &#20013;&#30340;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#39033;&#30446;&#31649;&#29702;&#24037;&#20855;&#21253;&#20043;&#38388;&#20999;&#25442;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#20013;&#30340;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#39033;&#30446;&#31649;&#29702;&#24037;&#20855;&#21253;&#20043;&#38388;&#20999;&#25442;&#65311;</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="&#22914;&#20309;&#23558;&#25105;&#30340;&#20027;&#21512;&#21516;&#19982; Acumatica &#25110;MYOB Advanced Construction&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#25105;&#30340;&#20027;&#21512;&#21516;&#19982; Acumatica &#25110;MYOB Advanced Construction&#21516;&#27493;&#65311;</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 &#20013;&#30340;&#39033;&#22914;&#20309;&#22312;&#22320;&#22270;&#19978;&#26174;&#31034;&#65311;"><span class="mt-icon-article-reference"></span>Procore &#20013;&#30340;&#39033;&#22914;&#20309;&#22312;&#22320;&#22270;&#19978;&#26174;&#31034;&#65311;</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="&#22914;&#20309;&#36319;&#36394;&#21464;&#26356;&#20107;&#20214;&#30340;&#38750;&#21512;&#32422;&#25104;&#26412;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#36319;&#36394;&#21464;&#26356;&#20107;&#20214;&#30340;&#38750;&#21512;&#32422;&#25104;&#26412;&#65311;</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="&#22914;&#20309;&#36319;&#36394;&#22312;&#20316;&#19994;&#29616;&#22330;&#25509;&#25910;&#21644;&#23433;&#35013;&#30340;&#23454;&#38469;&#26448;&#26009;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#36319;&#36394;&#22312;&#20316;&#19994;&#29616;&#22330;&#25509;&#25910;&#21644;&#23433;&#35013;&#30340;&#23454;&#38469;&#26448;&#26009;&#65311;</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="&#22914;&#20309;&#22312;&#20844;&#21496;&#30340; Procore &#21333;&#28857;&#30331;&#24405;&#37197;&#32622;&#35774;&#32622;&#20013;&#26356;&#26032;&#21363;&#23558;&#21040;&#26399;&#30340; x509 &#35777;&#20070;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#20844;&#21496;&#30340; Procore &#21333;&#28857;&#30331;&#24405;&#37197;&#32622;&#35774;&#32622;&#20013;&#26356;&#26032;&#21363;&#23558;&#21040;&#26399;&#30340; x509 &#35777;&#20070;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-use-tags-keywords-in-procore" title="&#22914;&#20309;&#22312; Procore &#20013;&#20351;&#29992;&#26631;&#31614;/&#20851;&#38190;&#35789;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#20013;&#20351;&#29992;&#26631;&#31614;/&#20851;&#38190;&#35789;&#65311;</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="&#22914;&#20309;&#22312;&#36164;&#28304;&#35268;&#21010;&#20013;&#20351;&#29992;&#24102;&#26377;&#21040;&#26399;&#26085;&#26399;&#30340;&#26631;&#35760;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#36164;&#28304;&#35268;&#21010;&#20013;&#20351;&#29992;&#24102;&#26377;&#21040;&#26399;&#26085;&#26399;&#30340;&#26631;&#35760;&#65311;</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="&#22914;&#20309;&#20351;&#29992;&#23548;&#33322;&#26639;&#36820;&#22238;&#20844;&#21496;&#39033;&#30446;&#38598;&#21512;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20351;&#29992;&#23548;&#33322;&#26639;&#36820;&#22238;&#20844;&#21496;&#39033;&#30446;&#38598;&#21512;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-use-the-notification-center" title="&#22914;&#20309;&#20351;&#29992;&#36890;&#30693;&#20013;&#24515;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20351;&#29992;&#36890;&#30693;&#20013;&#24515;&#65311;</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="&#22914;&#20309;&#39564;&#35777;&#28595;&#22823;&#21033;&#20122;&#21830;&#19994;&#32534;&#21495; (ABN)&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#39564;&#35777;&#28595;&#22823;&#21033;&#20122;&#21830;&#19994;&#32534;&#21495; (ABN)&#65311;</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="&#25105;&#22914;&#20309;&#26597;&#30475;&#26410;&#23436;&#25104;&#30340;&#35748;&#35777;&#25110;&#25104;&#20154;&#25945;&#32946;&#35838;&#31243;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#22914;&#20309;&#26597;&#30475;&#26410;&#23436;&#25104;&#30340;&#35748;&#35777;&#25110;&#25104;&#20154;&#25945;&#32946;&#35838;&#31243;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-I-view-resource-allocation-percentage" title="&#22914;&#20309;&#26597;&#30475;&#36164;&#28304;&#20998;&#37197;&#30334;&#20998;&#27604;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26597;&#30475;&#36164;&#28304;&#20998;&#37197;&#30334;&#20998;&#27604;&#65311;</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="&#25105;&#30340;&#29305;&#23450;&#20110;&#39033;&#30446;&#30340;&ldquo;&#25104;&#26412;&#32534;&#21495;&rdquo;&#32454;&#20998;&#39033;&#22914;&#20309;&#20174;&#39033;&#30446;&#27169;&#26495;&#36716;&#31227;&#21040;&#26032;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#30340;&#29305;&#23450;&#20110;&#39033;&#30446;&#30340;&ldquo;&#25104;&#26412;&#32534;&#21495;&rdquo;&#32454;&#20998;&#39033;&#22914;&#20309;&#20174;&#39033;&#30446;&#27169;&#26495;&#36716;&#31227;&#21040;&#26032;&#39033;&#30446;&#65311;</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 &#20013;&#30340;&#23545;&#35805;&#24037;&#20855;&#30340;&#36890;&#30693;&#22914;&#20309;&#24037;&#20316;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#23545;&#35805;&#24037;&#20855;&#30340;&#36890;&#30693;&#22914;&#20309;&#24037;&#20316;&#65311;</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 &#30340;&#26435;&#38480;&#22914;&#20309;&#24037;&#20316;&#65311;"><span class="mt-icon-article-none"></span>Analytics 2.0 &#30340;&#26435;&#38480;&#22914;&#20309;&#24037;&#20316;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-permissions-work-for-free-procore-accounts" title="&#20813;&#36153; Procore &#36134;&#25143;&#30340;&#26435;&#38480;&#22914;&#20309;&#24037;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#20813;&#36153; Procore &#36134;&#25143;&#30340;&#26435;&#38480;&#22914;&#20309;&#24037;&#20316;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-permissions-work-for-the-conversations-tool" title="&#23545;&#35805;&#24037;&#20855;&#30340;&#26435;&#38480;&#22914;&#20309;&#24037;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#23545;&#35805;&#24037;&#20855;&#30340;&#26435;&#38480;&#22914;&#20309;&#24037;&#20316;&#65311;</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="&#26435;&#38480;&#22914;&#20309;&#22312;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#21457;&#25381;&#20316;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#26435;&#38480;&#22914;&#20309;&#22312;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#21457;&#25381;&#20316;&#29992;&#65311;</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="&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#30340;&#21015;&#26174;&#31034;&#35774;&#32622;&#22914;&#20309;&#24037;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#30340;&#21015;&#26174;&#31034;&#35774;&#32622;&#22914;&#20309;&#24037;&#20316;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-is-security-handled-with-third-party-applications" title="&#22914;&#20309;&#22788;&#29702;&#31532;&#19977;&#26041;&#24212;&#29992;&#31243;&#24207;&#30340;&#23433;&#20840;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22788;&#29702;&#31532;&#19977;&#26041;&#24212;&#29992;&#31243;&#24207;&#30340;&#23433;&#20840;&#38382;&#39064;&#65311;</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="&#20174; Procore &#20013;&#25552;&#21462;&#25968;&#25454;&#38656;&#35201;&#22810;&#38271;&#26102;&#38388;&#65311;"><span class="mt-icon-article-none"></span>&#20174; Procore &#20013;&#25552;&#21462;&#25968;&#25454;&#38656;&#35201;&#22810;&#38271;&#26102;&#38388;&#65311;</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="&#25105;&#22810;&#20037;&#21487;&#20197;&#22312; Procore &#21644; Viewpoint&reg; Spectrum&reg; &#20043;&#38388;&#21516;&#27493;&#25968;&#25454;&#19968;&#27425;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#22810;&#20037;&#21487;&#20197;&#22312; Procore &#21644; Viewpoint&reg; Spectrum&reg; &#20043;&#38388;&#21516;&#27493;&#25968;&#25454;&#19968;&#27425;&#65311;</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="&#25105;&#21487;&#22312; Sage 100 Contractor &#21644; Procore &#20043;&#38388;&#20197;&#20309;&#31181;&#39057;&#29575;&#21516;&#27493;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#22312; Sage 100 Contractor &#21644; Procore &#20043;&#38388;&#20197;&#20309;&#31181;&#39057;&#29575;&#21516;&#27493;&#25968;&#25454;&#65311;</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="&#25105;&#21487;&#22312; Sage 300 CRE &#21644; Procore &#20043;&#38388;&#20197;&#20309;&#31181;&#39057;&#29575;&#21516;&#27493;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#22312; Sage 300 CRE &#21644; Procore &#20043;&#38388;&#20197;&#20309;&#31181;&#39057;&#29575;&#21516;&#27493;&#25968;&#25454;&#65311;</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="&#25105;&#21487;&#20197;&#20351;&#29992; Ryvit &#38598;&#25104;&#20197;&#20309;&#31181;&#39057;&#29575;&#21516;&#27493;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#20351;&#29992; Ryvit &#38598;&#25104;&#20197;&#20309;&#31181;&#39057;&#29575;&#21516;&#27493;&#25968;&#25454;&#65311;</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="&#25105;&#35813;&#36873;&#25321;&#21738;&#20123; Viewpoint&reg; Spectrum&reg; &#20316;&#19994;&#20986;&#29616;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#30340;&ldquo;&#36873;&#25321;&#20316;&#19994;&#27169;&#26495;&rdquo;&#21015;&#34920;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#35813;&#36873;&#25321;&#21738;&#20123; Viewpoint&reg; Spectrum&reg; &#20316;&#19994;&#20986;&#29616;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#30340;&ldquo;&#36873;&#25321;&#20316;&#19994;&#27169;&#26495;&rdquo;&#21015;&#34920;&#20013;&#65311;</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="&#23548;&#20986;&#21040; ERP &#26102;&#22914;&#20309;&#35299;&#20915;&ldquo;&#21512;&#32422;&#32534;&#21495;&#24050;&#23384;&#22312;&rdquo;&#38169;&#35823;"><span class="mt-icon-article-none"></span>&#23548;&#20986;&#21040; ERP &#26102;&#22914;&#20309;&#35299;&#20915;&ldquo;&#21512;&#32422;&#32534;&#21495;&#24050;&#23384;&#22312;&rdquo;&#38169;&#35823;</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="&#22914;&#20309;&#35299;&#20915;&#23548;&#20986;&#21040;ERP&#26102;&#30340;&quot;&#26080;&#27861;&#23436;&#25104;&#27492;&#23548;&#20986;&#65292;&#22240;&#20026;QuickBooks&#20013;&#30340;&#26126;&#32454;&#39033;&#25968;&#37327;&#19982; Procore &#20013;&#30340;&#25968;&#37327;&#19981;&#21305;&#37197;&quot;&#38169;&#35823;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;&#23548;&#20986;&#21040;ERP&#26102;&#30340;&quot;&#26080;&#27861;&#23436;&#25104;&#27492;&#23548;&#20986;&#65292;&#22240;&#20026;QuickBooks&#20013;&#30340;&#26126;&#32454;&#39033;&#25968;&#37327;&#19982; Procore &#20013;&#30340;&#25968;&#37327;&#19981;&#21305;&#37197;&quot;&#38169;&#35823;&#65311;</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="&#23548;&#20986;&#21040; ERP &#26102;&#22914;&#20309;&#35299;&#20915;&ldquo;&#23548;&#20837;&#25805;&#20316;&#33457;&#36153;&#30340;&#26102;&#38388;&#36229;&#36807;&#35774;&#32622;&#30340;&#36229;&#26102;&#26102;&#38388;&rdquo;&#38169;&#35823;&#65311;"><span class="mt-icon-article-none"></span>&#23548;&#20986;&#21040; ERP &#26102;&#22914;&#20309;&#35299;&#20915;&ldquo;&#23548;&#20837;&#25805;&#20316;&#33457;&#36153;&#30340;&#26102;&#38388;&#36229;&#36807;&#35774;&#32622;&#30340;&#36229;&#26102;&#26102;&#38388;&rdquo;&#38169;&#35823;&#65311;</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="&#22312;&#23548;&#20986;&#21040; ERP &#26102;&#65292;&#22914;&#20309;&#35299;&#20915;&ldquo;&#28155;&#21152;&#12289;&#20462;&#25913;&#25110;&#21024;&#38500; XXXXXX-XXXXXXXXXXX &#26102;&#20986;&#38169;&#65292;&#22240;&#20026;&#24050;&#22312;&#20351;&#29992;&#20013;&#12290;&rdquo;&#38169;&#35823;"><span class="mt-icon-article-none"></span>&#22312;&#23548;&#20986;&#21040; ERP &#26102;&#65292;&#22914;&#20309;&#35299;&#20915;&ldquo;&#28155;&#21152;&#12289;&#20462;&#25913;&#25110;&#21024;&#38500; XXXXXX-XXXXXXXXXXX &#26102;&#20986;&#38169;&#65292;&#22240;&#20026;&#24050;&#22312;&#20351;&#29992;&#20013;&#12290;&rdquo;&#38169;&#35823;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-will-configured-fieldsets-affect-my-existing-projects" title="&#37197;&#32622;&#30340;&#23383;&#27573;&#38598;&#23558;&#22914;&#20309;&#24433;&#21709;&#29616;&#26377;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#37197;&#32622;&#30340;&#23383;&#27573;&#38598;&#23558;&#22914;&#20309;&#24433;&#21709;&#29616;&#26377;&#39033;&#30446;&#65311;</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="&#25105;&#22914;&#20309;&#30693;&#36947;&#25105;&#30340;&#21457;&#31080;&#25110;&#21464;&#26356;&#36890;&#30693;&#21333;&#20309;&#26102;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#34987;&#25209;&#20934;&#25110;&#25298;&#32477;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#22914;&#20309;&#30693;&#36947;&#25105;&#30340;&#21457;&#31080;&#25110;&#21464;&#26356;&#36890;&#30693;&#21333;&#20309;&#26102;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#34987;&#25209;&#20934;&#25110;&#25298;&#32477;&#65311;</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="&#22914;&#20309;&#22312;&#32771;&#21220;&#34920;&#20013;&#20351;&#29992;&#20197;&#21069;&#30340;&#32771;&#21220;&#21345;&#26465;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32771;&#21220;&#34920;&#20013;&#20351;&#29992;&#20197;&#21069;&#30340;&#32771;&#21220;&#21345;&#26465;&#30446;&#65311;</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="&#22914;&#26524;&#29992;&#25143;&#27809;&#26377;&#26597;&#30475;&#29305;&#23450;&#36890;&#20449;&#31867;&#22411;&#30340;&#26435;&#38480;&#65292;&#20182;&#20204;&#33021;&#21542;&#22312;&#20854;&ldquo;&#39033;&#30446;&#27010;&#20917;&rdquo;&#20202;&#34920;&#26495;&#20013;&#26597;&#30475;&#35813;&#36890;&#20449;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#29992;&#25143;&#27809;&#26377;&#26597;&#30475;&#29305;&#23450;&#36890;&#20449;&#31867;&#22411;&#30340;&#26435;&#38480;&#65292;&#20182;&#20204;&#33021;&#21542;&#22312;&#20854;&ldquo;&#39033;&#30446;&#27010;&#20917;&rdquo;&#20202;&#34920;&#26495;&#20013;&#26597;&#30475;&#35813;&#36890;&#20449;&#31867;&#22411;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/inspection-requirements-general-faq" title="&#26816;&#26597;&#20219;&#21153;&#35201;&#27714;:&#19968;&#33324;&#24120;&#35265;&#38382;&#39064;"><span class="mt-icon-article-reference"></span>&#26816;&#26597;&#20219;&#21153;&#35201;&#27714;:&#19968;&#33324;&#24120;&#35265;&#38382;&#39064;</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 &#35748;&#35777;&#27979;&#39564;&#26159;&#21542;&#26377;&#26368;&#20302;&#21450;&#26684;&#20998;&#25968;&#65311;"><span class="mt-icon-article-none"></span>Procore &#35748;&#35777;&#27979;&#39564;&#26159;&#21542;&#26377;&#26368;&#20302;&#21450;&#26684;&#20998;&#25968;&#65311;</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="&#26159;&#21542;&#21487;&#20197;&#25209;&#37327;&#26367;&#25442;&#39033;&#30446;&#36865;&#23457;&#20013;&#30340;&#23457;&#25209;&#32773;&#12289;&#36865;&#23457;&#32773;&#25110;&#23457;&#26680;&#20154;&#65311;"><span class="mt-icon-article-none"></span>&#26159;&#21542;&#21487;&#20197;&#25209;&#37327;&#26367;&#25442;&#39033;&#30446;&#36865;&#23457;&#20013;&#30340;&#23457;&#25209;&#32773;&#12289;&#36865;&#23457;&#32773;&#25110;&#23457;&#26680;&#20154;&#65311;</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="&#26159;&#21542;&#26377;&#21150;&#27861;&#26597;&#30475; Procore &#20013;&#20998;&#37197;&#32473;&#25105;&#30340;&#25152;&#26377;&#26410;&#23436;&#25104;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#26159;&#21542;&#26377;&#21150;&#27861;&#26597;&#30475; Procore &#20013;&#20998;&#37197;&#32473;&#25105;&#30340;&#25152;&#26377;&#26410;&#23436;&#25104;&#39033;&#65311;</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="&#25105;&#20197;&#20026;&#33258;&#24049;&#28155;&#21152;&#20102;&#19968;&#20010;&#29992;&#25143;&#65292;&#20294;&#29616;&#22312;&#25214;&#19981;&#21040;&#37027;&#20010;&#20154;&#12290;&#21457;&#29983;&#20102;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#20197;&#20026;&#33258;&#24049;&#28155;&#21152;&#20102;&#19968;&#20010;&#29992;&#25143;&#65292;&#20294;&#29616;&#22312;&#25214;&#19981;&#21040;&#37027;&#20010;&#20154;&#12290;&#21457;&#29983;&#20102;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/plug-icon-missing-marketplace-nav-how-to" title="&ldquo;&#25554;&#22836;&rdquo;&#22270;&#26631;&#24050;&#31227;&#38500;&#65292;&#25105;&#22914;&#20309;&#23548;&#33322;&#21040;&#24212;&#29992;&#21830;&#24215;&#65311;"><span class="mt-icon-article-none"></span>&ldquo;&#25554;&#22836;&rdquo;&#22270;&#26631;&#24050;&#31227;&#38500;&#65292;&#25105;&#22914;&#20309;&#23548;&#33322;&#21040;&#24212;&#29992;&#21830;&#24215;&#65311;</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="&#25105;&#24212;&#35813;&#22312;&#39033;&#30446;&#20013;&#21551;&#29992;&#35268;&#33539;&#24037;&#20855;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#24212;&#35813;&#22312;&#39033;&#30446;&#20013;&#21551;&#29992;&#35268;&#33539;&#24037;&#20855;&#21527;&#65311;</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="&#26159;&#21542;&#24212;&#35813;&#23558; Microsoft Project &#36827;&#24230;&#35745;&#21010;&#38598;&#25104;&#21040; Procore Web &#24212;&#29992;&#31243;&#24207;&#25110; Procore Drive&#65311;"><span class="mt-icon-article-none"></span>&#26159;&#21542;&#24212;&#35813;&#23558; Microsoft Project &#36827;&#24230;&#35745;&#21010;&#38598;&#25104;&#21040; Procore Web &#24212;&#29992;&#31243;&#24207;&#25110; Procore Drive&#65311;</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="&#26159;&#21542;&#24212;&#35813;&#26356;&#26032;&#39044;&#31639;&#35270;&#22270;&#20197;&#23558; RFQ &#20540;&#28155;&#21152;&#21040;&#39044;&#31639;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#26159;&#21542;&#24212;&#35813;&#26356;&#26032;&#39044;&#31639;&#35270;&#22270;&#20197;&#23558; RFQ &#20540;&#28155;&#21152;&#21040;&#39044;&#31639;&#20013;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/trouble-logging-in-to-procore/forgot-password" title="&#24536;&#35760;&#23494;&#30721;"><span class="mt-icon-article-topic"></span>&#24536;&#35760;&#23494;&#30721;</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="&#23581;&#35797;&#30331;&#24405;&#65292;&#20294;&#25910;&#21040;&#38169;&#35823;&#28040;&#24687;"><span class="mt-icon-article-none"></span>&#23581;&#35797;&#30331;&#24405;&#65292;&#20294;&#25910;&#21040;&#38169;&#35823;&#28040;&#24687;</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="&#22312; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#19978;&#21015;&#20986;&#30340;&#20844;&#21496;&#65292;&#25105;&#21487;&#20197;&#26597;&#30475;&#21738;&#20123;&#27963;&#21160;&#25351;&#26631;&#65311;"><span class="mt-icon-article-none"></span>&#22312; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#19978;&#21015;&#20986;&#30340;&#20844;&#21496;&#65292;&#25105;&#21487;&#20197;&#26597;&#30475;&#21738;&#20123;&#27963;&#21160;&#25351;&#26631;&#65311;</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="&#20351;&#29992; 360 &#24230;&#25253;&#21578;&#35775;&#38382;&#21487;&#25253;&#21578;&#25968;&#25454;&#38656;&#35201;&#21738;&#20123;&#39069;&#22806;&#30340;&#29992;&#25143;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#20351;&#29992; 360 &#24230;&#25253;&#21578;&#35775;&#38382;&#21487;&#25253;&#21578;&#25968;&#25454;&#38656;&#35201;&#21738;&#20123;&#39069;&#22806;&#30340;&#29992;&#25143;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-app-configurations" title="&#20160;&#20040;&#26159;&#24212;&#29992;&#31243;&#24207;&#37197;&#32622;&#65292;&#22914;&#20309;&#20351;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#24212;&#29992;&#31243;&#24207;&#37197;&#32622;&#65292;&#22914;&#20309;&#20351;&#29992;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-approvals-in-portfolio-financials" title="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#23457;&#25209;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#23457;&#25209;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-available-regions-on-apps" title="&#24212;&#29992;&#21830;&#24215;&#24212;&#29992;&#31243;&#24207;&#19978;&#30340;&ldquo;&#21487;&#29992;&#21306;&#22495;&rdquo;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#24212;&#29992;&#21830;&#24215;&#24212;&#29992;&#31243;&#24207;&#19978;&#30340;&ldquo;&#21487;&#29992;&#21306;&#22495;&rdquo;&#26159;&#20160;&#20040;&#65311;</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="&#20351;&#29992;&#22810;&#20010;&#65288;&#20998;&#38454;&#27573;&#65289;&#39044;&#31639;&#19978;&#20256;&#30340;&#26368;&#20339;&#20570;&#27861;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20351;&#29992;&#22810;&#20010;&#65288;&#20998;&#38454;&#27573;&#65289;&#39044;&#31639;&#19978;&#20256;&#30340;&#26368;&#20339;&#20570;&#27861;&#26159;&#20160;&#20040;&#65311;</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="&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</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="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25104;&#26412;&#20998;&#37197;&#21644;&#32452;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25104;&#26412;&#20998;&#37197;&#21644;&#32452;&#20214;&#65311;</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="&#26377;&#21738;&#20123;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#20197;&#21450;&#25105;&#20204;&#30340; ERP &#38598;&#25104;&#22914;&#20309;&#25903;&#25345;&#36825;&#20123;&#25104;&#26412;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#26377;&#21738;&#20123;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#20197;&#21450;&#25105;&#20204;&#30340; ERP &#38598;&#25104;&#22914;&#20309;&#25903;&#25345;&#36825;&#20123;&#25104;&#26412;&#31867;&#22411;&#65311;</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="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-project-roles" title="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#39033;&#30446;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#39033;&#30446;&#35282;&#33394;&#65311;</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="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#37096;&#20998;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#37096;&#20998;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-drawing-areas" title="&#20160;&#20040;&#26159;&#22270;&#32440;&#21306;&#22495;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#22270;&#32440;&#21306;&#22495;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-dynamic-approver-due-dates" title="&#20160;&#20040;&#26159;&#21160;&#24577;&#35745;&#31639;&#23457;&#25209;&#32773;&#25130;&#27490;&#26085;&#26399;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21160;&#24577;&#35745;&#31639;&#23457;&#25209;&#32773;&#25130;&#27490;&#26085;&#26399;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-meeting-minutes" title="&#20160;&#20040;&#26159;&#20250;&#35758;&#32426;&#35201;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20250;&#35758;&#32426;&#35201;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#37324;&#31243;&#30865;&#20381;&#36182;&#39033;&#26159;&#20160;&#20040;&#65311;&#22914;&#20309;&#36827;&#34892;&#35774;&#32622;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#37324;&#31243;&#30865;&#20381;&#36182;&#39033;&#26159;&#20160;&#20040;&#65311;&#22914;&#20309;&#36827;&#34892;&#35774;&#32622;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-multi-tiered-locations" title="&#20160;&#20040;&#26159;&#22810;&#23618;&#22320;&#28857;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#22810;&#23618;&#22320;&#28857;&#65311;</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="&#20160;&#20040;&#26159; Procore &#20013;&#30340;&#26435;&#38480;&#20197;&#21450;&#23427;&#20204;&#22914;&#20309;&#24037;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#20013;&#30340;&#26435;&#38480;&#20197;&#21450;&#23427;&#20204;&#22914;&#20309;&#24037;&#20316;&#65311;</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 &#30340;&#40664;&#35748;&#21464;&#26356;&#31867;&#22411;&#21644;&#21464;&#26356;&#21407;&#22240;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#40664;&#35748;&#21464;&#26356;&#31867;&#22411;&#21644;&#21464;&#26356;&#21407;&#22240;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-types" title="Procore &#26377;&#21738;&#20123;&#40664;&#35748;&#25104;&#26412;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>Procore &#26377;&#21738;&#20123;&#40664;&#35748;&#25104;&#26412;&#31867;&#22411;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-product-categories" title="Procore &#30340;&#20135;&#21697;&#31867;&#21035;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#20135;&#21697;&#31867;&#21035;&#26377;&#21738;&#20123;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-standard-budget-views" title="&#20160;&#20040;&#26159; Procore &#30340;&#26631;&#20934;&#39044;&#31639;&#35270;&#22270;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#30340;&#26631;&#20934;&#39044;&#31639;&#35270;&#22270;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-production-quantities" title="&#20160;&#20040;&#26159;&ldquo;&#29983;&#20135;&#25968;&#37327;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&ldquo;&#29983;&#20135;&#25968;&#37327;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-role-based-permissions" title="&#20160;&#20040;&#26159;&#22522;&#20110;&#35282;&#33394;&#30340;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#22522;&#20110;&#35282;&#33394;&#30340;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-segments-and-segment-items" title="&#20160;&#20040;&#26159;&#32454;&#20998;&#21644;&#32454;&#20998;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32454;&#20998;&#21644;&#32454;&#20998;&#39033;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21153;&#21644;&#36164;&#37329;&#35268;&#21010;&#25253;&#21578;&#30340;&#19968;&#20123;&#26368;&#20339;&#23454;&#36341;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21153;&#21644;&#36164;&#37329;&#35268;&#21010;&#25253;&#21578;&#30340;&#19968;&#20123;&#26368;&#20339;&#23454;&#36341;&#26159;&#20160;&#20040;&#65311;</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="&#21487;&#20197;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#29983;&#25104;&#21738;&#20123;&#25253;&#21578;&#31034;&#20363;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#29983;&#25104;&#21738;&#20123;&#25253;&#21578;&#31034;&#20363;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-specifications" title="&#20160;&#20040;&#26159;&#35268;&#33539;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#35268;&#33539;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-super-private-correspondence-types" title="&#20160;&#20040;&#26159;&#36229;&#32423;&#31169;&#23494;&#36890;&#20449;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#36229;&#32423;&#31169;&#23494;&#36890;&#20449;&#31867;&#22411;&#65311;</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="&#25105;&#30340;&#22270;&#32440;&#26085;&#24535;&#20013;&#30340;&#34013;&#33394;&#22270;&#26631;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#30340;&#22270;&#32440;&#26085;&#24535;&#20013;&#30340;&#34013;&#33394;&#22270;&#26631;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-budget-warning-banner-changes" title="&#39044;&#31639;&#35686;&#21578;&#27178;&#24133;&#26377;&#21738;&#20123;&#21464;&#21270;&#65311;"><span class="mt-icon-article-none"></span>&#39044;&#31639;&#35686;&#21578;&#27178;&#24133;&#26377;&#21738;&#20123;&#21464;&#21270;&#65311;</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="&#23548;&#20837;&#27169;&#26495;&#20013;&#30340;&#21015;&#26631;&#39064;&#26356;&#26032;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#23548;&#20837;&#27169;&#26495;&#20013;&#30340;&#21015;&#26631;&#39064;&#26356;&#26032;&#26159;&#20160;&#20040;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#33258;&#23450;&#20041;&#25253;&#21578;&#21487;&#20351;&#29992;&#21738;&#20123;&#25968;&#25454;&#28857;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#33258;&#23450;&#20041;&#25253;&#21578;&#21487;&#20351;&#29992;&#21738;&#20123;&#25968;&#25454;&#28857;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#36164;&#37329;&#35268;&#21010;&#30340;&#25968;&#25454;&#28857;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#36164;&#37329;&#35268;&#21010;&#30340;&#25968;&#25454;&#28857;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-action-plan-verification-methods" title="&#20160;&#20040;&#26159;&#40664;&#35748;&#34892;&#21160;&#35745;&#21010;&#39564;&#35777;&#26041;&#27861;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#40664;&#35748;&#34892;&#21160;&#35745;&#21010;&#39564;&#35777;&#26041;&#27861;&#65311;</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="&#21512;&#32422;&#24037;&#20855;&#30340;&#21512;&#21516;&#26631;&#31614;&#39029;&#20013;&#30340;&#40664;&#35748;&#21015;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&#24037;&#20855;&#30340;&#21512;&#21516;&#26631;&#31614;&#39029;&#20013;&#30340;&#40664;&#35748;&#21015;&#26377;&#21738;&#20123;&#65311;</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="&#20027;&#21512;&#21516;&#24037;&#20855;&#20013;&#30340;&#40664;&#35748;&#21015;&#26159;&#20160;&#20040;&#21015;&#65311;"><span class="mt-icon-article-none"></span>&#20027;&#21512;&#21516;&#24037;&#20855;&#20013;&#30340;&#40664;&#35748;&#21015;&#26159;&#20160;&#20040;&#21015;&#65311;</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 &#20013;&#30340;&#40664;&#35748;&#21512;&#32422;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#40664;&#35748;&#21512;&#32422;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;</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 &#30340;&ldquo;&#38468;&#24405;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#38468;&#24405;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#20844;&#21578;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#20844;&#21578;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#21464;&#26356;&#35831;&#27714;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#21464;&#26356;&#35831;&#27714;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#23458;&#25143;&#25351;&#31034;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#23458;&#25143;&#25351;&#31034;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#32422;&#26463;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#32422;&#26463;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#25552;&#26089;&#35686;&#21578;&#36890;&#30693;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#25552;&#26089;&#35686;&#21578;&#36890;&#30693;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#24310;&#26399;&#30003;&#35831;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#24310;&#26399;&#30003;&#35831;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#19968;&#33324;&#36890;&#20449;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#19968;&#33324;&#36890;&#20449;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#32463;&#39564;&#25945;&#35757;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#32463;&#39564;&#25945;&#35757;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#24847;&#21521;&#20070;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#24847;&#21521;&#20070;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#20449;&#20989;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#20449;&#20989;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#26448;&#26009;&#35831;&#27714;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#26448;&#26009;&#35831;&#27714;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#32531;&#35299;&#35745;&#21010;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#32531;&#35299;&#35745;&#21010;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#24310;&#36831;&#36890;&#30693;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#24310;&#36831;&#36890;&#30693;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#24320;&#24037;&#36890;&#30693;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#24320;&#24037;&#36890;&#30693;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#25187;&#27454;&#36890;&#30693;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#25187;&#27454;&#36890;&#30693;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#35768;&#21487;&#35831;&#27714;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#35768;&#21487;&#35831;&#27714;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#39033;&#30446;&#35831;&#27714;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#39033;&#30446;&#35831;&#27714;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#39118;&#38505;&#35782;&#21035;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#39118;&#38505;&#35782;&#21035;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#29616;&#22330;&#25351;&#31034;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#29616;&#22330;&#25351;&#31034;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#20256;&#36755;&#35760;&#24405;&rdquo;&#27169;&#26495;&#36890;&#20449; &#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&ldquo;&#20256;&#36755;&#35760;&#24405;&rdquo;&#27169;&#26495;&#36890;&#20449; &#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-observation-types-used-for" title="&#40664;&#35748;&#35266;&#23519;&#20219;&#21153;&#31867;&#22411;&#26377;&#20309;&#29992;&#36884;&#65311;"><span class="mt-icon-article-none"></span>&#40664;&#35748;&#35266;&#23519;&#20219;&#21153;&#31867;&#22411;&#26377;&#20309;&#29992;&#36884;&#65311;</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 &#20013;&#30340;&#40664;&#35748;&#26435;&#38480;&#32423;&#21035;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#40664;&#35748;&#26435;&#38480;&#32423;&#21035;&#26377;&#21738;&#20123;&#65311;</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="&#20160;&#20040;&#26159; Procore &#20013;&#30340;&#40664;&#35748;&#39033;&#30446;&#26435;&#38480;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#20013;&#30340;&#40664;&#35748;&#39033;&#30446;&#26435;&#38480;&#27169;&#26495;&#65311;</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 &#20013;&#30340;&#40664;&#35748;&#39033;&#30446;&#38454;&#27573;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#40664;&#35748;&#39033;&#30446;&#38454;&#27573;&#26159;&#20160;&#20040;&#65311;</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 &#20013;&#21464;&#26356;&#20107;&#20214;&#30340;&#40664;&#35748;&ldquo;&#33539;&#22260;&rdquo;&#36873;&#39033;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#21464;&#26356;&#20107;&#20214;&#30340;&#40664;&#35748;&ldquo;&#33539;&#22260;&rdquo;&#36873;&#39033;&#26377;&#21738;&#20123;&#65311;</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 &#20013;&#21464;&#26356;&#20107;&#20214;&#30340;&#40664;&#35748;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#21464;&#26356;&#20107;&#20214;&#30340;&#40664;&#35748;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;</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 &#20013;&#21464;&#26356;&#36890;&#30693;&#21333;&#30340;&#40664;&#35748;&#29366;&#24577;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#21464;&#26356;&#36890;&#30693;&#21333;&#30340;&#40664;&#35748;&#29366;&#24577;&#26159;&#20160;&#20040;&#65311;</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="&#22312; Procore &#20013;&#65292;&#20445;&#38505;&#30340;&#40664;&#35748;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>&#22312; Procore &#20013;&#65292;&#20445;&#38505;&#30340;&#40664;&#35748;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;</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 &#21457;&#31080;&#30340;&#40664;&#35748;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#21457;&#31080;&#30340;&#40664;&#35748;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-statuses-for-tm-tickets" title="&#24037;&#26102;&#21644;&#26448;&#26009;&#21333;&#30340;&#40664;&#35748;&#29366;&#24577;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#24037;&#26102;&#21644;&#26448;&#26009;&#21333;&#30340;&#40664;&#35748;&#29366;&#24577;&#26159;&#20160;&#20040;&#65311;</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 &#20013;&#30340;&#40664;&#35748;&#36865;&#23457;&#31572;&#22797;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#40664;&#35748;&#36865;&#23457;&#31572;&#22797;&#26377;&#21738;&#20123;&#65311;</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 &#20013;&#30340;&#40664;&#35748;&#36865;&#23457;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#40664;&#35748;&#36865;&#23457;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;</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="&#26087;&#29256;&#24037;&#20316;&#27969;&#21644;&#33258;&#21161;&#24335;&#24037;&#20316;&#27969;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#26087;&#29256;&#24037;&#20316;&#27969;&#21644;&#33258;&#21161;&#24335;&#24037;&#20316;&#27969;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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 &#30340;&#24037;&#26102;&#27169;&#22359;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#24037;&#26102;&#27169;&#22359;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#39033;&#30446;&#36130;&#21153;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#23618;&#35774;&#32622;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#36130;&#21153;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#23618;&#35774;&#32622;&#65311;</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="&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#23383;&#27573;&#65311;"><span class="mt-icon-article-none"></span>&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#23383;&#27573;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#22242;&#38431;&#25104;&#21592;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#26435;&#38480;&#32423;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#22242;&#38431;&#25104;&#21592;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#26435;&#38480;&#32423;&#21035;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-rfq-statuses" title="&#26377;&#21738;&#20123;&#19981;&#21516;&#30340; RFQ &#29366;&#24577;&#20197;&#21450;&#23427;&#20204;&#22914;&#20309;&#24433;&#21709;&#25104;&#26412;&#21644;&#21464;&#26356;&#36890;&#30693;&#21333;&#37329;&#39069;&#65311;"><span class="mt-icon-article-none"></span>&#26377;&#21738;&#20123;&#19981;&#21516;&#30340; RFQ &#29366;&#24577;&#20197;&#21450;&#23427;&#20204;&#22914;&#20309;&#24433;&#21709;&#25104;&#26412;&#21644;&#21464;&#26356;&#36890;&#30693;&#21333;&#37329;&#39069;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-roles-associated-with-workflows" title="&#19982;&#24037;&#20316;&#27969;&#20851;&#32852;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#19982;&#24037;&#20316;&#27969;&#20851;&#32852;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#35282;&#33394;&#65311;</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 &#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#31867;&#22411;&#30340;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#31867;&#22411;&#30340;&#21457;&#31080;&#65311;</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="&#24037;&#20316;&#27969;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#31867;&#22411;&#30340;&#27493;&#39588;&#65311;"><span class="mt-icon-article-none"></span>&#24037;&#20316;&#27969;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#31867;&#22411;&#30340;&#27493;&#39588;&#65311;</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 &#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&ldquo;&#29992;&#25143;&#35282;&#33394;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>Procore Estimating &#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&ldquo;&#29992;&#25143;&#35282;&#33394;&rdquo;&#65311;</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="&#20160;&#20040;&#26159; DocuSign&reg; &#23383;&#27573;&#65292;&#25105;&#21487;&#20197;&#33258;&#23450;&#20041;&#23427;&#20204;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; DocuSign&reg; &#23383;&#27573;&#65292;&#25105;&#21487;&#20197;&#33258;&#23450;&#20041;&#23427;&#20204;&#21527;&#65311;</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 &#24230;&#25253;&#21578;&#20013;&#26377;&#21738;&#20123;&#36130;&#21153;&#26126;&#32454;&#39033;&#65311;"><span class="mt-icon-article-none"></span>360 &#24230;&#25253;&#21578;&#20013;&#26377;&#21738;&#20123;&#36130;&#21153;&#26126;&#32454;&#39033;&#65311;</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="&#20174; CSV &#23548;&#20837; SOV &#34892;&#39033;&#30446;&#26377;&#21738;&#20123;&#35201;&#27714;&#65311;"><span class="mt-icon-article-none"></span>&#20174; CSV &#23548;&#20837; SOV &#34892;&#39033;&#30446;&#26377;&#21738;&#20123;&#35201;&#27714;&#65311;</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="&#20160;&#20040;&#26159;&#39033;&#30446;&#38598;&#21512;&#24037;&#20855;&#30340;&#20581;&#24247;&#20202;&#34920;&#26495;&#30340;&#38408;&#20540;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#39033;&#30446;&#38598;&#21512;&#24037;&#20855;&#30340;&#20581;&#24247;&#20202;&#34920;&#26495;&#30340;&#38408;&#20540;&#65311;</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="&#32771;&#21220;&#34920;&#24037;&#20855;&#26102;&#38388;&#26465;&#30446;&#30340;&#40664;&#35748;&#29366;&#24577;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#32771;&#21220;&#34920;&#24037;&#20855;&#26102;&#38388;&#26465;&#30446;&#30340;&#40664;&#35748;&#29366;&#24577;&#26159;&#20160;&#20040;&#65311;</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="&#36865;&#23457;&#24037;&#20855;&#20013;&#30340;&#29992;&#25143;&#35282;&#33394;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#36865;&#23457;&#24037;&#20855;&#20013;&#30340;&#29992;&#25143;&#35282;&#33394;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-touch-commands" title="&#20160;&#20040;&#26159;&#35302;&#25511;&#25351;&#20196;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#35302;&#25511;&#25351;&#20196;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-uncategorized-invoices-in-portfolio-financials" title="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#26410;&#20998;&#31867;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#26410;&#20998;&#31867;&#21457;&#31080;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-changes-when-companies-upgrade-to-paid-accounts" title="&#20844;&#21496;&#21319;&#32423;&#21040;&#20184;&#36153;&#36134;&#25143;&#20250;&#21457;&#29983;&#20160;&#20040;&#21464;&#21270;&#65311;"><span class="mt-icon-article-none"></span>&#20844;&#21496;&#21319;&#32423;&#21040;&#20184;&#36153;&#36134;&#25143;&#20250;&#21457;&#29983;&#20160;&#20040;&#21464;&#21270;&#65311;</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="&#25105;&#20204;&#24212;&#35813;&#20026;&#20844;&#21496;&#30340;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#21019;&#24314;&#21738;&#20123;&#33258;&#23450;&#20041;&#32454;&#20998;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#20204;&#24212;&#35813;&#20026;&#20844;&#21496;&#30340;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#21019;&#24314;&#21738;&#20123;&#33258;&#23450;&#20041;&#32454;&#20998;&#65311;</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="&#23558;&#25991;&#20214;&#19978;&#20256;&#21040;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#26102;&#65292;Procore &#21487;&#20197;&#33258;&#21160;&#22635;&#20805;&#20160;&#20040;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>&#23558;&#25991;&#20214;&#19978;&#20256;&#21040;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#26102;&#65292;Procore &#21487;&#20197;&#33258;&#21160;&#22635;&#20805;&#20160;&#20040;&#25968;&#25454;&#65311;</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 &#21644; Sage 100 Contractor &#20043;&#38388;&#21516;&#27493;&#21738;&#20123;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>Procore &#21644; Sage 100 Contractor &#20043;&#38388;&#21516;&#27493;&#21738;&#20123;&#25968;&#25454;&#65311;</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&reg; &#21644; Procore &#20043;&#38388;&#21516;&#27493;&#20102;&#21738;&#20123;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>Sage 300 CRE&reg; &#21644; Procore &#20043;&#38388;&#21516;&#27493;&#20102;&#21738;&#20123;&#25968;&#25454;&#65311;</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="&#21738;&#20123;&#25968;&#25454;&#19982; Ryvit &#38598;&#25104;&#36830;&#25509;&#22120;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#25968;&#25454;&#19982; Ryvit &#38598;&#25104;&#36830;&#25509;&#22120;&#21516;&#27493;&#65311;</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="&#25237;&#26631;&#20154;&#22312;&#25237;&#26631;&#23460;&#30475;&#21040;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#25237;&#26631;&#20154;&#22312;&#25237;&#26631;&#23460;&#30475;&#21040;&#20160;&#20040;&#65311;</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="&ldquo;&#36865;&#23457;&#26085;&#24535;&rdquo;&#20013;&#30340;&#27599;&#19968;&#21015;&#20195;&#34920;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&ldquo;&#36865;&#23457;&#26085;&#24535;&rdquo;&#20013;&#30340;&#27599;&#19968;&#21015;&#20195;&#34920;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-does-each-permission-level-mean" title="&#27599;&#20010;&#26435;&#38480;&#32423;&#21035;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#27599;&#20010;&#26435;&#38480;&#32423;&#21035;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;</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="&ldquo;&#38544;&#34255;&#25237;&#26631;&#20449;&#24687;&rdquo;&#23545;&#25237;&#26631;&#23460;&#22242;&#38431;&#20013;&#30340;&#26576;&#20154;&#24847;&#21619;&#30528;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&ldquo;&#38544;&#34255;&#25237;&#26631;&#20449;&#24687;&rdquo;&#23545;&#25237;&#26631;&#23460;&#22242;&#38431;&#20013;&#30340;&#26576;&#20154;&#24847;&#21619;&#30528;&#20160;&#20040;&#65311;</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="&#24403;&#25105;&#30340; DocuSign &#36134;&#25143;&#19982;&#25105;&#30340; Procore &#36134;&#25143;&ldquo;&#21516;&#27493;&rdquo;&#26102;&#65292;&#36825;&#24847;&#21619;&#30528;&#20160;&#20040;&#65311;&#25105;&#35813;&#22914;&#20309;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#25105;&#30340; DocuSign &#36134;&#25143;&#19982;&#25105;&#30340; Procore &#36134;&#25143;&ldquo;&#21516;&#27493;&rdquo;&#26102;&#65292;&#36825;&#24847;&#21619;&#30528;&#20160;&#20040;&#65311;&#25105;&#35813;&#22914;&#20309;&#21516;&#27493;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-does-the-search-box-search-for" title="&#29031;&#29255;&#24037;&#20855;&#20013;&#30340;&ldquo;&#25628;&#32034;&rdquo;&#26694;&#20250;&#25628;&#32034;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#29031;&#29255;&#24037;&#20855;&#20013;&#30340;&ldquo;&#25628;&#32034;&rdquo;&#26694;&#20250;&#25628;&#32034;&#20160;&#20040;&#65311;</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="&#24403;&#21512;&#32422;&#26410;&#33021;&#20174; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#23548;&#20986;&#26102;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#21512;&#32422;&#26410;&#33021;&#20174; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#23548;&#20986;&#26102;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;</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="&#20851;&#20110; Procore Analytics 1.0 &#30340;&#24323;&#29992;&#65292;&#25105;&#38656;&#35201;&#20102;&#35299;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20851;&#20110; Procore Analytics 1.0 &#30340;&#24323;&#29992;&#65292;&#25105;&#38656;&#35201;&#20102;&#35299;&#20160;&#20040;&#65311;</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="&#20851;&#20110;&#36164;&#28304;&#35268;&#21010;&#30340;&#36523;&#20221;&#39564;&#35777;&#26356;&#26032;&#65292;&#25105;&#38656;&#35201;&#20102;&#35299;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20851;&#20110;&#36164;&#28304;&#35268;&#21010;&#30340;&#36523;&#20221;&#39564;&#35777;&#26356;&#26032;&#65292;&#25105;&#38656;&#35201;&#20102;&#35299;&#20160;&#20040;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&ldquo;&#39033;&#30446;&#27604;&#36739;&rdquo;&#26631;&#31614;&#39029;&#20013;&#30340;&#31661;&#22836;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&ldquo;&#39033;&#30446;&#27604;&#36739;&rdquo;&#26631;&#31614;&#39029;&#20013;&#30340;&#31661;&#22836;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;</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="&#39033;&#30446;&#31649;&#29702;&#21592;&#24037;&#20855;&#20013;&#30340;&#26085;&#26399;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#31649;&#29702;&#21592;&#24037;&#20855;&#20013;&#30340;&#26085;&#26399;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;</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 &#20013;&#19981;&#21516;&#30340; DocuSign&reg; &#27178;&#24133;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#19981;&#21516;&#30340; DocuSign&reg; &#27178;&#24133;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;</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 &#21453;&#39304;&#35770;&#22363;&#19978;&#30340;&#19981;&#21516;&#29366;&#24577;&#24847;&#21619;&#30528;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#21453;&#39304;&#35770;&#22363;&#19978;&#30340;&#19981;&#21516;&#29366;&#24577;&#24847;&#21619;&#30528;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-erp-icons-mean" title="ERP &#22270;&#26631;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>ERP &#22270;&#26631;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;</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="&#22270;&#32440;&#19978;&#30340;&#23614;&#39033;&#39033;&#30446;&#39068;&#33394;&#20195;&#30721;&#26377;&#20160;&#20040;&#21547;&#20041;&#65311;"><span class="mt-icon-article-none"></span>&#22270;&#32440;&#19978;&#30340;&#23614;&#39033;&#39033;&#30446;&#39068;&#33394;&#20195;&#30721;&#26377;&#20160;&#20040;&#21547;&#20041;&#65311;</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="&#22312;&#20801;&#35768;&#19979;&#28216;&#21327;&#20316;&#32773;&#22312; Procore &#20013;&#25552;&#20132;&#21457;&#31080;&#20043;&#21069;&#65292;&#25105;&#20204;&#38656;&#35201;&#32771;&#34385;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#20801;&#35768;&#19979;&#28216;&#21327;&#20316;&#32773;&#22312; Procore &#20013;&#25552;&#20132;&#21457;&#31080;&#20043;&#21069;&#65292;&#25105;&#20204;&#38656;&#35201;&#32771;&#34385;&#20160;&#20040;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#23457;&#25209;&#24037;&#20316;&#27969;&#20250;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#23457;&#25209;&#24037;&#20316;&#27969;&#20250;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;</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="&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#30340;&#25237;&#26631;&#36807;&#31243;&#20013;&#20250;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#30340;&#25237;&#26631;&#36807;&#31243;&#20013;&#20250;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#65311;</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 &#20351;&#29992;&#20160;&#20040;&#21152;&#23494;&#26631;&#20934;&#26469;&#20445;&#25252;&#29992;&#25143;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20351;&#29992;&#20160;&#20040;&#21152;&#23494;&#26631;&#20934;&#26469;&#20445;&#25252;&#29992;&#25143;&#25968;&#25454;&#65311;</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="&#20272;&#31639;&#20013;&#26377;&#21738;&#20123;&#23383;&#27573;&#20197;&#21450;&#23427;&#20204;&#26159;&#22914;&#20309;&#35745;&#31639;&#30340;&#65311;"><span class="mt-icon-article-none"></span>&#20272;&#31639;&#20013;&#26377;&#21738;&#20123;&#23383;&#27573;&#20197;&#21450;&#23427;&#20204;&#26159;&#22914;&#20309;&#35745;&#31639;&#30340;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-fields-are-searched-in-the-directory-tool" title="&#22312;&#30446;&#24405;&#24037;&#20855;&#20013;&#21487;&#25628;&#32034;&#21040;&#21738;&#20123;&#23383;&#27573;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#30446;&#24405;&#24037;&#20855;&#20013;&#21487;&#25628;&#32034;&#21040;&#21738;&#20123;&#23383;&#27573;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-fieldset-configurations-are-recommended-for-configurable-fieldsets" title="&#23545;&#20110;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#25512;&#33616;&#20351;&#29992;&#21738;&#20123;&#37197;&#32622;&#65311;"><span class="mt-icon-article-none"></span>&#23545;&#20110;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#25512;&#33616;&#20351;&#29992;&#21738;&#20123;&#37197;&#32622;&#65311;</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 &#24037;&#20855;&#20013;&#30340;&#33258;&#23450;&#20041;&#23383;&#27573;&#26377;&#21738;&#20123;&#23383;&#27573;&#31867;&#22411;&#21487;&#29992;&#65311;"><span class="mt-icon-article-none"></span>Procore &#24037;&#20855;&#20013;&#30340;&#33258;&#23450;&#20041;&#23383;&#27573;&#26377;&#21738;&#20123;&#23383;&#27573;&#31867;&#22411;&#21487;&#29992;&#65311;</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="&#32479;&#19968;&#38468;&#20214;&#26597;&#30475;&#22120;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#31867;&#22411;&#21644;&#26684;&#24335;&#65311;"><span class="mt-icon-article-none"></span>&#32479;&#19968;&#38468;&#20214;&#26597;&#30475;&#22120;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#31867;&#22411;&#21644;&#26684;&#24335;&#65311;</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="&#25991;&#26723;&#24037;&#20855;&#20013;&#30340; 3D &#27169;&#22411;&#26597;&#30475;&#22120;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#25991;&#26723;&#24037;&#20855;&#20013;&#30340; 3D &#27169;&#22411;&#26597;&#30475;&#22120;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#31867;&#22411;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-file-types-does-the-forms-tool-support" title="&#34920;&#21333;&#24037;&#20855;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#34920;&#21333;&#24037;&#20855;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#31867;&#22411;&#65311;</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="&#23558;&#21738;&#20123;&#20869;&#23481;&#20174;&#39033;&#30446;&#27169;&#26495;&#22797;&#21046;&#21040;&#26032;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#23558;&#21738;&#20123;&#20869;&#23481;&#20174;&#39033;&#30446;&#27169;&#26495;&#22797;&#21046;&#21040;&#26032;&#39033;&#30446;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-commitments-workflows" title="&#21512;&#32422;&#24037;&#20316;&#27969;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&#24037;&#20316;&#27969;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#25991;&#26723;&#31649;&#29702;&#24037;&#20316;&#27969;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#25991;&#26723;&#31649;&#29702;&#24037;&#20316;&#27969;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#20844;&#21496;&#32423;&#21035;&#30446;&#24405;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#20844;&#21496;&#32423;&#21035;&#30446;&#24405;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#20844;&#21496;&#25237;&#26631;&#26495;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#20844;&#21496;&#25237;&#26631;&#26495;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#20844;&#21496;&#30340;&#36164;&#28304;&#35268;&#21010;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#20844;&#21496;&#30340;&#36164;&#28304;&#35268;&#21010;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#32423;&#21035;&#31649;&#29702;&#21592;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#32423;&#21035;&#31649;&#29702;&#21592;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#32423;&#21035;&#30446;&#24405;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#32423;&#21035;&#30446;&#24405;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#32423;&#21035;&#25991;&#26723;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#32423;&#21035;&#25991;&#26723;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#32423;&#21035;&#26816;&#26597;&#20219;&#21153;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#32423;&#21035;&#26816;&#26597;&#20219;&#21153;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#32423;&#21035;&#36827;&#24230;&#35745;&#21010;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#32423;&#21035;&#36827;&#24230;&#35745;&#21010;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#32423;&#21035;&#32771;&#21220;&#34920;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#32423;&#21035;&#32771;&#21220;&#34920;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#34892;&#21160;&#35745;&#21010;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#34892;&#21160;&#35745;&#21010;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#25237;&#26631;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#25237;&#26631;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#39044;&#31639;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#39044;&#31639;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#23458;&#25143;&#21512;&#21516;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#23458;&#25143;&#21512;&#21516;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#21512;&#32422;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#21512;&#32422;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#36890;&#20449;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#36890;&#20449;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#24037;&#20316;&#26085;&#24535;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#24037;&#20316;&#26085;&#24535;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#30452;&#25509;&#25104;&#26412;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#30452;&#25509;&#25104;&#26412;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#22270;&#32440;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#22270;&#32440;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#36164;&#37329;&#24037;&#20855;&#26377;&#21738;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#36164;&#37329;&#24037;&#20855;&#26377;&#21738;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#20250;&#35758;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#20250;&#35758;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#35266;&#23519;&#20219;&#21153;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#35266;&#23519;&#20219;&#21153;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#29031;&#29255;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#29031;&#29255;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#20027;&#21512;&#21516;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#20027;&#21512;&#21516;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#23614;&#39033;&#28165;&#21333;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#23614;&#39033;&#28165;&#21333;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340; RFI &#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340; RFI &#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#36865;&#23457;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#36865;&#23457;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#20256;&#36755;&#35760;&#24405;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#20256;&#36755;&#35760;&#24405;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;</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="&#21551;&#29992;&ldquo;&#21160;&#24577;&#35745;&#31639;&#23457;&#25209;&#32773;&#25130;&#27490;&#26085;&#26399;&rdquo;&#21518;&#65292;&#29616;&#26377;&#36865;&#23457;&#26377;&#20160;&#20040;&#21464;&#21270;&#65311;"><span class="mt-icon-article-none"></span>&#21551;&#29992;&ldquo;&#21160;&#24577;&#35745;&#31639;&#23457;&#25209;&#32773;&#25130;&#27490;&#26085;&#26399;&rdquo;&#21518;&#65292;&#29616;&#26377;&#36865;&#23457;&#26377;&#20160;&#20040;&#21464;&#21270;&#65311;</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="&#20174; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#20013;&#23558;&#20844;&#21496;&#21644;&#29992;&#25143;&#28155;&#21152;&#21040;&#20844;&#21496;&#30446;&#24405;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20174; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#20013;&#23558;&#20844;&#21496;&#21644;&#29992;&#25143;&#28155;&#21152;&#21040;&#20844;&#21496;&#30446;&#24405;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;</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="&#24403;&#25105;&#23558;&#25991;&#26723;&#31649;&#29702;&#25991;&#20214;&#23548;&#20837;&#22270;&#32440;&#24037;&#20855;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#25105;&#23558;&#25991;&#26723;&#31649;&#29702;&#25991;&#20214;&#23548;&#20837;&#22270;&#32440;&#24037;&#20855;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;</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="&#24403;&#25105;&#19982;&#20854;&#20182; Procore &#29992;&#25143;&#20849;&#20139;&#25253;&#21578;&#26102;&#20250;&#24590;&#26679;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#25105;&#19982;&#20854;&#20182; Procore &#29992;&#25143;&#20849;&#20139;&#25253;&#21578;&#26102;&#20250;&#24590;&#26679;&#65311;</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="&#23558;&#39033;&#30446;&#26356;&#26032;&#21040;&#26032;&#29256;&#25237;&#26631; &#31649;&#29702;&#20307;&#39564;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#23558;&#39033;&#30446;&#26356;&#26032;&#21040;&#26032;&#29256;&#25237;&#26631; &#31649;&#29702;&#20307;&#39564;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;</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="&#24403;&quot;&#38480;&#21046;&#23545;&#21512;&#21516;&#21644;&#21464;&#26356;&#36890;&#30693;&#21333;&#30340;&#38750;&#33609;&#31295;&#32534;&#36753;&quot;&#21644;&quot;&#21551;&#29992;&#22987;&#32456;&#21487;&#32534;&#36753;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&quot;&#21516;&#26102;&#21551;&#29992;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&quot;&#38480;&#21046;&#23545;&#21512;&#21516;&#21644;&#21464;&#26356;&#36890;&#30693;&#21333;&#30340;&#38750;&#33609;&#31295;&#32534;&#36753;&quot;&#21644;&quot;&#21551;&#29992;&#22987;&#32456;&#21487;&#32534;&#36753;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&quot;&#21516;&#26102;&#21551;&#29992;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;</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="&#22914;&#26524;&#35268;&#33539;&#20998;&#39033;&#25110;&#20998;&#37096;&#20174;&#39029;&#38754;&#20013;&#38388;&#24320;&#22987;&#24590;&#20040;&#21150;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#35268;&#33539;&#20998;&#39033;&#25110;&#20998;&#37096;&#20174;&#39029;&#38754;&#20013;&#38388;&#24320;&#22987;&#24590;&#20040;&#21150;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-information-is-searchable-using-procore-search" title="&#21487;&#20197;&#20351;&#29992; Procore Search &#25628;&#32034;&#21040;&#21738;&#20123;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#20351;&#29992; Procore Search &#25628;&#32034;&#21040;&#21738;&#20123;&#20449;&#24687;&#65311;</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 &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#26159;&#20160;&#20040;&#65311;</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 &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#32467;&#26500;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#32467;&#26500;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-change-event" title="&#20160;&#20040;&#26159;&#21464;&#26356;&#20107;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21464;&#26356;&#20107;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-change-order" title="&#20160;&#20040;&#26159;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;</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="&#20160;&#20040;&#26159;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#30340;&#38598;&#21512;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#30340;&#38598;&#21512;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-company-admin" title="&#20160;&#20040;&#26159;&#20844;&#21496;&#31649;&#29702;&#21592;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20844;&#21496;&#31649;&#29702;&#21592;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-completed-action-plan-receiver" title="&#20160;&#20040;&#26159;&ldquo;&#24050;&#23436;&#25104;&#34892;&#21160;&#35745;&#21010;&#30340;&#25509;&#25910;&#32773;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&ldquo;&#24050;&#23436;&#25104;&#34892;&#21160;&#35745;&#21010;&#30340;&#25509;&#25910;&#32773;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-construction-projects-schedule" title="&#20160;&#20040;&#26159;&#24314;&#35774;&#24037;&#31243;&#39033;&#30446;&#30340;&#36827;&#24230;&#35745;&#21010;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#24314;&#35774;&#24037;&#31243;&#39033;&#30446;&#30340;&#36827;&#24230;&#35745;&#21010;&#65311;</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 &#20013;&#30340;&ldquo;&#32852;&#31995;&#20154;&rdquo;&#26159;&#20160;&#20040;&#65311;&#21738;&#20123;&#39033;&#30446;&#24037;&#20855;&#25903;&#25345;&#27492;&#27010;&#24565;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&ldquo;&#32852;&#31995;&#20154;&rdquo;&#26159;&#20160;&#20040;&#65311;&#21738;&#20123;&#39033;&#30446;&#24037;&#20855;&#25903;&#25345;&#27492;&#27010;&#24565;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-daily-log" title="&#20160;&#20040;&#26159;&#24037;&#20316;&#26085;&#24535;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#24037;&#20316;&#26085;&#24535;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-downstream-collaborator" title="&#20160;&#20040;&#26159;&#19979;&#28216;&#21327;&#20316;&#32773;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#19979;&#28216;&#21327;&#20316;&#32773;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-draft-rfi" title="&#20160;&#20040;&#26159; RFI&ldquo;&#33609;&#31295;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; RFI&ldquo;&#33609;&#31295;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-draft-submittal" title="&#20160;&#20040;&#26159;&#36865;&#23457;&ldquo;&#33609;&#31295;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#36865;&#23457;&ldquo;&#33609;&#31295;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-drawing-set" title="&#20160;&#20040;&#26159;&#22270;&#32440;&#38598;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#22270;&#32440;&#38598;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-fillable-pdf" title="&#20160;&#20040;&#26159;&#21487;&#22635;&#20889; PDF&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21487;&#22635;&#20889; PDF&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-action-plan-approver" title="&#20160;&#20040;&#26159;&ldquo;&#34892;&#21160;&#35745;&#21010;&#23457;&#25209;&#32773;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&ldquo;&#34892;&#21160;&#35745;&#21010;&#23457;&#25209;&#32773;&rdquo;&#65311;</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 &#20013;&#39640;&#32423;&#25628;&#32034;&#31526;&#21495;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#39640;&#32423;&#25628;&#32034;&#31526;&#21495;&#26159;&#20160;&#20040;&#65311;</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="&#20160;&#20040;&#26159;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#30340;&#21629;&#21517;&#26631;&#20934;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#30340;&#21629;&#21517;&#26631;&#20934;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-assignable-permissions-template" title="&#20160;&#20040;&#26159;&#21487;&#20998;&#37197;&#26435;&#38480;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21487;&#20998;&#37197;&#26435;&#38480;&#27169;&#26495;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-assignment-alert-in-resource-planning" title="&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;&#20013;&#30340;&#20998;&#37197;&#35686;&#25253;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;&#20013;&#30340;&#20998;&#37197;&#35686;&#25253;&#65311;</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="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#39033;&#30446;&#27604;&#36739;&#30340;&#31034;&#20363;&#29992;&#20363;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#39033;&#30446;&#27604;&#36739;&#30340;&#31034;&#20363;&#29992;&#20363;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-incident" title="&#20160;&#20040;&#26159;&#20107;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20107;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-invoice-administrator" title="&#20160;&#20040;&#26159;&#21457;&#31080; &#31649;&#29702;&#21592;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21457;&#31080; &#31649;&#29702;&#21592;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-invoice-contact" title="&#20160;&#20040;&#26159;&#21457;&#31080;&#32852;&#31995;&#20154;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21457;&#31080;&#32852;&#31995;&#20154;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-rfi" title="&#20160;&#20040;&#26159; RFI&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; RFI&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-upstream-collaborator" title="&#20160;&#20040;&#26159;&#19978;&#28216;&#21327;&#20316;&#32773;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#19978;&#28216;&#21327;&#20316;&#32773;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-partial-budget-line-item" title="&#20160;&#20040;&#26159;&#37096;&#20998;&#39044;&#31639;&#26126;&#32454;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#37096;&#20998;&#39044;&#31639;&#26126;&#32454;&#39033;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-permissions-template" title="&#20160;&#20040;&#26159;&#26435;&#38480;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#26435;&#38480;&#27169;&#26495;&#65311;</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="&#20160;&#20040;&#26159;&#34892;&#21160;&#35745;&#21010;&#20013;&#30340;&ldquo;&#35745;&#21010;&#32463;&#29702;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#34892;&#21160;&#35745;&#21010;&#20013;&#30340;&ldquo;&#35745;&#21010;&#32463;&#29702;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-app-management" title="&#20160;&#20040;&#26159;&#24212;&#29992;&#31243;&#24207;&#31649;&#29702;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#24212;&#29992;&#31243;&#24207;&#31649;&#29702;&#65311;</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="&#20160;&#20040;&#26159;&ldquo;&#31169;&#23494;&rdquo;&#32771;&#21220;&#21345;&#20197;&#21450;&#21738;&#20123;&#32771;&#21220;&#21345;&#21487;&#20197;&#35774;&#32622;&#20026;&#31169;&#23494;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&ldquo;&#31169;&#23494;&rdquo;&#32771;&#21220;&#21345;&#20197;&#21450;&#21738;&#20123;&#32771;&#21220;&#21345;&#21487;&#20197;&#35774;&#32622;&#20026;&#31169;&#23494;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-project-administrator" title="&#20160;&#20040;&#26159;&#39033;&#30446;&#31649;&#29702;&#21592;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#39033;&#30446;&#31649;&#29702;&#21592;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-project-template" title="&#20160;&#20040;&#26159;&#39033;&#30446;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#39033;&#30446;&#27169;&#26495;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-punch-list" title="&#20160;&#20040;&#26159;&#23614;&#39033;&#28165;&#21333;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#23614;&#39033;&#28165;&#21333;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-resource-allocation-type" title="&#20160;&#20040;&#26159;&#36164;&#28304;&#20998;&#37197;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#36164;&#28304;&#20998;&#37197;&#31867;&#22411;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-sensitive-field-in-resource-planning" title="&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;&#20013;&#30340;&quot;&#25935;&#24863;&#23383;&#27573;&quot;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;&#20013;&#30340;&quot;&#25935;&#24863;&#23383;&#27573;&quot;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-service-account" title="&#20160;&#20040;&#26159;&#26381;&#21153;&#36134;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#26381;&#21153;&#36134;&#25143;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-site-instruction" title="&#20160;&#20040;&#26159;&ldquo;&#25351;&#31034;&rdquo;&#25110;&ldquo;&#29616;&#22330;&#25351;&#31034;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&ldquo;&#25351;&#31034;&rdquo;&#25110;&ldquo;&#29616;&#22330;&#25351;&#31034;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-specification-set" title="&#20160;&#20040;&#26159;&#35268;&#33539;&#38598;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#35268;&#33539;&#38598;&#65311;</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="&#20160;&#20040;&#26159; Asta Powerproject &#20197;&#21450;&#23427;&#22914;&#20309;&#19982; Procore &#38598;&#25104;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Asta Powerproject &#20197;&#21450;&#23427;&#22914;&#20309;&#19982; Procore &#38598;&#25104;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-subcontractor-schedule-of-values" title="&#20160;&#20040;&#26159;&#20998;&#21253;&#21830;&#20998;&#39033;&#20215;&#26684;&#34920;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20998;&#21253;&#21830;&#20998;&#39033;&#20215;&#26684;&#34920;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-submittal" title="&#20160;&#20040;&#26159;&#36865;&#23457;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#36865;&#23457;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-submittal-package" title="&#20160;&#20040;&#26159;&#36865;&#23457;&#27719;&#24635;&#21253;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#36865;&#23457;&#27719;&#24635;&#21253;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-submittal-revision" title="&#20160;&#20040;&#26159;&#36865;&#23457;&#20462;&#35746;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#36865;&#23457;&#20462;&#35746;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-test-project" title="&#20160;&#20040;&#26159;&#27979;&#35797;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#27979;&#35797;&#39033;&#30446;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-tm-ticket" title="&#20160;&#20040;&#26159;&#24037;&#26102;&#21644;&#26448;&#26009;&#21333;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#24037;&#26102;&#21644;&#26448;&#26009;&#21333;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-training-center" title="&#20160;&#20040;&#26159;&#22521;&#35757;&#20013;&#24515;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#22521;&#35757;&#20013;&#24515;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-transmittal-in-procore" title="&#20160;&#20040;&#26159; Procore &#20013;&#30340;&#20256;&#36755;&#35760;&#24405;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#20013;&#30340;&#20256;&#36755;&#35760;&#24405;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-blind-bidding" title="&#20160;&#20040;&#26159;&#25237;&#30450;&#26631;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#25237;&#30450;&#26631;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-blocking-functionality-in-an-action-plan" title="&#20160;&#20040;&#26159;&#34892;&#21160;&#35745;&#21010;&#20013;&#30340;&ldquo;&#38145;&#23450;&#21151;&#33021;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#34892;&#21160;&#35745;&#21010;&#20013;&#30340;&ldquo;&#38145;&#23450;&#21151;&#33021;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-bluebeam-studio" title="&#20160;&#20040;&#26159; Bluebeam Studio&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Bluebeam Studio&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-capital-planning" title="&#20160;&#20040;&#26159; Capital Planning &#36164;&#37329;&#35268;&#21010;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Capital Planning &#36164;&#37329;&#35268;&#21010;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-conditional-logic-within-the-inspections-tool" title="&#20160;&#20040;&#26159;&#26816;&#26597;&#20219;&#21153;&#24037;&#20855;&#20013;&#30340;&#26465;&#20214;&#36923;&#36753;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#26816;&#26597;&#20219;&#21153;&#24037;&#20855;&#20013;&#30340;&#26465;&#20214;&#36923;&#36753;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-data-syncing-for-resource-planning" title="&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;&#30340;&#25968;&#25454;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;&#30340;&#25968;&#25454;&#21516;&#27493;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-developer-managed-service-account" title="&#20160;&#20040;&#26159;&#24320;&#21457;&#20154;&#21592;&#31649;&#29702;&#26381;&#21153;&#36134;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#24320;&#21457;&#20154;&#21592;&#31649;&#29702;&#26381;&#21153;&#36134;&#25143;&#65311;</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 &#21457;&#36865;&#30340;&#30005;&#23376;&#37038;&#20214;&#20013;&#26377;&#20160;&#20040;&#20869;&#23481;&#65311;"><span class="mt-icon-article-none"></span>Procore &#21457;&#36865;&#30340;&#30005;&#23376;&#37038;&#20214;&#20013;&#26377;&#20160;&#20040;&#20869;&#23481;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-maintenance" title="&#20160;&#20040;&#26159;&#32500;&#25252;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32500;&#25252;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-phishing" title="&#20160;&#20040;&#26159;&#32593;&#32476;&#38035;&#40060;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32593;&#32476;&#38035;&#40060;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-portfolio-financials" title="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#65311;</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="&#20160;&#20040;&#26159; Primavera P6 &#21450;&#20854;&#22914;&#20309;&#19982; Procore &#38598;&#25104;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Primavera P6 &#21450;&#20854;&#22914;&#20309;&#19982; Procore &#38598;&#25104;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procore-bim" title="&#20160;&#20040;&#26159; Procore BIM&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore BIM&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procore-community" title="&#20160;&#20040;&#26159; Procore &#31038;&#21306;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#31038;&#21306;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-availability" title="&#20160;&#20040;&#26159; Procore &#30340;&#21487;&#29992;&#24615;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#30340;&#21487;&#29992;&#24615;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-data-backup-strategy" title="Procore &#30340;&#25968;&#25454;&#22791;&#20221;&#31574;&#30053;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#25968;&#25454;&#22791;&#20221;&#31574;&#30053;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-unavailibility" title="&#20160;&#20040;&#26159; Procore &#30340;&#19981;&#21487;&#29992;&#24615;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#30340;&#19981;&#21487;&#29992;&#24615;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-project-cost-reporting-in-portfolio-financials" title="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#25104;&#26412;&#25253;&#21578;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#25104;&#26412;&#25253;&#21578;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-single-sign-on-sso" title="&#20160;&#20040;&#26159;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-sliding-scale-retention" title="&#20160;&#20040;&#26159;&#28014;&#21160;&#20445;&#30041;&#37329;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#28014;&#21160;&#20445;&#30041;&#37329;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;</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="&#25237;&#26631;&#23460;&#25237;&#26631;&#34920;&#21333;&#19978;&#30340;&ldquo;&#35843;&#25972;&rdquo;&#37096;&#20998;&#21253;&#25324;&#21738;&#20123;&#20869;&#23481;&#65311;"><span class="mt-icon-article-none"></span>&#25237;&#26631;&#23460;&#25237;&#26631;&#34920;&#21333;&#19978;&#30340;&ldquo;&#35843;&#25972;&rdquo;&#37096;&#20998;&#21253;&#25324;&#21738;&#20123;&#20869;&#23481;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-bid-room-in-portfolio-financials" title="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#26159;&#20160;&#20040;&#65311;</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 &#39044;&#31639;&#24037;&#20855;&#20013;&#30340;&ldquo;&#39044;&#31639; ROM&rdquo;&#21015;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#39044;&#31639;&#24037;&#20855;&#20013;&#30340;&ldquo;&#39044;&#31639; ROM&rdquo;&#21015;&#26159;&#20160;&#20040;&#65311;</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="&#39033;&#30446;&#21019;&#24314;&#39029;&#38754;&#19978;&#30340;&ldquo;Code&rdquo;&#23383;&#27573;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#21019;&#24314;&#39029;&#38754;&#19978;&#30340;&ldquo;Code&rdquo;&#23383;&#27573;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-construction-bidding-process" title="&#20160;&#20040;&#26159;&#24314;&#35774;&#24037;&#31243;&#25237;&#26631;&#27969;&#31243;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#24314;&#35774;&#24037;&#31243;&#25237;&#26631;&#27969;&#31243;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-contract-room-in-portfolio-financials" title="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23460;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23460;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-correspondence-tool" title="&#20160;&#20040;&#26159;&#36890;&#20449;&#24037;&#20855;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#36890;&#20449;&#24037;&#20855;&#65311;</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="&#25105;&#30340;&#23614;&#39033;&#28165;&#21333;&#20013;&#30340;&ldquo;&#36890;&#30693;&#26085;&#26399;&rdquo;&#23383;&#27573;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#30340;&#23614;&#39033;&#28165;&#21333;&#20013;&#30340;&ldquo;&#36890;&#30693;&#26085;&#26399;&rdquo;&#23383;&#27573;&#26159;&#20160;&#20040;&#65311;</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="&#22312;&#26576;&#20123;&#27983;&#35272;&#22120;&#19978;&#25773;&#25918;&#35748;&#35777;&#35270;&#39057;&#30340;&#40664;&#35748;&#34892;&#20026;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#26576;&#20123;&#27983;&#35272;&#22120;&#19978;&#25773;&#25918;&#35748;&#35777;&#35270;&#39057;&#30340;&#40664;&#35748;&#34892;&#20026;&#26159;&#20160;&#20040;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#37324;&#31243;&#30865;&#30340;&ldquo;&#22522;&#20934;&rdquo;&#21644;&ldquo;&#39044;&#27979;&#25110;&#23454;&#38469;&rdquo;&#26085;&#26399;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#37324;&#31243;&#30865;&#30340;&ldquo;&#22522;&#20934;&rdquo;&#21644;&ldquo;&#39044;&#27979;&#25110;&#23454;&#38469;&rdquo;&#26085;&#26399;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;</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="&#39044;&#31639;&#32534;&#21495;&#21644;&#20219;&#21153;&#32534;&#21495;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#39044;&#31639;&#32534;&#21495;&#21644;&#20219;&#21153;&#32534;&#21495;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#29992;&#20110;&#20272;&#31639;&#30340;&#25104;&#26412;&#30446;&#24405;&#20013;&#30340;&#30446;&#24405;&#12289;&#31867;&#21035;&#21644;&#39033;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#29992;&#20110;&#20272;&#31639;&#30340;&#25104;&#26412;&#30446;&#24405;&#20013;&#30340;&#30446;&#24405;&#12289;&#31867;&#21035;&#21644;&#39033;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#25509;&#21463; Procore &#36992;&#35831;&#21644;&#21019;&#24314;&#20813;&#36153; Procore &#20844;&#21496;&#36134;&#25143;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#25509;&#21463; Procore &#36992;&#35831;&#21644;&#21019;&#24314;&#20813;&#36153; Procore &#20844;&#21496;&#36134;&#25143;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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 &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#19978;&#24050;&#35748;&#39046;&#21644;&#26410;&#35748;&#39046;&#30340;&#20225;&#19994;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#19978;&#24050;&#35748;&#39046;&#21644;&#26410;&#35748;&#39046;&#30340;&#20225;&#19994;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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 &#30340;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#20013;&#30340;&#40664;&#35748;&#32454;&#20998;&#21644;&#33258;&#23450;&#20041;&#32454;&#20998;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#20013;&#30340;&#40664;&#35748;&#32454;&#20998;&#21644;&#33258;&#23450;&#20041;&#32454;&#20998;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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 &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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 &#30340;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#20013;&#30340;&#24179;&#38754;&#32454;&#20998;&#21644;&#20998;&#23618;&#32454;&#20998;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#20013;&#30340;&#24179;&#38754;&#32454;&#20998;&#21644;&#20998;&#23618;&#32454;&#20998;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#20154;&#24037;&#29983;&#20135;&#21147;&#39044;&#31639;&#35270;&#22270;&#21644;&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#20154;&#24037;&#29983;&#20135;&#21147;&#39044;&#31639;&#35270;&#22270;&#21644;&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#36865;&#23457;&#20013;&#30340;&#36865;&#23457;&#32773;&#21644;&#23457;&#25209;&#32773;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#36865;&#23457;&#20013;&#30340;&#36865;&#23457;&#32773;&#21644;&#23457;&#25209;&#32773;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#20351;&#29992;&#22270;&#32440;&#26631;&#35760;&#36827;&#34892;&#22797;&#21046;&#21644;&#22797;&#21046;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#20351;&#29992;&#22270;&#32440;&#26631;&#35760;&#36827;&#34892;&#22797;&#21046;&#21644;&#22797;&#21046;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#33258;&#23450;&#20041;&#23383;&#27573;&#21644;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#33258;&#23450;&#20041;&#23383;&#27573;&#21644;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#25991;&#26723;&#31649;&#29702;&#38468;&#20214;&#21644;&#26469;&#33258;&#20854;&#20182;&#24037;&#20855;&#30340;&#38468;&#20214;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#25991;&#26723;&#31649;&#29702;&#38468;&#20214;&#21644;&#26469;&#33258;&#20854;&#20182;&#24037;&#20855;&#30340;&#38468;&#20214;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#27700;&#24179;&#20998;&#39033;&#21033;&#28070;&#21152;&#25104;&#21644;&#22402;&#30452;&#27719;&#24635;&#21033;&#28070;&#21152;&#25104;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#27700;&#24179;&#20998;&#39033;&#21033;&#28070;&#21152;&#25104;&#21644;&#22402;&#30452;&#27719;&#24635;&#21033;&#28070;&#21152;&#25104;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#20010;&#20154;&#22270;&#32440;&#26631;&#35760;&#19982;&#24050;&#21457;&#24067;&#22270;&#32440;&#26631;&#35760;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#20010;&#20154;&#22270;&#32440;&#26631;&#35760;&#19982;&#24050;&#21457;&#24067;&#22270;&#32440;&#26631;&#35760;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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 &#20013;&#30340;&#26629;&#26684;&#21644;&#30690;&#37327;&#20869;&#23481;&#26377;&#20309;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>PDF &#20013;&#30340;&#26629;&#26684;&#21644;&#30690;&#37327;&#20869;&#23481;&#26377;&#20309;&#21306;&#21035;&#65311;</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="&quot;&#36164;&#28304;&#36319;&#36394;&quot;&#21644;&quot;&#36164;&#28304;&#31649;&#29702;&quot;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&quot;&#36164;&#28304;&#36319;&#36394;&quot;&#21644;&quot;&#36164;&#28304;&#31649;&#29702;&quot;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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 &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#21644; IdP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>SP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#21644; IdP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;</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 &#20013;&#30340;&ldquo;&#25991;&#26723;&rdquo;&#21644;&ldquo;&#25991;&#26723;&#31649;&#29702;&rdquo;&#24037;&#20855;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&ldquo;&#25991;&#26723;&rdquo;&#21644;&ldquo;&#25991;&#26723;&#31649;&#29702;&rdquo;&#24037;&#20855;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#22312;&#23884;&#20837;&#24335;&#24212;&#29992;&#31243;&#24207;&#21644; Power BI &#26381;&#21153;&#20013;&#26597;&#30475;Procore Analytics&#25253;&#21578;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#23884;&#20837;&#24335;&#24212;&#29992;&#31243;&#24207;&#21644; Power BI &#26381;&#21153;&#20013;&#26597;&#30475;Procore Analytics&#25253;&#21578;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#25237;&#26631;&#24037;&#20855;&#20013;&#26087;&#29256;&#21644;&#26032;&#29256;&#25237;&#26631;&#31649;&#29702;&#20307;&#39564;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#25237;&#26631;&#24037;&#20855;&#20013;&#26087;&#29256;&#21644;&#26032;&#29256;&#25237;&#26631;&#31649;&#29702;&#20307;&#39564;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#20160;&#20040;&#26159;&ldquo;&#21551;&#29992;&#22987;&#32456;&#21487;&#32534;&#36753;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&rdquo;&#35774;&#32622;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&ldquo;&#21551;&#29992;&#22987;&#32456;&#21487;&#32534;&#36753;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&rdquo;&#35774;&#32622;&#65311;</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="&#25552;&#21462;&#30340;&#39033;&#30446;&#25968;&#25454;&#20013;&#21253;&#21547;&#30340;&ldquo;&#25991;&#20214;&#37325;&#21629;&#21517;&#20449;&#24687; (File Rename Information)&rdquo;&#25991;&#20214;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#25552;&#21462;&#30340;&#39033;&#30446;&#25968;&#25454;&#20013;&#21253;&#21547;&#30340;&ldquo;&#25991;&#20214;&#37325;&#21629;&#21517;&#20449;&#24687; (File Rename Information)&rdquo;&#25991;&#20214;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-laborchart-app" title="&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;/ LaborChart&#24212;&#29992;&#31243;&#24207;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;/ LaborChart&#24212;&#29992;&#31243;&#24207;&#65311;</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="&#21512;&#32422;&ldquo;&#32534;&#21495; (#)&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&ldquo;&#32534;&#21495; (#)&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#21512;&#32422;&ldquo;&#26631;&#39064;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&ldquo;&#26631;&#39064;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#30446;&#24405;&#24037;&#20855;&#20013;&ldquo;&#20844;&#21496;&#21517;&#31216;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-none"></span>&#30446;&#24405;&#24037;&#20855;&#20013;&ldquo;&#20844;&#21496;&#21517;&#31216;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-monthly-sandbox-environment" title="&#20160;&#20040;&#26159;&#27599;&#26376;&#27801;&#31665;&#29615;&#22659;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#27599;&#26376;&#27801;&#31665;&#29615;&#22659;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&ldquo;&#25105;&#30340;&#20219;&#21153;&rdquo;&#39029;&#38754;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&ldquo;&#25105;&#30340;&#20219;&#21153;&rdquo;&#39029;&#38754;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-procore-analytics-risk-report" title="&#20160;&#20040;&#26159;Procore Analytics&#39118;&#38505;&#25253;&#21578;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;Procore Analytics&#39118;&#38505;&#25253;&#21578;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-procore-construction-network" title="&#20160;&#20040;&#26159; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#65311;</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="&#20160;&#20040;&#26159; Procore&#25554;&#20214;&#65292;&#26377;&#20309;&#29992;&#36884;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore&#25554;&#20214;&#65292;&#26377;&#20309;&#29992;&#36884;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#39033;&#30446;&#39029;&#38754;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#39033;&#30446;&#39029;&#38754;&#26159;&#20160;&#20040;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#22242;&#38431;&#26159;&#20160;&#20040;&#65311;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#26435;&#38480;&#32423;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#22242;&#38431;&#26159;&#20160;&#20040;&#65311;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#26435;&#38480;&#32423;&#21035;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-punch-list-work-flow" title="&#20160;&#20040;&#26159;&#23614;&#39033;&#28165;&#21333;&#24037;&#20316;&#27969;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#23614;&#39033;&#28165;&#21333;&#24037;&#20316;&#27969;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-resource-bench-in-resource-planning" title="&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;&#20013;&#30340;&quot;&#36164;&#28304;&#21488;&quot;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;&#20013;&#30340;&quot;&#36164;&#28304;&#21488;&quot;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-rfi-manager-role" title="&#20160;&#20040;&#26159; RFI &#32463;&#29702;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; RFI &#32463;&#29702;&#35282;&#33394;&#65311;</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="&#25991;&#26723;&#24037;&#20855;&#20013;&#30340;&ldquo;&#36827;&#24230;&#35745;&#21010;&rdquo;&#25991;&#20214;&#22841;&#26159;&#20160;&#20040;&#65311;&#20026;&#20160;&#20040;&#19981;&#33021;&#21024;&#38500;&#65311;"><span class="mt-icon-article-none"></span>&#25991;&#26723;&#24037;&#20855;&#20013;&#30340;&ldquo;&#36827;&#24230;&#35745;&#21010;&rdquo;&#25991;&#20214;&#22841;&#26159;&#20160;&#20040;&#65311;&#20026;&#20160;&#20040;&#19981;&#33021;&#21024;&#38500;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&ldquo;&#21457;&#36865;&#21040;&#24212;&#20184;&#20250;&#35745;&rdquo;&#21151;&#33021;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&ldquo;&#21457;&#36865;&#21040;&#24212;&#20184;&#20250;&#35745;&rdquo;&#21151;&#33021;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-submittal-manager-role" title="&#20160;&#20040;&#26159;&ldquo;&#36865;&#23457;&#32463;&#29702;&rdquo;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&ldquo;&#36865;&#23457;&#32463;&#29702;&rdquo;&#35282;&#33394;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-unpublished-status-on-drawings" title="&#20160;&#20040;&#26159;&#22270;&#32440;&#30340;&#26410;&#21457;&#24067;&#29366;&#24577;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#22270;&#32440;&#30340;&#26410;&#21457;&#24067;&#29366;&#24577;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-workforce-planning-laborchart-web-application" title="&#20160;&#20040;&#26159;&#21171;&#21160;&#21147;&#35268;&#21010;/ LaborChart Web &#24212;&#29992;&#31243;&#24207;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21171;&#21160;&#21147;&#35268;&#21010;/ LaborChart Web &#24212;&#29992;&#31243;&#24207;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-work-breakdown-structure-wbs" title="&#20160;&#20040;&#26159;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500; (WBS)&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500; (WBS)&#65311;</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="&#21487;&#20197;&#22312;&#23545;&#35805;&#24037;&#20855;&#20013;&#23558;&#21738;&#20123;&#39033;&#30446;&#28155;&#21152;&#21040;&#28040;&#24687;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#22312;&#23545;&#35805;&#24037;&#20855;&#20013;&#23558;&#21738;&#20123;&#39033;&#30446;&#28155;&#21152;&#21040;&#28040;&#24687;&#20013;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-languages-are-available-in-procore" title="Procore &#20013;&#26377;&#21738;&#20123;&#35821;&#35328;&#21487;&#29992;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#26377;&#21738;&#20123;&#35821;&#35328;&#21487;&#29992;&#65311;</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="&#23545;&#35805;&#24037;&#20855;&#21487;&#20197;&#33258;&#21160;&#32763;&#35793;&#21738;&#20123;&#35821;&#35328;&#65311;"><span class="mt-icon-article-none"></span>&#23545;&#35805;&#24037;&#20855;&#21487;&#20197;&#33258;&#21160;&#32763;&#35793;&#21738;&#20123;&#35821;&#35328;&#65311;</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="&#26159;&#20160;&#20040;&#20351;&#20844;&#21496;&#22312; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#30340;&#25628;&#32034;&#32467;&#26524;&#20013;&#26356;&#39640;&#65311;"><span class="mt-icon-article-none"></span>&#26159;&#20160;&#20040;&#20351;&#20844;&#21496;&#22312; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#30340;&#25628;&#32034;&#32467;&#26524;&#20013;&#26356;&#39640;&#65311;</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="&#20154;&#21592;&#21487;&#20197;&#22312;&#36164;&#28304;&#35268;&#21010;&#20013;&#31572;&#22797;&#21738;&#20123;&#28040;&#24687;&#21644;&#35686;&#25253;&#65311;"><span class="mt-icon-article-none"></span>&#20154;&#21592;&#21487;&#20197;&#22312;&#36164;&#28304;&#35268;&#21010;&#20013;&#31572;&#22797;&#21738;&#20123;&#28040;&#24687;&#21644;&#35686;&#25253;&#65311;</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="&#22312; Procore &#20013;&#20026; RFI &#32534;&#21495;&#26377;&#21738;&#20123;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#22312; Procore &#20013;&#20026; RFI &#32534;&#21495;&#26377;&#21738;&#20123;&#36873;&#39033;&#65311;</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="&#36164;&#28304;&#35268;&#21010;&#21644; Procore &#20844;&#21496;&#30446;&#24405;&#20043;&#38388;&#21516;&#27493;&#20102;&#21738;&#20123;&#20154;&#21592;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#36164;&#28304;&#35268;&#21010;&#21644; Procore &#20844;&#21496;&#30446;&#24405;&#20043;&#38388;&#21516;&#27493;&#20102;&#21738;&#20123;&#20154;&#21592;&#20449;&#24687;&#65311;</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="&#25237;&#26631;&#20154;&#38656;&#35201;&#21738;&#20123;&#26435;&#38480;&#25165;&#33021;&#21463;&#36992;&#25237;&#26631;&#21644;&#25552;&#20132;&#25237;&#26631;&#65311;"><span class="mt-icon-article-none"></span>&#25237;&#26631;&#20154;&#38656;&#35201;&#21738;&#20123;&#26435;&#38480;&#25165;&#33021;&#21463;&#36992;&#25237;&#26631;&#21644;&#25552;&#20132;&#25237;&#26631;&#65311;</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="&#36164;&#28304;&#35268;&#21010;&#21644; Procore &#39033;&#30446;&#20043;&#38388;&#21516;&#27493;&#20102;&#21738;&#20123;&#39033;&#30446;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#36164;&#28304;&#35268;&#21010;&#21644; Procore &#39033;&#30446;&#20043;&#38388;&#21516;&#27493;&#20102;&#21738;&#20123;&#39033;&#30446;&#20449;&#24687;&#65311;</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 &#24230;&#25253;&#21578;&#24037;&#20855;&#20013;&#25552;&#20379;&#21738;&#20123;&#25253;&#21578;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>360 &#24230;&#25253;&#21578;&#24037;&#20855;&#20013;&#25552;&#20379;&#21738;&#20123;&#25253;&#21578;&#27169;&#26495;&#65311;</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 &#20013;&#30340;&#39033;&#30446;&#24037;&#20855;&#26377;&#21738;&#20123;&#35774;&#32622;&#21487;&#29992;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#39033;&#30446;&#24037;&#20855;&#26377;&#21738;&#20123;&#35774;&#32622;&#21487;&#29992;&#65311;</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="&#22914;&#26524;&#27169;&#22411;&#22826;&#22823;&#32780;&#26080;&#27861;&#22312; Procore &#30340; Web &#24212;&#29992;&#31243;&#24207;&#20013;&#26597;&#30475;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#27169;&#22411;&#22826;&#22823;&#32780;&#26080;&#27861;&#22312; Procore &#30340; Web &#24212;&#29992;&#31243;&#24207;&#20013;&#26597;&#30475;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;</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="&#22914;&#26524;&#25105;&#24536;&#35760;&#20102;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#30340;&#23494;&#30721;&#65292;&#35813;&#24590;&#20040;&#21150;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#25105;&#24536;&#35760;&#20102;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#30340;&#23494;&#30721;&#65292;&#35813;&#24590;&#20040;&#21150;&#65311;</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="&#22914;&#26524;&#25105;&#30340;&#27169;&#22411;&#25991;&#20214;&#22826;&#22823;&#32780;&#26080;&#27861;&#22312;&#25991;&#26723;&#24037;&#20855;&#20013;&#22788;&#29702;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#25105;&#30340;&#27169;&#22411;&#25991;&#20214;&#22826;&#22823;&#32780;&#26080;&#27861;&#22312;&#25991;&#26723;&#24037;&#20855;&#20013;&#22788;&#29702;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;</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="&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#23457;&#25209;&#24037;&#20316;&#27969;&#65292;&#25105;&#24212;&#35813;&#20102;&#35299;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#23457;&#25209;&#24037;&#20316;&#27969;&#65292;&#25105;&#24212;&#35813;&#20102;&#35299;&#20160;&#20040;&#65311;</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="&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;</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="&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;</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="&#20851;&#20110;&#22312; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#19978;&#30003;&#35831;&#19994;&#21153;&#65292;&#25105;&#24212;&#35813;&#20102;&#35299;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20851;&#20110;&#22312; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#19978;&#30003;&#35831;&#19994;&#21153;&#65292;&#25105;&#24212;&#35813;&#20102;&#35299;&#20160;&#20040;&#65311;</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="&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#24320;&#21457;&#31080;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#24320;&#21457;&#31080;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;</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="&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23460;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23460;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;</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="&#33258;&#23450;&#20041; &#39044;&#31639; &#35270;&#22270;&#20013;&#26377;&#21738;&#20123;&#28304;&#21015;&#65311;"><span class="mt-icon-article-none"></span>&#33258;&#23450;&#20041; &#39044;&#31639; &#35270;&#22270;&#20013;&#26377;&#21738;&#20123;&#28304;&#21015;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-standard-trades-are-available-in-procore" title="Procore &#20013;&#25552;&#20379;&#21738;&#20123;&#26631;&#20934;&#34892;&#19994;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#25552;&#20379;&#21738;&#20123;&#26631;&#20934;&#34892;&#19994;&#65311;</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="&#23558;&#20219;&#21153;&#20998;&#37197;&#23545;&#35937;&#28155;&#21152;&#21040; RFI &#21644;&#36716;&#21457; RFI &#20379;&#23457;&#26680;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#23558;&#20219;&#21153;&#20998;&#37197;&#23545;&#35937;&#28155;&#21152;&#21040; RFI &#21644;&#36716;&#21457; RFI &#20379;&#23457;&#26680;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#20316;&#19994;&#12289;&#29238;&#20316;&#19994;&#21644;&#23376;&#20316;&#19994;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#20316;&#19994;&#12289;&#29238;&#20316;&#19994;&#21644;&#23376;&#20316;&#19994;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;</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 &#30340;&#29992;&#25143;&#23548;&#20837;&#21644;&#20379;&#24212;&#21830;/&#20844;&#21496;&#23548;&#20837;&#27169;&#26495;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#29992;&#25143;&#23548;&#20837;&#21644;&#20379;&#24212;&#21830;/&#20844;&#21496;&#23548;&#20837;&#27169;&#26495;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#36865;&#23457;&#24037;&#20316;&#27969;&#20013;&#30340;&#20381;&#24207;&#23457;&#25209;&#21644;&#24179;&#34892;&#23457;&#25209;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#36865;&#23457;&#24037;&#20316;&#27969;&#20013;&#30340;&#20381;&#24207;&#23457;&#25209;&#21644;&#24179;&#34892;&#23457;&#25209;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-to-know-vapid-api-deprecation" title="&#20851;&#20110; Vapid API &#30340;&#24323;&#29992;&#65292;&#25105;&#38656;&#35201;&#20102;&#35299;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20851;&#20110; Vapid API &#30340;&#24323;&#29992;&#65292;&#25105;&#38656;&#35201;&#20102;&#35299;&#20160;&#20040;&#65311;</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 &#20013;&#30340;&#21738;&#20123;&#24037;&#20855;&#21517;&#31216;&#21644;&#26415;&#35821;&#23545;&#20110;&#24635;&#25215;&#21253;&#21830;&#12289;&#19994;&#20027;&#21644;&#19987;&#19994;&#25215;&#21253;&#21830;&#26159;&#19981;&#21516;&#30340;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#21738;&#20123;&#24037;&#20855;&#21517;&#31216;&#21644;&#26415;&#35821;&#23545;&#20110;&#24635;&#25215;&#21253;&#21830;&#12289;&#19994;&#20027;&#21644;&#19987;&#19994;&#25215;&#21253;&#21830;&#26159;&#19981;&#21516;&#30340;&#65311;</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 &#20013;&#30340;&#22320;&#22270;&#25903;&#25345;&#21738;&#20123;&#24037;&#20855;&#65311;"><span class="mt-icon-article-reference"></span>Procore &#20013;&#30340;&#22320;&#22270;&#25903;&#25345;&#21738;&#20123;&#24037;&#20855;&#65311;</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="&#21487;&#20197;&#22312;&#31227;&#21160;&#35774;&#22791;&#19978;&#23558;&#21738;&#20123;&#24037;&#20855;&#29992;&#20110;&#38750;&#27963;&#21160;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#22312;&#31227;&#21160;&#35774;&#22791;&#19978;&#23558;&#21738;&#20123;&#24037;&#20855;&#29992;&#20110;&#38750;&#27963;&#21160;&#39033;&#30446;&#65311;</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="&#24314;&#35758;&#22312;&#27169;&#22411;&#24037;&#20855;&#20013;&#20351;&#29992;&#20160;&#20040;&#31867;&#22411;&#30340;&#35774;&#22791;&#26597;&#30475;&#27169;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#24314;&#35758;&#22312;&#27169;&#22411;&#24037;&#20855;&#20013;&#20351;&#29992;&#20160;&#20040;&#31867;&#22411;&#30340;&#35774;&#22791;&#26597;&#30475;&#27169;&#22411;&#65311;</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="&#24212;&#35813;&#20351;&#29992;&#20160;&#20040;&#31867;&#22411;&#30340;&#31227;&#21160;&#35774;&#22791;&#26469;&#20351;&#29992; Procore&#65311;"><span class="mt-icon-article-none"></span>&#24212;&#35813;&#20351;&#29992;&#20160;&#20040;&#31867;&#22411;&#30340;&#31227;&#21160;&#35774;&#22791;&#26469;&#20351;&#29992; Procore&#65311;</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="&#21487;&#20197;&#20351;&#29992;&#36890;&#20449;&#24037;&#20855;&#21019;&#24314;&#21738;&#20123;&#31867;&#22411;&#30340;&#36890;&#20449;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#20351;&#29992;&#36890;&#20449;&#24037;&#20855;&#21019;&#24314;&#21738;&#20123;&#31867;&#22411;&#30340;&#36890;&#20449;&#65311;</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="&#20174;&#21464;&#26356;&#20107;&#20214;&#20013;&#23558;&#21738;&#20123;&#20540;&#25552;&#21462;&#21040;&#21464;&#26356;&#36890;&#30693;&#21333; SOV&#65311;"><span class="mt-icon-article-none"></span>&#20174;&#21464;&#26356;&#20107;&#20214;&#20013;&#23558;&#21738;&#20123;&#20540;&#25552;&#21462;&#21040;&#21464;&#26356;&#36890;&#30693;&#21333; SOV&#65311;</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 &#22320;&#22270;&#26377;&#21738;&#20123;&#21487;&#35265;&#24615;&#35774;&#32622;&#65311;"><span class="mt-icon-article-none"></span>Procore &#22320;&#22270;&#26377;&#21738;&#20123;&#21487;&#35265;&#24615;&#35774;&#32622;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-are-email-notifications-sent-from-workflows" title="&#24037;&#20316;&#27969;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#24037;&#20316;&#27969;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;</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="&#34892;&#21160;&#35745;&#21010;&#20309;&#26102;&#36716;&#25442;&#20026;&ldquo;&#32534;&#36753;&rdquo;&#25110;&ldquo;&#26597;&#30475;&rdquo;&#27169;&#24335;&#65311;"><span class="mt-icon-article-none"></span>&#34892;&#21160;&#35745;&#21010;&#20309;&#26102;&#36716;&#25442;&#20026;&ldquo;&#32534;&#36753;&rdquo;&#25110;&ldquo;&#26597;&#30475;&rdquo;&#27169;&#24335;&#65311;</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="&#25105;&#22312; Procore &#25903;&#25345;&#32593;&#31449;&#19978;&#30340;&#29992;&#25143;&#20250;&#35805;&#20309;&#26102;&#36807;&#26399;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#22312; Procore &#25903;&#25345;&#32593;&#31449;&#19978;&#30340;&#29992;&#25143;&#20250;&#35805;&#20309;&#26102;&#36807;&#26399;&#65311;</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 &#20309;&#26102;&#21521;&#21457;&#31080;&#32852;&#31995;&#20154;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20309;&#26102;&#21521;&#21457;&#31080;&#32852;&#31995;&#20154;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;</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 &#24037;&#20855;&#20309;&#26102;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>RFI &#24037;&#20855;&#20309;&#26102;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-does-the-tasks-tool-send-email-notifications" title="&#20219;&#21153;&#24037;&#20855;&#20309;&#26102;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#20219;&#21153;&#24037;&#20855;&#20309;&#26102;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;</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="&#36865;&#23457;&#38468;&#20214;&#20309;&#26102;&#22312;&ldquo;&#36865;&#23457;&#24037;&#20316;&#27969;&rdquo;&#34920;&#20013;&#26631;&#35760;&#20026;&ldquo;&#24403;&#21069;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#36865;&#23457;&#38468;&#20214;&#20309;&#26102;&#22312;&ldquo;&#36865;&#23457;&#24037;&#20316;&#27969;&rdquo;&#34920;&#20013;&#26631;&#35760;&#20026;&ldquo;&#24403;&#21069;&rdquo;&#65311;</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="&#26356;&#26032;&#20316;&#19994;&#26085;&#24535;&#37096;&#20998;&#26102;&#65292;&#20026;&#20160;&#20040;&#22312;&#25105;&#30340;&#36164;&#28304;&#21015;&#34920;&#20013;&#30475;&#19981;&#21040;&#20219;&#20309;&#21517;&#31216;&#65311;"><span class="mt-icon-article-none"></span>&#26356;&#26032;&#20316;&#19994;&#26085;&#24535;&#37096;&#20998;&#26102;&#65292;&#20026;&#20160;&#20040;&#22312;&#25105;&#30340;&#36164;&#28304;&#21015;&#34920;&#20013;&#30475;&#19981;&#21040;&#20219;&#20309;&#21517;&#31216;&#65311;</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="&#20160;&#20040;&#26102;&#20505;&#20250;&#25910;&#21040;&#26377;&#20851;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25237;&#26631;&#30340;&#39033;&#30446;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26102;&#20505;&#20250;&#25910;&#21040;&#26377;&#20851;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25237;&#26631;&#30340;&#39033;&#30446;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;</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 &#22312;&#21738;&#37324;&#20197;&#21450;&#22914;&#20309;&#23384;&#20648;&#23458;&#25143;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>Procore &#22312;&#21738;&#37324;&#20197;&#21450;&#22914;&#20309;&#23384;&#20648;&#23458;&#25143;&#20449;&#24687;&#65311;</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="&#22312;&#21738;&#37324;&#21487;&#20197;&#25214;&#21040;&#29992;&#20110;&#21521; Procore &#21457;&#36865;&#24037;&#20316;&#26085;&#24535;&#12289;&#29031;&#29255;&#12289;&#25991;&#26723;&#21644;&#30005;&#23376;&#37038;&#20214;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#21738;&#37324;&#21487;&#20197;&#25214;&#21040;&#29992;&#20110;&#21521; Procore &#21457;&#36865;&#24037;&#20316;&#26085;&#24535;&#12289;&#29031;&#29255;&#12289;&#25991;&#26723;&#21644;&#30005;&#23376;&#37038;&#20214;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&#65311;</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="&#25105;&#22312;&#21738;&#37324;&#21487;&#20197;&#25253;&#21517;&#21442;&#21152;&#20813;&#36153;&#30340;&#20844;&#24320;&#22521;&#35757;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#22312;&#21738;&#37324;&#21487;&#20197;&#25253;&#21517;&#21442;&#21152;&#20813;&#36153;&#30340;&#20844;&#24320;&#22521;&#35757;&#65311;</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 &#20013;&#30340;&#36136;&#37327;&#21644;&#23433;&#20840;&#21435;&#21738;&#37324;&#20102;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#36136;&#37327;&#21644;&#23433;&#20840;&#21435;&#21738;&#37324;&#20102;&#65311;</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="&#32771;&#21220;&#34920;&#21644;&#25105;&#30340;&#24037;&#26102;&#24037;&#20855;&#23383;&#27573;&#38598;&#19978;&#30340;&#32534;&#21495;&#27169;&#26495;&#20174;&#20309;&#32780;&#26469;&#65311;"><span class="mt-icon-article-none"></span>&#32771;&#21220;&#34920;&#21644;&#25105;&#30340;&#24037;&#26102;&#24037;&#20855;&#23383;&#27573;&#38598;&#19978;&#30340;&#32534;&#21495;&#27169;&#26495;&#20174;&#20309;&#32780;&#26469;&#65311;</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="&#25628;&#32034;&#25237;&#26631;&#20154;&#26102;&#65292;&quot;&#36164;&#26684;&quot;&#25968;&#25454;&#20174;&#20309;&#32780;&#26469;&#65311;"><span class="mt-icon-article-none"></span>&#25628;&#32034;&#25237;&#26631;&#20154;&#26102;&#65292;&quot;&#36164;&#26684;&quot;&#25968;&#25454;&#20174;&#20309;&#32780;&#26469;&#65311;</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="&#22312; Procore &#20013;&#65292;&#25105;&#24212;&#35813;&#23558;&#25237;&#26631;&#25991;&#20214;&#25918;&#22312;&#21738;&#37324;&#65311;"><span class="mt-icon-article-none"></span>&#22312; Procore &#20013;&#65292;&#25105;&#24212;&#35813;&#23558;&#25237;&#26631;&#25991;&#20214;&#25918;&#22312;&#21738;&#37324;&#65311;</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="&quot;&#35268;&#33539;&#20998;&#39033;&quot;&#19979;&#25289;&#21015;&#34920;&#20013;&#30340;&#36873;&#39033;&#20174;&#20309;&#32780;&#26469;&#65311;"><span class="mt-icon-article-none"></span>&quot;&#35268;&#33539;&#20998;&#39033;&quot;&#19979;&#25289;&#21015;&#34920;&#20013;&#30340;&#36873;&#39033;&#20174;&#20309;&#32780;&#26469;&#65311;</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 &#30340; WBS &#20013;&ldquo;&#25104;&#26412;&#32534;&#21495;&rdquo;&#32454;&#20998;&#20013;&#30340;&ldquo;&#20998;&#37096;&rdquo;&#22312;&#21738;&#37324;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340; WBS &#20013;&ldquo;&#25104;&#26412;&#32534;&#21495;&rdquo;&#32454;&#20998;&#20013;&#30340;&ldquo;&#20998;&#37096;&rdquo;&#22312;&#21738;&#37324;&#65311;</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="&#27491;&#22312;&#23547;&#25214;&#30340; Procore &#35748;&#35777;&#35838;&#31243;&#22312;&#21738;&#37324;&#65311;"><span class="mt-icon-article-none"></span>&#27491;&#22312;&#23547;&#25214;&#30340; Procore &#35748;&#35777;&#35838;&#31243;&#22312;&#21738;&#37324;&#65311;</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 &#25903;&#25345;&#21738;&#20123; Asta Powerproject &#25991;&#20214;&#26684;&#24335;&#65311;"><span class="mt-icon-article-none"></span>Procore &#25903;&#25345;&#21738;&#20123; Asta Powerproject &#25991;&#20214;&#26684;&#24335;&#65311;</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="&#25105;&#24212;&#35813;&#23558;&#21738;&#20123;&#39044;&#31639;&#35270;&#22270;&#28155;&#21152;&#21040;&#25105;&#30340; Procore &#39033;&#30446;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#24212;&#35813;&#23558;&#21738;&#20123;&#39044;&#31639;&#35270;&#22270;&#28155;&#21152;&#21040;&#25105;&#30340; Procore &#39033;&#30446;&#20013;&#65311;</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="&#20351;&#29992;&ldquo;&#23436;&#24037;&#39044;&#27979;&rdquo;&#21151;&#33021;&#26102;&#24212;&#35813;&#36873;&#25321;&#21738;&#31181;&#35745;&#31639;&#26041;&#27861;&#65311;"><span class="mt-icon-article-none"></span>&#20351;&#29992;&ldquo;&#23436;&#24037;&#39044;&#27979;&rdquo;&#21151;&#33021;&#26102;&#24212;&#35813;&#36873;&#25321;&#21738;&#31181;&#35745;&#31639;&#26041;&#27861;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-cost-code-formats-are-supported-by-erp" title="&#25105;&#30340; ERP &#38598;&#25104;&#25903;&#25345;&#21738;&#20123;&#25104;&#26412;&#32534;&#21495;&#26684;&#24335;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#30340; ERP &#38598;&#25104;&#25903;&#25345;&#21738;&#20123;&#25104;&#26412;&#32534;&#21495;&#26684;&#24335;&#65311;</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="&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#20013;&#21253;&#21547;&#21738;&#20123;&#25968;&#25454;&#21015;&#65311;"><span class="mt-icon-article-none"></span>&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#20013;&#21253;&#21547;&#21738;&#20123;&#25968;&#25454;&#21015;&#65311;</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="&#21487;&#20197;&#23558;&#21738;&#20123;&#25968;&#25454;&#21015;&#28155;&#21152;&#21040;&#33258;&#23450;&#20041;&#36865;&#23457;&#25253;&#21578;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#23558;&#21738;&#20123;&#25968;&#25454;&#21015;&#28155;&#21152;&#21040;&#33258;&#23450;&#20041;&#36865;&#23457;&#25253;&#21578;&#20013;&#65311;</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="&#25105;&#20204;&#23558;&#21738;&#20123;&#22495;&#28155;&#21152;&#21040;&#25105;&#20204;&#32593;&#32476;&#30340;&ldquo;&#20801;&#35768;&#21517;&#21333;&rdquo;&#20013;&#20197;&#30830;&#20445;&#35775;&#38382; Procore&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#20204;&#23558;&#21738;&#20123;&#22495;&#28155;&#21152;&#21040;&#25105;&#20204;&#32593;&#32476;&#30340;&ldquo;&#20801;&#35768;&#21517;&#21333;&rdquo;&#20013;&#20197;&#30830;&#20445;&#35775;&#38382; Procore&#65311;</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 &#20013;&#26356;&#26032;&#30340;&#20837;&#31449;&#30005;&#23376;&#37038;&#20214;&#36890;&#20449;&#35774;&#32622;&#20250;&#24433;&#21709;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#26356;&#26032;&#30340;&#20837;&#31449;&#30005;&#23376;&#37038;&#20214;&#36890;&#20449;&#35774;&#32622;&#20250;&#24433;&#21709;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#19978;&#20256;&#22270;&#32440;&#26102;&#65292;Procore &#21487;&#20197;&#33258;&#21160;&#22635;&#20805;&#21738;&#20123;&#23383;&#27573;&#65311;"><span class="mt-icon-article-none"></span>&#19978;&#20256;&#22270;&#32440;&#26102;&#65292;Procore &#21487;&#20197;&#33258;&#21160;&#22635;&#20805;&#21738;&#20123;&#23383;&#27573;&#65311;</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="&#19978;&#20256;&#35268;&#33539;&#26102;&#65292;Procore &#21487;&#20197;&#33258;&#21160;&#22635;&#20805;&#21738;&#20123;&#23383;&#27573;&#65311;"><span class="mt-icon-article-none"></span>&#19978;&#20256;&#35268;&#33539;&#26102;&#65292;Procore &#21487;&#20197;&#33258;&#21160;&#22635;&#20805;&#21738;&#20123;&#23383;&#27573;&#65311;</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="&#34892;&#21160;&#35745;&#21010;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#34892;&#21160;&#35745;&#21010;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#39044;&#31639;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#39044;&#31639;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#21512;&#32422;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#21327;&#35843;&#38382;&#39064;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#21327;&#35843;&#38382;&#39064;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#36890;&#20449;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#36890;&#20449;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#24037;&#20316;&#26085;&#24535;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#24037;&#20316;&#26085;&#24535;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#30446;&#24405;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#30446;&#24405;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#25991;&#26723;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#25991;&#26723;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#22270;&#32440;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#22270;&#32440;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#20107;&#20214;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#20107;&#20214;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#26816;&#26597;&#20219;&#21153;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#26816;&#26597;&#20219;&#21153;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#21457;&#31080;&#25110;&#25353;&#36827;&#24230;&#25910;&#27454;&#36134;&#21333;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#36873;&#22635;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#21457;&#31080;&#25110;&#25353;&#36827;&#24230;&#25910;&#27454;&#36134;&#21333;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#36873;&#22635;&#25110;&#38544;&#34255;&#65311;</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="&#25105;&#30340;&#24037;&#26102;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#30340;&#24037;&#26102;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#35266;&#23519;&#20219;&#21153;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#35266;&#23519;&#20219;&#21153;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#20027;&#21512;&#21516;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#20027;&#21512;&#21516;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#23614;&#39033;&#28165;&#21333;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#23614;&#39033;&#28165;&#21333;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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 &#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>RFI &#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#35268;&#33539;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#35268;&#33539;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#36865;&#23457;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#36865;&#23457;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#32771;&#21220;&#34920;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#32771;&#21220;&#34920;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#24037;&#26102;&#21644;&#26448;&#26009;&#21333;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#24037;&#26102;&#21644;&#26448;&#26009;&#21333;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#21019;&#24314;&#25110;&#26356;&#26032;&#39033;&#30446;&#39029;&#38754;&#19978;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#21019;&#24314;&#25110;&#26356;&#26032;&#39033;&#30446;&#39029;&#38754;&#19978;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#23548;&#20986;&#39033;&#30446;&#30340;&#36865;&#23457;&#26448;&#26009;&#26102;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#26684;&#24335;&#65311;"><span class="mt-icon-article-none"></span>&#23548;&#20986;&#39033;&#30446;&#30340;&#36865;&#23457;&#26448;&#26009;&#26102;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#26684;&#24335;&#65311;</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="&#39033;&#30446;&#38598;&#21512;&#24037;&#20855;&#30340;&#35270;&#22270;&#20013;&#25903;&#25345;&#21738;&#20123;&#31579;&#36873;&#22120;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#38598;&#21512;&#24037;&#20855;&#30340;&#35270;&#22270;&#20013;&#25903;&#25345;&#21738;&#20123;&#31579;&#36873;&#22120;&#65311;</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="&#25105;&#21487;&#20197;&#23558;&#21738;&#20123;&#31579;&#36873;&#22120;&#24212;&#29992;&#20110;&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#23558;&#21738;&#20123;&#31579;&#36873;&#22120;&#24212;&#29992;&#20110;&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-groundbreak-2021-sessions-qualified-for-ce-credit" title="&#21738;&#20123; Groundbreak 2021 &#20250;&#35758;&#26377;&#36164;&#26684;&#33719;&#24471; CE &#23398;&#20998;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Groundbreak 2021 &#20250;&#35758;&#26377;&#36164;&#26684;&#33719;&#24471; CE &#23398;&#20998;&#65311;</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 &#20844;&#21496;&#30340;&#21738;&#20123;&#20445;&#38505;&#23383;&#27573;&#19982; Sage 300 CRE &#20379;&#24212;&#21830;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20844;&#21496;&#30340;&#21738;&#20123;&#20445;&#38505;&#23383;&#27573;&#19982; Sage 300 CRE &#20379;&#24212;&#21830;&#21516;&#27493;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-category-concept" title="&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#27010;&#24565;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#27010;&#24565;&#65311;</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="&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#23376;&#20316;&#19994;&rdquo;&#27010;&#24565;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#23376;&#20316;&#19994;&rdquo;&#27010;&#24565;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-logos-appear-on-pdf-exports-in-procore" title="&#21738;&#20123;&#24509;&#26631;&#20250;&#22312; Procore &#30340; PDF &#23548;&#20986;&#20013;&#26174;&#31034;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#24509;&#26631;&#20250;&#22312; Procore &#30340; PDF &#23548;&#20986;&#20013;&#26174;&#31034;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</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="&#21738;&#20123;&#20027;&#21512;&#21516;&#21644;&#20027;&#21512;&#21516;&#21464;&#26356;&#36890;&#30693;&#21333;&#23383;&#27573;&#19982; Procore &#21644; Viewpoint Spectrum &#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#20027;&#21512;&#21516;&#21644;&#20027;&#21512;&#21516;&#21464;&#26356;&#36890;&#30693;&#21333;&#23383;&#27573;&#19982; Procore &#21644; Viewpoint Spectrum &#21516;&#27493;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-platforms-support-azure-ad-sso" title="&#21738;&#20123; Procore &#24179;&#21488;&#25903;&#25345;Azure AD &#65288;Entra ID&#65289;&#21333;&#28857;&#30331;&#24405;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24179;&#21488;&#25903;&#25345;Azure AD &#65288;Entra ID&#65289;&#21333;&#28857;&#30331;&#24405;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-support-the-docusign-integration" title="&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#25903;&#25345; DocuSign&reg; &#38598;&#25104;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#25903;&#25345; DocuSign&reg; &#38598;&#25104;&#65311;</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="&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#20250;&#26356;&#26032;&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#20013;&#30340;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#20250;&#26356;&#26032;&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#20013;&#30340;&#25968;&#25454;&#65311;</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="&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#23558;&#29983;&#20135;&#25968;&#37327;&#28155;&#21152;&#21040;&#25105;&#30340;&#39033;&#30446;&#39044;&#31639;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#23558;&#29983;&#20135;&#25968;&#37327;&#28155;&#21152;&#21040;&#25105;&#30340;&#39033;&#30446;&#39044;&#31639;&#20013;&#65311;</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="&#25105;&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#21019;&#24314;&#21464;&#26356;&#20107;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#21019;&#24314;&#21464;&#26356;&#20107;&#20214;&#65311;</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="&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-classifications" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&ldquo;&#24037;&#31181;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&ldquo;&#24037;&#31181;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-work-breakdown-structure" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-workflows" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#27969;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#27969;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-project-tools-support-conversations" title="&#21738;&#20123;&#39033;&#30446;&#24037;&#20855;&#25903;&#25345;&#23545;&#35805;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#39033;&#30446;&#24037;&#20855;&#25903;&#25345;&#23545;&#35805;&#65311;</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="&#22312; QuickBooks&reg; &#20013;&#21551;&#29992;&#21738;&#20010;&#35774;&#32622;&#25165;&#33021;&#20351;&#29992; ERP &#38598;&#25104;&#24037;&#20855;&#23548;&#20986;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>&#22312; QuickBooks&reg; &#20013;&#21551;&#29992;&#21738;&#20010;&#35774;&#32622;&#25165;&#33021;&#20351;&#29992; ERP &#38598;&#25104;&#24037;&#20855;&#23548;&#20986;&#21457;&#31080;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-settings-are-available-in-procore" title="Procore &#20013;&#26377;&#21738;&#20123;&#35774;&#32622;&#21487;&#29992;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#26377;&#21738;&#20123;&#35774;&#32622;&#21487;&#29992;&#65311;</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 &#25903;&#25345;&#21738;&#20123;&#21333;&#28857;&#30331;&#24405;&#36523;&#20221;&#25552;&#20379;&#21830;&#65311;"><span class="mt-icon-article-none"></span>Procore &#25903;&#25345;&#21738;&#20123;&#21333;&#28857;&#30331;&#24405;&#36523;&#20221;&#25552;&#20379;&#21830;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-tools-can-attach-document-management-files" title="&#21738;&#20123;&#24037;&#20855;&#21487;&#20197;&#28155;&#21152;&#25991;&#26723;&#31649;&#29702;&#25991;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#24037;&#20855;&#21487;&#20197;&#28155;&#21152;&#25991;&#26723;&#31649;&#29702;&#25991;&#20214;&#65311;</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="&#20351;&#29992; Procore Extracts &#24212;&#29992;&#31243;&#24207;&#21487;&#20197;&#20174;&#21738;&#20123;&#24037;&#20855;&#20013;&#25552;&#21462;&#39033;&#30446;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>&#20351;&#29992; Procore Extracts &#24212;&#29992;&#31243;&#24207;&#21487;&#20197;&#20174;&#21738;&#20123;&#24037;&#20855;&#20013;&#25552;&#21462;&#39033;&#30446;&#25968;&#25454;&#65311;</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="&#22312; Procore &#31227;&#21160;&#24212;&#29992;&#31243;&#24207;&#19978;&#65292;&#30446;&#21069;&#21738;&#20123;&#24037;&#20855;&#25903;&#25345;&ldquo;&#20070;&#31614;&rdquo;&#21151;&#33021;&#65311;"><span class="mt-icon-article-none"></span>&#22312; Procore &#31227;&#21160;&#24212;&#29992;&#31243;&#24207;&#19978;&#65292;&#30446;&#21069;&#21738;&#20123;&#24037;&#20855;&#25903;&#25345;&ldquo;&#20070;&#31614;&rdquo;&#21151;&#33021;&#65311;</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 &#30340;&#20027;&#21015;&#34920;&#20013;&#21253;&#21547;&#21738;&#20123;&#35745;&#37327;&#21333;&#20301;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#20027;&#21015;&#34920;&#20013;&#21253;&#21547;&#21738;&#20123;&#35745;&#37327;&#21333;&#20301;&#65311;</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 &#25903;&#25345;&#21738;&#20123;&#29256;&#26412;&#30340; Microsoft Project&#65311;"><span class="mt-icon-article-none"></span>Procore &#25903;&#25345;&#21738;&#20123;&#29256;&#26412;&#30340; Microsoft Project&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-weather-providers-are-supported-by-procore" title="Procore &#25903;&#25345;&#21738;&#20123;&#22825;&#27668;&#39044;&#25253;&#25552;&#20379;&#21830;&#65311;"><span class="mt-icon-article-none"></span>Procore &#25903;&#25345;&#21738;&#20123;&#22825;&#27668;&#39044;&#25253;&#25552;&#20379;&#21830;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-web-browsers-are-supported-by-procore" title="Procore &#25903;&#25345;&#21738;&#20123; Web &#27983;&#35272;&#22120;&#65311;"><span class="mt-icon-article-none"></span>Procore &#25903;&#25345;&#21738;&#20123; Web &#27983;&#35272;&#22120;&#65311;</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="&#35841;&#21487;&#20197;&#34987;&#25351;&#23450;&#20026; RFI &#30340;&ldquo;&#20219;&#21153;&#20998;&#37197;&#23545;&#35937;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#35841;&#21487;&#20197;&#34987;&#25351;&#23450;&#20026; RFI &#30340;&ldquo;&#20219;&#21153;&#20998;&#37197;&#23545;&#35937;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-can-i-assign-a-task-to" title="&#25105;&#21487;&#20197;&#23558;&#20219;&#21153;&#20998;&#37197;&#32473;&#35841;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#23558;&#20219;&#21153;&#20998;&#37197;&#32473;&#35841;&#65311;</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="&#35841;&#21487;&#20197;&#26597;&#30475;&#39033;&#30446;&#30446;&#24405;&#20013;&#21015;&#20986;&#30340;&#29992;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#35841;&#21487;&#20197;&#26597;&#30475;&#39033;&#30446;&#30446;&#24405;&#20013;&#21015;&#20986;&#30340;&#29992;&#25143;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-can-view-a-draft-rfi" title="&#35841;&#21487;&#20197;&#26597;&#30475; RFI&ldquo;&#33609;&#31295;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#35841;&#21487;&#20197;&#26597;&#30475; RFI&ldquo;&#33609;&#31295;&rdquo;&#65311;</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="&#35841;&#21487;&#20197;&#22312;&#20813;&#36153; Procore &#36134;&#25143;&#20013;&#26597;&#30475;&#25237;&#26631;&#65311;"><span class="mt-icon-article-none"></span>&#35841;&#21487;&#20197;&#22312;&#20813;&#36153; Procore &#36134;&#25143;&#20013;&#26597;&#30475;&#25237;&#26631;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-gets-notifications-from-observations" title="&#35841;&#20250;&#25910;&#21040;&#35266;&#23519;&#20219;&#21153;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#35841;&#20250;&#25910;&#21040;&#35266;&#23519;&#20219;&#21153;&#36890;&#30693;&#65311;</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="&#21019;&#24314;&#25110;&#26356;&#26032;&#36865;&#23457;&#26102;&#35841;&#20250;&#25910;&#21040;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#21019;&#24314;&#25110;&#26356;&#26032;&#36865;&#23457;&#26102;&#35841;&#20250;&#25910;&#21040;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#35841;&#20250;&#25910;&#21040;&#22270;&#32440;&#24037;&#20855;&#20013;&#30340;&#26356;&#26032;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#35841;&#20250;&#25910;&#21040;&#22270;&#32440;&#24037;&#20855;&#20013;&#30340;&#26356;&#26032;&#36890;&#30693;&#65311;</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="&#24403;&#39033;&#34987; ERP &#25298;&#32477;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#39033;&#34987; ERP &#25298;&#32477;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-correspondence-item-emails-and-push-notifications" title="&#35841;&#20250;&#25509;&#25910;&#36890;&#20449;&#39033;&#30005;&#23376;&#37038;&#20214;&#21644;&#25512;&#36865;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#35841;&#20250;&#25509;&#25910;&#36890;&#20449;&#39033;&#30005;&#23376;&#37038;&#20214;&#21644;&#25512;&#36865;&#36890;&#30693;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-emails-about-coordination-issues" title="&#35841;&#20250;&#25910;&#21040;&#26377;&#20851;&#21327;&#35843;&#38382;&#39064;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#35841;&#20250;&#25910;&#21040;&#26377;&#20851;&#21327;&#35843;&#38382;&#39064;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#24403;&#20379;&#24212;&#21830;&#30340;&#20445;&#38505;&#21040;&#26399;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#20379;&#24212;&#21830;&#30340;&#20445;&#38505;&#21040;&#26399;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#30005;&#23376;&#37038;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-notifications-about-project-connections" title="&#35841;&#20250;&#25910;&#21040;&#26377;&#20851;&#39033;&#30446;&#36830;&#25509;&#30340;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#35841;&#20250;&#25910;&#21040;&#26377;&#20851;&#39033;&#30446;&#36830;&#25509;&#30340;&#36890;&#30693;&#65311;</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="&#20026;&#20160;&#20040;&#19979;&#36733; Procore Drive &#26102;&#20986;&#38169;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#19979;&#36733; Procore Drive &#26102;&#20986;&#38169;&#65311;</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="&#20026;&#20160;&#20040;&#22312;&#26597;&#30475;&#35748;&#35777;&#35838;&#31243;&#26102;&#20250;&#25910;&#21040;&ldquo;&#32570;&#23569;&#36523;&#20221;&#39564;&#35777; Cookie&rdquo;&#38169;&#35823;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#22312;&#26597;&#30475;&#35748;&#35777;&#35838;&#31243;&#26102;&#20250;&#25910;&#21040;&ldquo;&#32570;&#23569;&#36523;&#20221;&#39564;&#35777; Cookie&rdquo;&#38169;&#35823;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-having-problems-playing-training-videos" title="&#20026;&#20160;&#20040;&#25105;&#22312;&#25773;&#25918;&#22521;&#35757;&#35270;&#39057;&#26102;&#36935;&#21040;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#25773;&#25918;&#22521;&#35757;&#35270;&#39057;&#26102;&#36935;&#21040;&#38382;&#39064;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#27809;&#26377;&#25910;&#21040;&#26469;&#33258;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#27809;&#26377;&#25910;&#21040;&#26469;&#33258;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#20026;&#20160;&#20040;&#27809;&#26377;&#22312;&#23545;&#35805;&#24037;&#20855;&#20013;&#30475;&#21040;&#25105;&#30340;&#25152;&#26377;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#27809;&#26377;&#22312;&#23545;&#35805;&#24037;&#20855;&#20013;&#30475;&#21040;&#25105;&#30340;&#25152;&#26377;&#39033;&#30446;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#35270;&#28857;&#23548;&#20837;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25105;&#30340;&#25152;&#26377;&#35270;&#28857;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#35270;&#28857;&#23548;&#20837;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25105;&#30340;&#25152;&#26377;&#35270;&#28857;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#23558;&#25991;&#20214;&#20851;&#32852;&#21040;&#25105;&#30340;&#39033;&#30446;&#21518;&#30475;&#19981;&#21040;&#25105;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#23558;&#25991;&#20214;&#20851;&#32852;&#21040;&#25105;&#30340;&#39033;&#30446;&#21518;&#30475;&#19981;&#21040;&#25105;&#30340;&#38382;&#39064;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; Procore Imports &#24212;&#29992;&#31243;&#24207;&#20013;&#25910;&#21040;&#38169;&#35823;&#28040;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; Procore Imports &#24212;&#29992;&#31243;&#24207;&#20013;&#25910;&#21040;&#38169;&#35823;&#28040;&#24687;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-receiving-emails-from-procore" title="&#20026;&#20160;&#20040;&#20250;&#25910;&#21040; Procore &#30340;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#20250;&#25910;&#21040; Procore &#30340;&#30005;&#23376;&#37038;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-receiving-procore-emails-at-night" title="&#20026;&#20160;&#20040;&#20250;&#22312;&#26202;&#19978;&#25910;&#21040; Procore &#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#20250;&#22312;&#26202;&#19978;&#25910;&#21040; Procore &#30005;&#23376;&#37038;&#20214;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#20351;&#29992; SSO &#30331;&#24405;&#26102;&#25910;&#21040;&ldquo;&#26410;&#21457;&#29616;&#26377;&#29992;&#25143;&#20351;&#29992;&#32473;&#23450;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&rdquo;&#38169;&#35823;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#20351;&#29992; SSO &#30331;&#24405;&#26102;&#25910;&#21040;&ldquo;&#26410;&#21457;&#29616;&#26377;&#29992;&#25143;&#20351;&#29992;&#32473;&#23450;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&rdquo;&#38169;&#35823;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#20174; Procore &#19979;&#36733;&#21644;&#25171;&#24320; .ZIP &#25991;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#20174; Procore &#19979;&#36733;&#21644;&#25171;&#24320; .ZIP &#25991;&#20214;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#30331;&#24405; Procore &#35748;&#35777;&#32593;&#31449;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#30331;&#24405; Procore &#35748;&#35777;&#32593;&#31449;&#65311;</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="&#20026;&#20160;&#20040;&#26080;&#27861;&#23558;&#29992;&#25143;&#20998;&#37197;&#21040; RFQ&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#26080;&#27861;&#23558;&#29992;&#25143;&#20998;&#37197;&#21040; RFQ&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-automatic-drawing-sheet-links-missing" title="&#20026;&#20160;&#20040;&#33258;&#21160;&#22270;&#32440;&#39029;&#38142;&#25509;&#20002;&#22833;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#33258;&#21160;&#22270;&#32440;&#39029;&#38142;&#25509;&#20002;&#22833;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#26126;&#32454;&#39033;&#22312;&#25105;&#30340;&#20998;&#21253;&#21830;&#21457;&#31080;&#19978;&#37325;&#22797;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#26126;&#32454;&#39033;&#22312;&#25105;&#30340;&#20998;&#21253;&#21830;&#21457;&#31080;&#19978;&#37325;&#22797;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#35838;&#31243;&#26410;&#26174;&#31034;&#22312; Procore &#35748;&#35777;&#36164;&#26009;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#35838;&#31243;&#26410;&#26174;&#31034;&#22312; Procore &#35748;&#35777;&#36164;&#26009;&#20013;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-drawing-comparisons-failing" title="&#20026;&#20160;&#20040;&#25105;&#30340;&#22270;&#32440;&#23545;&#27604;&#22833;&#36133;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#22270;&#32440;&#23545;&#27604;&#22833;&#36133;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-drawing-uploads-failing" title="&#20026;&#20160;&#20040;&#25105;&#30340;&#22270;&#32440;&#19978;&#20256;&#22833;&#36133;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#22270;&#32440;&#19978;&#20256;&#22833;&#36133;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-file-uploads-failing" title="&#20026;&#20160;&#20040;&#25105;&#30340;&#25991;&#20214;&#19978;&#20256;&#22833;&#36133;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#25991;&#20214;&#19978;&#20256;&#22833;&#36133;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-specification-uploads-failing" title="&#20026;&#20160;&#20040;&#25105;&#30340;&#35268;&#33539;&#19978;&#20256;&#22833;&#36133;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#35268;&#33539;&#19978;&#20256;&#22833;&#36133;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-training-courses-missing" title="&#20026;&#20160;&#20040;&#25105;&#30340;&#22521;&#35757;&#35838;&#31243;&#19981;&#35265;&#20102;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#22521;&#35757;&#35838;&#31243;&#19981;&#35265;&#20102;&#65311;</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="&#20026;&#20160;&#20040; Procore &#20013;&#32570;&#23569;&#23545; Sage &#25968;&#25454;&#24211;&#30340;&#26368;&#36817;&#26356;&#25913;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; Procore &#20013;&#32570;&#23569;&#23545; Sage &#25968;&#25454;&#24211;&#30340;&#26368;&#36817;&#26356;&#25913;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#25237;&#26631;&#20154;&#19979;&#36733;[&#25237;&#26631;&#25991;&#20214;]&#25991;&#20214;&#22841;&#20013;&#30340;&#23376;&#25991;&#20214;&#22841;&#26102;&#65292;&#26576;&#20123;&#23376;&#25991;&#20214;&#22841;&#27809;&#26377;&#26174;&#31034;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#25237;&#26631;&#20154;&#19979;&#36733;[&#25237;&#26631;&#25991;&#20214;]&#25991;&#20214;&#22841;&#20013;&#30340;&#23376;&#25991;&#20214;&#22841;&#26102;&#65292;&#26576;&#20123;&#23376;&#25991;&#20214;&#22841;&#27809;&#26377;&#26174;&#31034;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#24037;&#20316;&#26085;&#24535;&#22825;&#27668;&#26085;&#24535;&#20013;&#19981;&#26174;&#31034;&#22825;&#27668;&#26465;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#24037;&#20316;&#26085;&#24535;&#22825;&#27668;&#26085;&#24535;&#20013;&#19981;&#26174;&#31034;&#22825;&#27668;&#26465;&#20214;&#65311;</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="&#20026;&#20160;&#20040;&#22312;&#20351;&#29992;&#26631;&#35760;&#24037;&#20855;&#21518;&#20250;&#21019;&#24314;&#35270;&#28857;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#22312;&#20351;&#29992;&#26631;&#35760;&#24037;&#20855;&#21518;&#20250;&#21019;&#24314;&#35270;&#28857;&#65311;</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="&#22914;&#26524;&#26080;&#27861;&#26597;&#30475;&#20027;&#21512;&#21516;&#65292;&#20026;&#20160;&#20040;&#21487;&#20197;&#35775;&#38382;&#20027;&#21512;&#21516;&#24037;&#20855;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#26080;&#27861;&#26597;&#30475;&#20027;&#21512;&#21516;&#65292;&#20026;&#20160;&#20040;&#21487;&#20197;&#35775;&#38382;&#20027;&#21512;&#21516;&#24037;&#20855;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#21487;&#20197;&#26597;&#30475;&#21512;&#32422;&#24037;&#20855;&#20294;&#30475;&#19981;&#21040;&#20219;&#20309;&#21512;&#32422;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#21487;&#20197;&#26597;&#30475;&#21512;&#32422;&#24037;&#20855;&#20294;&#30475;&#19981;&#21040;&#20219;&#20309;&#21512;&#32422;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#23558; Procore &#24037;&#20855;&#28155;&#21152;&#21040;&#25910;&#34255;&#22841;&#21015;&#34920;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#23558; Procore &#24037;&#20855;&#28155;&#21152;&#21040;&#25910;&#34255;&#22841;&#21015;&#34920;&#20013;&#65311;</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="&#20026;&#20160;&#20040;&#19981;&#33021;&#26356;&#25913;&#22825;&#27668;&#23548;&#33268;&#30340;&#24310;&#35823;&#25110;&#35813;&#34892;&#19978;&#30340;&#20219;&#20309;&#26694;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#19981;&#33021;&#26356;&#25913;&#22825;&#27668;&#23548;&#33268;&#30340;&#24310;&#35823;&#25110;&#35813;&#34892;&#19978;&#30340;&#20219;&#20309;&#26694;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-a-change-order" title="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312;&#20250;&#35758;&#24037;&#20855;&#20013;&#21019;&#24314;&#21518;&#32493;&#20250;&#35758;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312;&#20250;&#35758;&#24037;&#20855;&#20013;&#21019;&#24314;&#21518;&#32493;&#20250;&#35758;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-or-activate-procore-projects" title="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#25110;&#28608;&#27963; Procore &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#25110;&#28608;&#27963; Procore &#39033;&#30446;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-wbs-custom-segments" title="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21019;&#24314; WBS &#33258;&#23450;&#20041;&#32454;&#20998;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21019;&#24314; WBS &#33258;&#23450;&#20041;&#32454;&#20998;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312; WBS &#20013;&#20572;&#29992;&#25104;&#26412;&#31867;&#22411;&#12289;&#25104;&#26412;&#32534;&#21495;&#25110;&#23376;&#20316;&#19994;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312; WBS &#20013;&#20572;&#29992;&#25104;&#26412;&#31867;&#22411;&#12289;&#25104;&#26412;&#32534;&#21495;&#25110;&#23376;&#20316;&#19994;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21024;&#38500;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#30340;&#26576;&#20123;&#20445;&#23384;&#30340;&#35270;&#22270;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21024;&#38500;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#30340;&#26576;&#20123;&#20445;&#23384;&#30340;&#35270;&#22270;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-delete-items-in-procore" title="&#20026;&#20160;&#20040;&#19981;&#33021;&#22312; Procore &#20013;&#21024;&#38500;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#19981;&#33021;&#22312; Procore &#20013;&#21024;&#38500;&#39033;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#32534;&#36753;&#25110;&#21024;&#38500;&ldquo;&#33719;&#25209;&rdquo;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#32534;&#36753;&#25110;&#21024;&#38500;&ldquo;&#33719;&#25209;&rdquo;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#23637;&#24320;&ldquo;&#20013;&#26631;&#20540;&rdquo;&#34892;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#23637;&#24320;&ldquo;&#20013;&#26631;&#20540;&rdquo;&#34892;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#20174;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#23548;&#20986;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#20174;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#23548;&#20986;&#39033;&#30446;&#65311;</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="&#20026;&#20160;&#20040;&#26080;&#27861;&#30331;&#24405;&#35748;&#35777;&#20998;&#26512;&#20202;&#34920;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#26080;&#27861;&#30331;&#24405;&#35748;&#35777;&#20998;&#26512;&#20202;&#34920;&#26495;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#30331;&#24405;&ldquo;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&rdquo;&#21644;&ldquo;&#36164;&#37329;&#35268;&#21010;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#30331;&#24405;&ldquo;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&rdquo;&#21644;&ldquo;&#36164;&#37329;&#35268;&#21010;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-receive-email-from-procore" title="&#20026;&#20160;&#20040;&#25910;&#19981;&#21040; Procore &#30340;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25910;&#19981;&#21040; Procore &#30340;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#39033;&#30446;&#20013;&#30475;&#19981;&#21040;&#25152;&#26377;&#25910;&#34255;&#30340;&#24037;&#20855;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#39033;&#30446;&#20013;&#30475;&#19981;&#21040;&#25152;&#26377;&#25910;&#34255;&#30340;&#24037;&#20855;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#35748;&#35777;&#20998;&#26512;&#20013;&#30475;&#19981;&#21040;&#25105;&#30340;&#26576;&#20301;&#29992;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#35748;&#35777;&#20998;&#26512;&#20013;&#30475;&#19981;&#21040;&#25105;&#30340;&#26576;&#20301;&#29992;&#25143;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30475;&#19981;&#21040;&#25237;&#26631;&#23460;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30475;&#19981;&#21040;&#25237;&#26631;&#23460;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30475;&#19981;&#21040;&#21512;&#21516;&#23460;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30475;&#19981;&#21040;&#21512;&#21516;&#23460;&#65311;</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="&#20026;&#20160;&#20040;&#22312;&ldquo;&#25105;&#30340;&#20010;&#20154;&#36164;&#26009;&#35774;&#32622;&rdquo;&#20013;&#30475;&#19981;&#21040;&ldquo;&#25910;&#34255;&#22841;&rdquo;&#26631;&#31614;&#39029;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#22312;&ldquo;&#25105;&#30340;&#20010;&#20154;&#36164;&#26009;&#35774;&#32622;&rdquo;&#20013;&#30475;&#19981;&#21040;&ldquo;&#25910;&#34255;&#22841;&rdquo;&#26631;&#31614;&#39029;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&ldquo;&#21516;&#27493;&rdquo;&#25110;&ldquo;&#21047;&#26032;&rdquo;&#25353;&#38062;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&ldquo;&#21516;&#27493;&rdquo;&#25110;&ldquo;&#21047;&#26032;&rdquo;&#25353;&#38062;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#20851;&#38381;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#30340;&#26576;&#20123;&#25991;&#26723;&quot;&#31867;&#22411;&quot;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#20851;&#38381;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#30340;&#26576;&#20123;&#25991;&#26723;&quot;&#31867;&#22411;&quot;&#65311;</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="&#20026;&#20160;&#20040;&#26080;&#27861;&#20851;&#38381;&#20174;&#36865;&#23457;&#24037;&#20855;&#21457;&#36865;&#30340;&ldquo;&#24453;&#21150;&#20107;&#39033;&rdquo;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#26080;&#27861;&#20851;&#38381;&#20174;&#36865;&#23457;&#24037;&#20855;&#21457;&#36865;&#30340;&ldquo;&#24453;&#21150;&#20107;&#39033;&rdquo;&#30005;&#23376;&#37038;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-update-my-procore-app-ios" title="&#20026;&#20160;&#20040;&#26080;&#27861;&#26356;&#26032;&#25105;&#30340; Procore &#24212;&#29992;&#31243;&#24207;&#65311;(iOS)"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#26080;&#27861;&#26356;&#26032;&#25105;&#30340; Procore &#24212;&#29992;&#31243;&#24207;&#65311;(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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312; Navisworks&reg; &#20013;&#20351;&#29992;&#20113;&#32418;&#32447;&#24037;&#20855;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312; Navisworks&reg; &#20013;&#20351;&#29992;&#20113;&#32418;&#32447;&#24037;&#20855;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#22242;&#38431;&#25104;&#21592;&#26080;&#27861;&#26597;&#30475;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#22242;&#38431;&#25104;&#21592;&#26080;&#27861;&#26597;&#30475;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#39033;&#30446;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#20379;&#24212;&#21830;&#26080;&#27861;&#35775;&#38382;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#20379;&#24212;&#21830;&#26080;&#27861;&#35775;&#38382;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#27809;&#26377;&#25910;&#21040;&#36865;&#23457;&#30340;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#27809;&#26377;&#25910;&#21040;&#36865;&#23457;&#30340;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;</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="&#20026;&#20160;&#20040; Procore &#20174; procoretech.com &#25913;&#20026; app.procore.com&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; Procore &#20174; procoretech.com &#25913;&#20026; app.procore.com&#65311;</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="&#20026;&#20160;&#20040; Procore &#20572;&#27490;&#25903;&#25345;&#26087;&#29256;&#26412;&#30340; iOS &#21644; Android&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; Procore &#20572;&#27490;&#25903;&#25345;&#26087;&#29256;&#26412;&#30340; iOS &#21644; Android&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#38656;&#35201;&#30331;&#24405; Procore &#30340;&#25903;&#25345;&#32593;&#31449;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#38656;&#35201;&#30331;&#24405; Procore &#30340;&#25903;&#25345;&#32593;&#31449;&#65311;</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="&#25105;&#20026;&#20160;&#20040;&#27809;&#26377;&#26597;&#30475;&#27492;&#32593;&#39029;&#30340;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#20026;&#20160;&#20040;&#27809;&#26377;&#26597;&#30475;&#27492;&#32593;&#39029;&#30340;&#26435;&#38480;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#23581;&#35797;&#23558;&#25968;&#25454;&#23548;&#20986;&#21040; Sage 300 CRE &#26102;&#30475;&#21040;&#38169;&#35823;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#23581;&#35797;&#23558;&#25968;&#25454;&#23548;&#20986;&#21040; Sage 300 CRE &#26102;&#30475;&#21040;&#38169;&#35823;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#33021;&#22312;&#21171;&#21160;&#21147;&#35268;&#21010;&#20013;&#30475;&#21040;&#20154;&#21592;&#65292;&#22312; Procore &#20013;&#21364;&#19981;&#33021;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#33021;&#22312;&#21171;&#21160;&#21147;&#35268;&#21010;&#20013;&#30475;&#21040;&#20154;&#21592;&#65292;&#22312; Procore &#20013;&#21364;&#19981;&#33021;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#26080;&#26435;&#26597;&#30475;&#36164;&#28304;&#35268;&#21010;&#24037;&#20855;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#26435;&#26597;&#30475;&#36164;&#28304;&#35268;&#21010;&#24037;&#20855;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#20204;&#39033;&#30446;&#30340;&#26576;&#20123; RFI &#32534;&#21495;&#26377;&#20004;&#20010;&#21069;&#32512;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#20204;&#39033;&#30446;&#30340;&#26576;&#20123; RFI &#32534;&#21495;&#26377;&#20004;&#20010;&#21069;&#32512;&#65311;</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="&#27979;&#35797;&#29256;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;"><span class="mt-icon-article-none"></span>&#27979;&#35797;&#29256;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;</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="&#20026;&#20160;&#20040;&#22312;&#25105;&#30340; LinkedIn &#20010;&#20154;&#36164;&#26009;&#20013;&#23558;&ldquo;Procore&rdquo;&#20316;&#20026;&#21487;&#35748;&#21487;&#30340;&#25216;&#33021;&#24456;&#26377;&#20215;&#20540;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#22312;&#25105;&#30340; LinkedIn &#20010;&#20154;&#36164;&#26009;&#20013;&#23558;&ldquo;Procore&rdquo;&#20316;&#20026;&#21487;&#35748;&#21487;&#30340;&#25216;&#33021;&#24456;&#26377;&#20215;&#20540;&#65311;</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="&#20026;&#20160;&#20040; Planroom &#20013;&#27809;&#26377;&#25105;&#30340;&#25237;&#26631;&#25991;&#20214;&#21253;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; Planroom &#20013;&#27809;&#26377;&#25105;&#30340;&#25237;&#26631;&#25991;&#20214;&#21253;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-certification-analytics-page-blank" title="&#20026;&#20160;&#20040;&#25105;&#30340;&#35748;&#35777;&#20998;&#26512;&#39029;&#38754;&#26159;&#31354;&#30333;&#30340;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#35748;&#35777;&#20998;&#26512;&#39029;&#38754;&#26159;&#31354;&#30333;&#30340;&#65311;</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="&#20026;&#20160;&#20040;&#27809;&#26377;&#37197;&#32622;&#20581;&#24247;&#20202;&#34920;&#26495;&#30340;&#36130;&#21153;&#20581;&#24247;&#37096;&#20998;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#27809;&#26377;&#37197;&#32622;&#20581;&#24247;&#20202;&#34920;&#26495;&#30340;&#36130;&#21153;&#20581;&#24247;&#37096;&#20998;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-form-template-not-loading" title="&#20026;&#20160;&#20040;&#25105;&#30340;&#34920;&#21333;&#27169;&#26495;&#27809;&#26377;&#21152;&#36733;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#34920;&#21333;&#27169;&#26495;&#27809;&#26377;&#21152;&#36733;&#65311;</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="&#20026;&#20160;&#20040;&ldquo;&#25105;&#30340;&#26410;&#23436;&#25104;&#39033;&rdquo;&#21015;&#34920;&#19981;&#26174;&#31034;&#24050;&#20998;&#37197;&#32473;&#25105;&#30340;&#20219;&#21153;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&ldquo;&#25105;&#30340;&#26410;&#23436;&#25104;&#39033;&rdquo;&#21015;&#34920;&#19981;&#26174;&#31034;&#24050;&#20998;&#37197;&#32473;&#25105;&#30340;&#20219;&#21153;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-procore-certified-certificate-missing" title="&#20026;&#20160;&#20040;&#25105;&#30340; Procore &#35748;&#35777;&#35777;&#20070;&#32570;&#22833;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340; Procore &#35748;&#35777;&#35777;&#20070;&#32570;&#22833;&#65311;</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="&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-sage-data-not-syncing" title="&#20026;&#20160;&#20040;&#25105;&#30340; Sage 300 CRE &#25968;&#25454;&#19981;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340; Sage 300 CRE &#25968;&#25454;&#19981;&#21516;&#27493;&#65311;</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="&#20026;&#20160;&#20040;&#22312; Procore &#20013;&#26597;&#30475;&#27169;&#22411;&#26102;&#65292;&#27169;&#22411;&#19981;&#26174;&#31034;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#22312; Procore &#20013;&#26597;&#30475;&#27169;&#22411;&#26102;&#65292;&#27169;&#22411;&#19981;&#26174;&#31034;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-isnt-my-project-weather-working" title="&#20026;&#20160;&#20040;&#25105;&#30340;&#39033;&#30446;&#22825;&#27668;&#23567;&#37096;&#20214;&#19981;&#24037;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#39033;&#30446;&#22825;&#27668;&#23567;&#37096;&#20214;&#19981;&#24037;&#20316;&#65311;</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="&#20026;&#20160;&#20040;&#39044;&#31639;&#20013;&#30340;&ldquo;&#24320;&#24037;&#33267;&#20170;&#25104;&#26412;&rdquo;&#21015;&#19982;&#20998;&#21253;&#21830;&#21457;&#31080;&#37329;&#39069;&#19981;&#19968;&#33268;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#39044;&#31639;&#20013;&#30340;&ldquo;&#24320;&#24037;&#33267;&#20170;&#25104;&#26412;&rdquo;&#21015;&#19982;&#20998;&#21253;&#21830;&#21457;&#31080;&#37329;&#39069;&#19981;&#19968;&#33268;&#65311;</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="&#20026;&#20160;&#20040;&#39033;&#30446;&#30340;&#39044;&#31639;&#35270;&#22270;&#27809;&#26377;&#21453;&#26144;&#32771;&#21220;&#21345;&#26465;&#30446;&#20013;&#30340;&#20154;&#24037;&#25104;&#26412;&#21644;&#29983;&#20135;&#25968;&#37327;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#39033;&#30446;&#30340;&#39044;&#31639;&#35270;&#22270;&#27809;&#26377;&#21453;&#26144;&#32771;&#21220;&#21345;&#26465;&#30446;&#20013;&#30340;&#20154;&#24037;&#25104;&#26412;&#21644;&#29983;&#20135;&#25968;&#37327;&#65311;</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="&#20026;&#20160;&#20040;&quot;&#28155;&#21152;&#35270;&#35273;&#20803;&#32032;&quot;&#25353;&#38062;&#22312;&#21333;&#20010;&#24037;&#20855;&#25253;&#21578;&#19978;&#19981;&#21487;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&quot;&#28155;&#21152;&#35270;&#35273;&#20803;&#32032;&quot;&#25353;&#38062;&#22312;&#21333;&#20010;&#24037;&#20855;&#25253;&#21578;&#19978;&#19981;&#21487;&#29992;&#65311;</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="&#20026;&#20160;&#20040;&#21024;&#38500;&#25353;&#38062;&#22312; Procore Drive &#30340;&#36827;&#24230;&#35745;&#21010;&#24037;&#20855;&#20013;&#21464;&#26263;&#19988;&#19981;&#21487;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#21024;&#38500;&#25353;&#38062;&#22312; Procore Drive &#30340;&#36827;&#24230;&#35745;&#21010;&#24037;&#20855;&#20013;&#21464;&#26263;&#19988;&#19981;&#21487;&#29992;&#65311;</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="&#20026;&#20160;&#20040; Procore &#35748;&#35777;&#35838;&#31243;&#30340;&#23436;&#25104;&#30334;&#20998;&#27604;&#20302;&#20110; 100%&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; Procore &#35748;&#35777;&#35838;&#31243;&#30340;&#23436;&#25104;&#30334;&#20998;&#27604;&#20302;&#20110; 100%&#65311;</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="&#20026;&#20160;&#20040; Procore Drive &#26700;&#38754;&#24555;&#25463;&#26041;&#24335;&#19981;&#36215;&#20316;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; Procore Drive &#26700;&#38754;&#24555;&#25463;&#26041;&#24335;&#19981;&#36215;&#20316;&#29992;&#65311;</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="&#20026;&#20160;&#20040;&ldquo;&#21457;&#36865;&#21040; ERP&rdquo;&#25353;&#38062;&#21464;&#26263;&#24182;&#19988;&#22312;&#39033;&#30446;&#21019;&#24314;&#21161;&#25163;&#20013;&#19981;&#21487;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&ldquo;&#21457;&#36865;&#21040; ERP&rdquo;&#25353;&#38062;&#21464;&#26263;&#24182;&#19988;&#22312;&#39033;&#30446;&#21019;&#24314;&#21161;&#25163;&#20013;&#19981;&#21487;&#29992;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-was-the-procore-fundamentals-training-course-deprecated" title="&#20026;&#20160;&#20040;&ldquo;Procore &#22522;&#30784;&#30693;&#35782;&rdquo;&#22521;&#35757;&#35838;&#31243;&#34987;&#24323;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&ldquo;Procore &#22522;&#30784;&#30693;&#35782;&rdquo;&#22521;&#35757;&#35838;&#31243;&#34987;&#24323;&#29992;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-were-the-deep-dive-training-courses-deprecated" title="&#20026;&#20160;&#20040;&ldquo;&#28145;&#20837;&#30740;&#31350;&#22521;&#35757;&rdquo;&#35838;&#31243;&#34987;&#24323;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&ldquo;&#28145;&#20837;&#30740;&#31350;&#22521;&#35757;&rdquo;&#35838;&#31243;&#34987;&#24323;&#29992;&#65311;</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="&#20026;&#20160;&#20040;&#31227;&#21160;&#24037;&#20855;&#37197;&#32622;&#12289;&#29992;&#25143;&#20351;&#29992;&#24773;&#20917;&#21644;&#25968;&#25454;&#36136;&#37327;&#25253;&#21578;&#39029;&#38754;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#31227;&#21160;&#24037;&#20855;&#37197;&#32622;&#12289;&#29992;&#25143;&#20351;&#29992;&#24773;&#20917;&#21644;&#25968;&#25454;&#36136;&#37327;&#25253;&#21578;&#39029;&#38754;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-wont-the-resource-planning-tool-load" title="&#20026;&#20160;&#20040;&#36164;&#28304;&#35268;&#21010;&#24037;&#20855;&#19981;&#21152;&#36733;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#36164;&#28304;&#35268;&#21010;&#24037;&#20855;&#19981;&#21152;&#36733;&#65311;</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="&#20026;&#20160;&#20040; Procore &#20013;&#27169;&#22411;&#30340;&#25991;&#20214;&#22823;&#23567;&#20250;&#22686;&#21152;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; Procore &#20013;&#27169;&#22411;&#30340;&#25991;&#20214;&#22823;&#23567;&#20250;&#22686;&#21152;&#65311;</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="&#25237;&#26631;&#23460;&#20013;&#30340;&#26085;&#26399;&#26159;&#21542;&#20250;&#28155;&#21152;&#21040;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#37324;&#31243;&#30865;&#65311;"><span class="mt-icon-article-none"></span>&#25237;&#26631;&#23460;&#20013;&#30340;&#26085;&#26399;&#26159;&#21542;&#20250;&#28155;&#21152;&#21040;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#37324;&#31243;&#30865;&#65311;</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 &#20250;&#23558;&#25105;&#30340;&#19981;&#21487;&#22635;&#20889; PDF &#36716;&#25442;&#20026;&#21487;&#22635;&#20889; PDF &#21527;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20250;&#23558;&#25105;&#30340;&#19981;&#21487;&#22635;&#20889; PDF &#36716;&#25442;&#20026;&#21487;&#22635;&#20889; PDF &#21527;&#65311;</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="&#25105;&#21487;&#20197;&#31163;&#32447;&#35775;&#38382;&#34920;&#21333;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#31163;&#32447;&#35775;&#38382;&#34920;&#21333;&#21527;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-enforce-required-fields-in-a-form" title="&#25105;&#33021;&#21542;&#22312;&#34920;&#21333;&#20013;&#24378;&#21046;&#25191;&#34892;&#24517;&#22635;&#23383;&#27573;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312;&#34920;&#21333;&#20013;&#24378;&#21046;&#25191;&#34892;&#24517;&#22635;&#23383;&#27573;&#65311;</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="&#25105;&#21487;&#20197;&#22312;&#25105;&#30340;&#31227;&#21160;&#35774;&#22791;&#19978;&#22635;&#20889;&#34920;&#21333;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312;&#25105;&#30340;&#31227;&#21160;&#35774;&#22791;&#19978;&#22635;&#20889;&#34920;&#21333;&#21527;&#65311;</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="&#25105;&#33021;&#21542;&#22312; Procore Web &#29256;&#19978;&#22635;&#20889;&#34920;&#21333;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312; Procore Web &#29256;&#19978;&#22635;&#20889;&#34920;&#21333;&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#21487;&#22635;&#20889; PDF &#34920;&#21333;&#20013;&#21253;&#21547;&#24517;&#22635;&#23383;&#27573;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312;&#21487;&#22635;&#20889; PDF &#34920;&#21333;&#20013;&#21253;&#21547;&#24517;&#22635;&#23383;&#27573;&#65311;</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="&#25105;&#21487;&#20197;&#22312;&#21487;&#22635;&#20889;&#30340; PDF &#20013;&#21253;&#21547;&#31614;&#21517;&#23383;&#27573;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312;&#21487;&#22635;&#20889;&#30340; PDF &#20013;&#21253;&#21547;&#31614;&#21517;&#23383;&#27573;&#21527;&#65311;</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="&#25105;&#33021;&#21542;&#25253;&#21578;&#34920;&#21333;&#24037;&#20855;&#20013;&#30340;&#20869;&#23481;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#25253;&#21578;&#34920;&#21333;&#24037;&#20855;&#20013;&#30340;&#20869;&#23481;&#65311;</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="&#25105;&#33021;&#21542;&#25628;&#32034;&#21487;&#22635;&#20889; PDF &#30340;&#20869;&#23481;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#25628;&#32034;&#21487;&#22635;&#20889; PDF &#30340;&#20869;&#23481;&#65311;</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="&#25105;&#33021;&#21542;&#19978;&#20256;&#21463;&#23494;&#30721;&#20445;&#25252;&#30340;&#21487;&#22635;&#20889; PDF&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#19978;&#20256;&#21463;&#23494;&#30721;&#20445;&#25252;&#30340;&#21487;&#22635;&#20889; PDF&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#22914;&#20309;&#22312;&#39033;&#30446;&#34920;&#21333;&#24037;&#20855;&#20013;&#20351;&#29992; Procore &#30340;&#21160;&#28779;&#20316;&#19994;&#35768;&#21487; PDF&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#39033;&#30446;&#34920;&#21333;&#24037;&#20855;&#20013;&#20351;&#29992; Procore &#30340;&#21160;&#28779;&#20316;&#19994;&#35768;&#21487; PDF&#65311;</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="&#22914;&#20309;&#22312;&#39033;&#30446;&#34920;&#21333;&#24037;&#20855;&#20013;&#20351;&#29992; Procore &#30340;&#20316;&#19994;&#21361;&#23475;&#20998;&#26512; PDF&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#39033;&#30446;&#34920;&#21333;&#24037;&#20855;&#20013;&#20351;&#29992; Procore &#30340;&#20316;&#19994;&#21361;&#23475;&#20998;&#26512; PDF&#65311;</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="&#22914;&#20309;&#22312;&#39033;&#30446;&#34920;&#21333;&#24037;&#20855;&#20013;&#20351;&#29992; Procore &#30340; Toolbox Talk Sign-In PDF&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#39033;&#30446;&#34920;&#21333;&#24037;&#20855;&#20013;&#20351;&#29992; Procore &#30340; Toolbox Talk Sign-In PDF&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-create-a-fillable-pdf" title="&#22914;&#20309;&#21019;&#24314;&#21487;&#22635;&#20889; PDF&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21019;&#24314;&#21487;&#22635;&#20889; PDF&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-file-types-does-the-forms-tool-support" title="&#34920;&#21333;&#24037;&#20855;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#34920;&#21333;&#24037;&#20855;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#31867;&#22411;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-fillable-pdf" title="&#20160;&#20040;&#26159;&#21487;&#22635;&#20889; PDF&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21487;&#22635;&#20889; PDF&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;</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="&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-form-template-not-loading" title="&#20026;&#20160;&#20040;&#25105;&#30340;&#34920;&#21333;&#27169;&#26495;&#27809;&#26377;&#21152;&#36733;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#34920;&#21333;&#27169;&#26495;&#27809;&#26377;&#21152;&#36733;&#65311;</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 &#20250;&#23558;&#25105;&#30340;&#19981;&#21487;&#22635;&#20889; PDF &#36716;&#25442;&#20026;&#21487;&#22635;&#20889; PDF &#21527;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20250;&#23558;&#25105;&#30340;&#19981;&#21487;&#22635;&#20889; PDF &#36716;&#25442;&#20026;&#21487;&#22635;&#20889; PDF &#21527;&#65311;</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="&#22914;&#20309;&#21028;&#26029;&#25105;&#26377;&#20813;&#36153;&#36824;&#26159;&#20184;&#36153; Procore &#20844;&#21496;&#36134;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029;&#25105;&#26377;&#20813;&#36153;&#36824;&#26159;&#20184;&#36153; Procore &#20844;&#21496;&#36134;&#25143;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-permissions-work-for-free-procore-accounts" title="&#20813;&#36153; Procore &#36134;&#25143;&#30340;&#26435;&#38480;&#22914;&#20309;&#24037;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#20813;&#36153; Procore &#36134;&#25143;&#30340;&#26435;&#38480;&#22914;&#20309;&#24037;&#20316;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-changes-when-companies-upgrade-to-paid-accounts" title="&#20844;&#21496;&#21319;&#32423;&#21040;&#20184;&#36153;&#36134;&#25143;&#20250;&#21457;&#29983;&#20160;&#20040;&#21464;&#21270;&#65311;"><span class="mt-icon-article-none"></span>&#20844;&#21496;&#21319;&#32423;&#21040;&#20184;&#36153;&#36134;&#25143;&#20250;&#21457;&#29983;&#20160;&#20040;&#21464;&#21270;&#65311;</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="&#25509;&#21463; Procore &#36992;&#35831;&#21644;&#21019;&#24314;&#20813;&#36153; Procore &#20844;&#21496;&#36134;&#25143;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#25509;&#21463; Procore &#36992;&#35831;&#21644;&#21019;&#24314;&#20813;&#36153; Procore &#20844;&#21496;&#36134;&#25143;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#35841;&#21487;&#20197;&#22312;&#20813;&#36153; Procore &#36134;&#25143;&#20013;&#26597;&#30475;&#25237;&#26631;&#65311;"><span class="mt-icon-article-none"></span>&#35841;&#21487;&#20197;&#22312;&#20813;&#36153; Procore &#36134;&#25143;&#20013;&#26597;&#30475;&#25237;&#26631;&#65311;</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="&#25105;&#30340;&#20844;&#21496;&#22914;&#20309;&#36890;&#36807; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#25509;&#25910;&#25237;&#26631;&#36992;&#35831;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#30340;&#20844;&#21496;&#22914;&#20309;&#36890;&#36807; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#25509;&#25910;&#25237;&#26631;&#36992;&#35831;&#65311;</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="&#19978;&#28216;&#21327;&#20316;&#32773;&#21487;&#20197;&#22312;&#21738;&#19968;&#23618;&#25209;&#20934;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;"><span class="mt-icon-article-none"></span>&#19978;&#28216;&#21327;&#20316;&#32773;&#21487;&#20197;&#22312;&#21738;&#19968;&#23618;&#25209;&#20934;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;</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="&#25105;&#21487;&#20197;&#22312;&#19979;&#28216;&#21327;&#20316;&#32773;&#21709;&#24212;&#21464;&#26356;&#20107;&#20214;&#30340; RFQ &#20043;&#21069;&#20026;&#21512;&#21516;&#25110;&#36164;&#37329;&#21019;&#24314;&#21464;&#26356;&#36890;&#30693;&#21333;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312;&#19979;&#28216;&#21327;&#20316;&#32773;&#21709;&#24212;&#21464;&#26356;&#20107;&#20214;&#30340; RFQ &#20043;&#21069;&#20026;&#21512;&#21516;&#25110;&#36164;&#37329;&#21019;&#24314;&#21464;&#26356;&#36890;&#30693;&#21333;&#21527;&#65311;</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="&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;</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="&#22914;&#26524; CSV &#20855;&#26377;&#31354;&#30333;&#20540;&#65292;&#25105;&#33021;&#21542;&#23558;&#20854;&#23548;&#20837;&#21040;&#39033;&#30446;&#36130;&#21153;&#31649;&#29702;&#24037;&#20855;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524; CSV &#20855;&#26377;&#31354;&#30333;&#20540;&#65292;&#25105;&#33021;&#21542;&#23558;&#20854;&#23548;&#20837;&#21040;&#39033;&#30446;&#36130;&#21153;&#31649;&#29702;&#24037;&#20855;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&#20013;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#22914;&#20309;&#22312; Procore &#39033;&#30446;&#20013;&#20351;&#29992;&#31246;&#21153;&#20195;&#30721;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#39033;&#30446;&#20013;&#20351;&#29992;&#31246;&#21153;&#20195;&#30721;&#65311;</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 &#22914;&#20309;&#33258;&#21160;&#23436;&#25104;&#19978;&#28216; &#21457;&#31080;&#19978;&#30340;&#37329;&#39069;&#65311; &#65288;&#26087;&#29256;&#65289;"><span class="mt-icon-article-none"></span>Procore &#22914;&#20309;&#33258;&#21160;&#23436;&#25104;&#19978;&#28216; &#21457;&#31080;&#19978;&#30340;&#37329;&#39069;&#65311; &#65288;&#26087;&#29256;&#65289;</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 &#22914;&#20309;&#35745;&#31639;&#21457;&#31080;&#30340;&ldquo;&#24403;&#21069;&#21040;&#26399;&#24212;&#20184;&#27454;&rdquo;&#37329;&#39069;&#65311;"><span class="mt-icon-article-none"></span>Procore &#22914;&#20309;&#35745;&#31639;&#21457;&#31080;&#30340;&ldquo;&#24403;&#21069;&#21040;&#26399;&#24212;&#20184;&#27454;&rdquo;&#37329;&#39069;&#65311;</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="&#24403;&#25105;&#20844;&#21496; Procore &#36134;&#25143;&#31105;&#29992;&#23458;&#25143;&#21512;&#21516;&#12289;&#36164;&#37329;&#25110;&#20027;&#21512;&#21516;&#24037;&#20855;&#26102;&#65292;&#25105;&#33021;&#22914;&#20309;&#35843;&#25972;&#39044;&#31639;&#35270;&#22270;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#25105;&#20844;&#21496; Procore &#36134;&#25143;&#31105;&#29992;&#23458;&#25143;&#21512;&#21516;&#12289;&#36164;&#37329;&#25110;&#20027;&#21512;&#21516;&#24037;&#20855;&#26102;&#65292;&#25105;&#33021;&#22914;&#20309;&#35843;&#25972;&#39044;&#31639;&#35270;&#22270;&#65311;</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="&#22914;&#20309;&#20026; mailto &#38142;&#25509;&#26356;&#25913;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#30340;&#40664;&#35748;&#30005;&#23376;&#37038;&#20214;&#23458;&#25143;&#31471;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026; mailto &#38142;&#25509;&#26356;&#25913;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#30340;&#40664;&#35748;&#30005;&#23376;&#37038;&#20214;&#23458;&#25143;&#31471;&#65311;</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="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#37096;&#20998;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#37096;&#20998;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</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 &#30340;&#40664;&#35748;&#21464;&#26356;&#31867;&#22411;&#21644;&#21464;&#26356;&#21407;&#22240;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#40664;&#35748;&#21464;&#26356;&#31867;&#22411;&#21644;&#21464;&#26356;&#21407;&#22240;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-types" title="Procore &#26377;&#21738;&#20123;&#40664;&#35748;&#25104;&#26412;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>Procore &#26377;&#21738;&#20123;&#40664;&#35748;&#25104;&#26412;&#31867;&#22411;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;</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 &#20013;&#21464;&#26356;&#36890;&#30693;&#21333;&#30340;&#40664;&#35748;&#29366;&#24577;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#21464;&#26356;&#36890;&#30693;&#21333;&#30340;&#40664;&#35748;&#29366;&#24577;&#26159;&#20160;&#20040;&#65311;</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 &#21457;&#31080;&#30340;&#40664;&#35748;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#21457;&#31080;&#30340;&#40664;&#35748;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;</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="&#39033;&#30446;&#36130;&#21153;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#23618;&#35774;&#32622;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#36130;&#21153;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#23618;&#35774;&#32622;&#65311;</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 &#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#31867;&#22411;&#30340;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#31867;&#22411;&#30340;&#21457;&#31080;&#65311;</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="&#20160;&#20040;&#26159; DocuSign&reg; &#23383;&#27573;&#65292;&#25105;&#21487;&#20197;&#33258;&#23450;&#20041;&#23427;&#20204;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; DocuSign&reg; &#23383;&#27573;&#65292;&#25105;&#21487;&#20197;&#33258;&#23450;&#20041;&#23427;&#20204;&#21527;&#65311;</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="&#20174; CSV &#23548;&#20837; SOV &#34892;&#39033;&#30446;&#26377;&#21738;&#20123;&#35201;&#27714;&#65311;"><span class="mt-icon-article-none"></span>&#20174; CSV &#23548;&#20837; SOV &#34892;&#39033;&#30446;&#26377;&#21738;&#20123;&#35201;&#27714;&#65311;</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="&#39033;&#30446;&#30340;&#36164;&#37329;&#24037;&#20855;&#26377;&#21738;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#36164;&#37329;&#24037;&#20855;&#26377;&#21738;&#32454;&#20998;&#26435;&#38480;&#65311;</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 &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-upstream-collaborator" title="&#20160;&#20040;&#26159;&#19978;&#28216;&#21327;&#20316;&#32773;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#19978;&#28216;&#21327;&#20316;&#32773;&#65311;</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 &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#27700;&#24179;&#20998;&#39033;&#21033;&#28070;&#21152;&#25104;&#21644;&#22402;&#30452;&#27719;&#24635;&#21033;&#28070;&#21152;&#25104;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#27700;&#24179;&#20998;&#39033;&#21033;&#28070;&#21152;&#25104;&#21644;&#22402;&#30452;&#27719;&#24635;&#21033;&#28070;&#21152;&#25104;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#20160;&#20040;&#26159;&ldquo;&#21551;&#29992;&#22987;&#32456;&#21487;&#32534;&#36753;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&rdquo;&#35774;&#32622;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&ldquo;&#21551;&#29992;&#22987;&#32456;&#21487;&#32534;&#36753;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&rdquo;&#35774;&#32622;&#65311;</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 &#20013;&#30340;&#21738;&#20123;&#24037;&#20855;&#21517;&#31216;&#21644;&#26415;&#35821;&#23545;&#20110;&#24635;&#25215;&#21253;&#21830;&#12289;&#19994;&#20027;&#21644;&#19987;&#19994;&#25215;&#21253;&#21830;&#26159;&#19981;&#21516;&#30340;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#21738;&#20123;&#24037;&#20855;&#21517;&#31216;&#21644;&#26415;&#35821;&#23545;&#20110;&#24635;&#25215;&#21253;&#21830;&#12289;&#19994;&#20027;&#21644;&#19987;&#19994;&#25215;&#21253;&#21830;&#26159;&#19981;&#21516;&#30340;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-support-the-docusign-integration" title="&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#25903;&#25345; DocuSign&reg; &#38598;&#25104;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#25903;&#25345; DocuSign&reg; &#38598;&#25104;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-work-breakdown-structure" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#65311;</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 &#30340;&#20027;&#21015;&#34920;&#20013;&#21253;&#21547;&#21738;&#20123;&#35745;&#37327;&#21333;&#20301;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#20027;&#21015;&#34920;&#20013;&#21253;&#21547;&#21738;&#20123;&#35745;&#37327;&#21333;&#20301;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-a-change-order" title="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#32534;&#36753;&#25110;&#21024;&#38500;&ldquo;&#33719;&#25209;&rdquo;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#32534;&#36753;&#25110;&#21024;&#38500;&ldquo;&#33719;&#25209;&rdquo;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#22914;&#20309;&#20026; mailto &#38142;&#25509;&#26356;&#25913;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#30340;&#40664;&#35748;&#30005;&#23376;&#37038;&#20214;&#23458;&#25143;&#31471;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026; mailto &#38142;&#25509;&#26356;&#25913;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#30340;&#40664;&#35748;&#30005;&#23376;&#37038;&#20214;&#23458;&#25143;&#31471;&#65311;</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="&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;</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="&#22914;&#26524;&#25105;&#30340;&#20844;&#21496;&#24050;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#21487;&#20197;&#30452;&#25509;&#30331;&#24405; Procore Web &#24212;&#29992;&#31243;&#24207;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#25105;&#30340;&#20844;&#21496;&#24050;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#21487;&#20197;&#30452;&#25509;&#30331;&#24405; Procore Web &#24212;&#29992;&#31243;&#24207;&#21527;&#65311;</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="&#22914;&#26524;&#25105;&#20204;&#20844;&#21496;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#26159;&#21542;&#38656;&#35201;&#21019;&#24314; Procore &#29992;&#25143;&#36134;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#25105;&#20204;&#20844;&#21496;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#26159;&#21542;&#38656;&#35201;&#21019;&#24314; Procore &#29992;&#25143;&#36134;&#25143;&#65311;</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 &#30340;&#21333;&#28857;&#30331;&#24405;&#38598;&#25104;&#25903;&#25345;&#21333;&#20010;&#22495;&#36824;&#26159;&#22810;&#20010;&#22495;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#21333;&#28857;&#30331;&#24405;&#38598;&#25104;&#25903;&#25345;&#21333;&#20010;&#22495;&#36824;&#26159;&#22810;&#20010;&#22495;&#65311;</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="&#22312;&#25105;&#30340; Procore &#20844;&#21496;&#36134;&#25143;&#20013;&#23454;&#26045; SSO &#20043;&#21069;&#65292;&#22914;&#20309;&#22312;&#27801;&#31665;&#29615;&#22659;&#20013;&#37197;&#32622; SSO &#20197;&#36827;&#34892;&#27979;&#35797;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#25105;&#30340; Procore &#20844;&#21496;&#36134;&#25143;&#20013;&#23454;&#26045; SSO &#20043;&#21069;&#65292;&#22914;&#20309;&#22312;&#27801;&#31665;&#29615;&#22659;&#20013;&#37197;&#32622; SSO &#20197;&#36827;&#34892;&#27979;&#35797;&#65311;</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="&#22914;&#20309;&#20351;&#29992; Procore &#35774;&#32622;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20351;&#29992; Procore &#35774;&#32622;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;</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="&#22914;&#20309;&#22312;&#20844;&#21496;&#30340; Procore &#21333;&#28857;&#30331;&#24405;&#37197;&#32622;&#35774;&#32622;&#20013;&#26356;&#26032;&#21363;&#23558;&#21040;&#26399;&#30340; x509 &#35777;&#20070;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#20844;&#21496;&#30340; Procore &#21333;&#28857;&#30331;&#24405;&#37197;&#32622;&#35774;&#32622;&#20013;&#26356;&#26032;&#21363;&#23558;&#21040;&#26399;&#30340; x509 &#35777;&#20070;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-single-sign-on-sso" title="&#20160;&#20040;&#26159;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;</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 &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#21644; IdP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>SP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#21644; IdP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;</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 &#25903;&#25345;&#21738;&#20123;&#21333;&#28857;&#30331;&#24405;&#36523;&#20221;&#25552;&#20379;&#21830;&#65311;"><span class="mt-icon-article-none"></span>Procore &#25903;&#25345;&#21738;&#20123;&#21333;&#28857;&#30331;&#24405;&#36523;&#20221;&#25552;&#20379;&#21830;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#20351;&#29992; SSO &#30331;&#24405;&#26102;&#25910;&#21040;&ldquo;&#26410;&#21457;&#29616;&#26377;&#29992;&#25143;&#20351;&#29992;&#32473;&#23450;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&rdquo;&#38169;&#35823;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#20351;&#29992; SSO &#30331;&#24405;&#26102;&#25910;&#21040;&ldquo;&#26410;&#21457;&#29616;&#26377;&#29992;&#25143;&#20351;&#29992;&#32473;&#23450;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&rdquo;&#38169;&#35823;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#22914;&#20309;&#21521; Procore &#28155;&#21152;&#22836;&#20687;&#25110;&#20010;&#20154;&#36164;&#26009;&#29031;&#29255;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21521; Procore &#28155;&#21152;&#22836;&#20687;&#25110;&#20010;&#20154;&#36164;&#26009;&#29031;&#29255;&#65311;</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="&#22914;&#20309;&#22312; Procore &#20013;&#23558;&#24037;&#20855;&#28155;&#21152;&#21040;&#25910;&#34255;&#22841;&#21015;&#34920;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#20013;&#23558;&#24037;&#20855;&#28155;&#21152;&#21040;&#25910;&#34255;&#22841;&#21015;&#34920;&#65311;</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="&#22914;&#20309;&#30830;&#23450;&#22320;&#22336;&#30340;&#32428;&#24230;&#21644;&#32463;&#24230;&#20540;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#30830;&#23450;&#22320;&#22336;&#30340;&#32428;&#24230;&#21644;&#32463;&#24230;&#20540;&#65311;</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="&#22914;&#20309;&#22312;&#20027;&#39029;&#19978;&#26174;&#31034;&#39033;&#30446;&#26085;&#26399;&#21015;&#34920;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#20027;&#39029;&#19978;&#26174;&#31034;&#39033;&#30446;&#26085;&#26399;&#21015;&#34920;&#65311;</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="&#26159;&#21542;&#26377;&#21150;&#27861;&#26597;&#30475; Procore &#20013;&#20998;&#37197;&#32473;&#25105;&#30340;&#25152;&#26377;&#26410;&#23436;&#25104;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#26159;&#21542;&#26377;&#21150;&#27861;&#26597;&#30475; Procore &#20013;&#20998;&#37197;&#32473;&#25105;&#30340;&#25152;&#26377;&#26410;&#23436;&#25104;&#39033;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-project-roles" title="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#39033;&#30446;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#39033;&#30446;&#35282;&#33394;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-information-is-searchable-using-procore-search" title="&#21487;&#20197;&#20351;&#29992; Procore Search &#25628;&#32034;&#21040;&#21738;&#20123;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#20351;&#29992; Procore Search &#25628;&#32034;&#21040;&#21738;&#20123;&#20449;&#24687;&#65311;</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="&#20316;&#19994;&#12289;&#29238;&#20316;&#19994;&#21644;&#23376;&#20316;&#19994;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#20316;&#19994;&#12289;&#29238;&#20316;&#19994;&#21644;&#23376;&#20316;&#19994;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-weather-providers-are-supported-by-procore" title="Procore &#25903;&#25345;&#21738;&#20123;&#22825;&#27668;&#39044;&#25253;&#25552;&#20379;&#21830;&#65311;"><span class="mt-icon-article-none"></span>Procore &#25903;&#25345;&#21738;&#20123;&#22825;&#27668;&#39044;&#25253;&#25552;&#20379;&#21830;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#23558; Procore &#24037;&#20855;&#28155;&#21152;&#21040;&#25910;&#34255;&#22841;&#21015;&#34920;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#23558; Procore &#24037;&#20855;&#28155;&#21152;&#21040;&#25910;&#34255;&#22841;&#21015;&#34920;&#20013;&#65311;</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="&#20026;&#20160;&#20040;&#22312;&ldquo;&#25105;&#30340;&#20010;&#20154;&#36164;&#26009;&#35774;&#32622;&rdquo;&#20013;&#30475;&#19981;&#21040;&ldquo;&#25910;&#34255;&#22841;&rdquo;&#26631;&#31614;&#39029;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#22312;&ldquo;&#25105;&#30340;&#20010;&#20154;&#36164;&#26009;&#35774;&#32622;&rdquo;&#20013;&#30475;&#19981;&#21040;&ldquo;&#25910;&#34255;&#22841;&rdquo;&#26631;&#31614;&#39029;&#65311;</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="&#20026;&#20160;&#20040;&ldquo;&#25105;&#30340;&#26410;&#23436;&#25104;&#39033;&rdquo;&#21015;&#34920;&#19981;&#26174;&#31034;&#24050;&#20998;&#37197;&#32473;&#25105;&#30340;&#20219;&#21153;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&ldquo;&#25105;&#30340;&#26410;&#23436;&#25104;&#39033;&rdquo;&#21015;&#34920;&#19981;&#26174;&#31034;&#24050;&#20998;&#37197;&#32473;&#25105;&#30340;&#20219;&#21153;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-isnt-my-project-weather-working" title="&#20026;&#20160;&#20040;&#25105;&#30340;&#39033;&#30446;&#22825;&#27668;&#23567;&#37096;&#20214;&#19981;&#24037;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#39033;&#30446;&#22825;&#27668;&#23567;&#37096;&#20214;&#19981;&#24037;&#20316;&#65311;</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="&#22914;&#20309;&#20026;&#24037;&#26102;&#26465;&#30446;&#37197;&#32622;&#20219;&#21153;&#32534;&#21495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#24037;&#26102;&#26465;&#30446;&#37197;&#32622;&#20219;&#21153;&#32534;&#21495;&#65311;</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="&#22914;&#20309;&#22312;&#21457;&#31080;&#20013;&#20026;&#24211;&#23384;&#26448;&#26009;&#24320;&#20855;&#36134;&#21333;&#65311; &#65288;&#27979;&#35797;&#29256;&#65289;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#21457;&#31080;&#20013;&#20026;&#24211;&#23384;&#26448;&#26009;&#24320;&#20855;&#36134;&#21333;&#65311; &#65288;&#27979;&#35797;&#29256;&#65289;</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="&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</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="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</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="&#39044;&#31639;&#32534;&#21495;&#21644;&#20219;&#21153;&#32534;&#21495;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#39044;&#31639;&#32534;&#21495;&#21644;&#20219;&#21153;&#32534;&#21495;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-monthly-sandbox-environment" title="&#20160;&#20040;&#26159;&#27599;&#26376;&#27801;&#31665;&#29615;&#22659;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#27599;&#26376;&#27801;&#31665;&#29615;&#22659;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-rfi-manager-role" title="&#20160;&#20040;&#26159; RFI &#32463;&#29702;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; RFI &#32463;&#29702;&#35282;&#33394;&#65311;</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 &#22312;&#21738;&#37324;&#20197;&#21450;&#22914;&#20309;&#23384;&#20648;&#23458;&#25143;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>Procore &#22312;&#21738;&#37324;&#20197;&#21450;&#22914;&#20309;&#23384;&#20648;&#23458;&#25143;&#20449;&#24687;&#65311;</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="&#20160;&#20040;&#26159;&#20107;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20107;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-maintenance" title="&#20160;&#20040;&#26159;&#32500;&#25252;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32500;&#25252;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-availability" title="&#20160;&#20040;&#26159; Procore &#30340;&#21487;&#29992;&#24615;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#30340;&#21487;&#29992;&#24615;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-unavailibility" title="&#20160;&#20040;&#26159; Procore &#30340;&#19981;&#21487;&#29992;&#24615;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#30340;&#19981;&#21487;&#29992;&#24615;&#65311;</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="&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#22914;&#20309;&#20351;&#29992; Procore &#30340;&#20107;&#20214;&#24037;&#20855;&#35760;&#24405;&#20896;&#29366;&#30149;&#27602; (COVID-19) &#24863;&#26579;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20351;&#29992; Procore &#30340;&#20107;&#20214;&#24037;&#20855;&#35760;&#24405;&#20896;&#29366;&#30149;&#27602; (COVID-19) &#24863;&#26579;&#20449;&#24687;&#65311;</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="&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</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="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-fieldset-configurations-are-recommended-for-configurable-fieldsets" title="&#23545;&#20110;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#25512;&#33616;&#20351;&#29992;&#21738;&#20123;&#37197;&#32622;&#65311;"><span class="mt-icon-article-none"></span>&#23545;&#20110;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#25512;&#33616;&#20351;&#29992;&#21738;&#20123;&#37197;&#32622;&#65311;</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 &#20013;&#30340;&ldquo;&#32852;&#31995;&#20154;&rdquo;&#26159;&#20160;&#20040;&#65311;&#21738;&#20123;&#39033;&#30446;&#24037;&#20855;&#25903;&#25345;&#27492;&#27010;&#24565;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&ldquo;&#32852;&#31995;&#20154;&rdquo;&#26159;&#20160;&#20040;&#65311;&#21738;&#20123;&#39033;&#30446;&#24037;&#20855;&#25903;&#25345;&#27492;&#27010;&#24565;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;</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 &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#20107;&#20214;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#20107;&#20214;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</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="&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#35265;&#35299;&#26159;&#22914;&#20309;&#35745;&#31639;&#30340;&#65311;"><span class="mt-icon-article-reference"></span>&#35265;&#35299;&#26159;&#22914;&#20309;&#35745;&#31639;&#30340;&#65311;</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="&#25105;&#24212;&#35813;&#20026; Procore &#20013;&#30340;&#21738;&#20123;&#39033;&#21046;&#20316;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#24212;&#35813;&#20026; Procore &#20013;&#30340;&#21738;&#20123;&#39033;&#21046;&#20316;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#23558;&ldquo;[Procore] &#39033;&#30446;&#20572;&#24037;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#28155;&#21152;&#21040;&#25105;&#30340; Procore &#36134;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&ldquo;[Procore] &#39033;&#30446;&#20572;&#24037;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#28155;&#21152;&#21040;&#25105;&#30340; Procore &#36134;&#25143;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[NextWave Safety Solutions] &#28151;&#20957;&#22303;&#39044;&#27975;&#27880;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[NextWave Safety Solutions] &#28151;&#20957;&#22303;&#39044;&#27975;&#27880;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[NextWave Safety Solutions] &#26799;&#23376;&#23433;&#20840;&#24615; - &#31616;&#21333;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[NextWave Safety Solutions] &#26799;&#23376;&#23433;&#20840;&#24615; - &#31616;&#21333;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OAC Management Inc.] &#39044;&#22238;&#22635;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OAC Management Inc.] &#39044;&#22238;&#22635;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OAC Management Inc.] &#39044;&#24178;&#22681;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OAC Management Inc.] &#39044;&#24178;&#22681;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OAC Management Inc.] &#38138;&#30422;&#23627;&#39030;&#21069;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OAC Management Inc.] &#38138;&#30422;&#23627;&#39030;&#21069;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OSHA] &#27807;&#27133;&#21644;&#25366;&#25496;&#26085;&#24120;&#26816;&#26597;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OSHA] &#27807;&#27133;&#21644;&#25366;&#25496;&#26085;&#24120;&#26816;&#26597;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OSHA] &#19978;&#38145;/&#25346;&#29260;&#31243;&#24207;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OSHA] &#19978;&#38145;/&#25346;&#29260;&#31243;&#24207;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OSHA] &#26448;&#26009;&#22788;&#29702;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OSHA] &#26448;&#26009;&#22788;&#29702;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[Procore] &#35774;&#22791;&#25805;&#20316;&#21069;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[Procore] &#35774;&#22791;&#25805;&#20316;&#21069;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[Procore] &#20316;&#19994;&#29616;&#22330;&#28165;&#27905;&#21644;&#20934;&#22791;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[Procore] &#20316;&#19994;&#29616;&#22330;&#28165;&#27905;&#21644;&#20934;&#22791;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[Procore] SWPPP - &#26045;&#24037;&#29616;&#22330;&#38632;&#27700;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[Procore] SWPPP - &#26045;&#24037;&#29616;&#22330;&#38632;&#27700;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;&#29616;&#22330;&#23433;&#20840;&#26816;&#26597;&#20219;&#21153;&rdquo;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;&#29616;&#22330;&#23433;&#20840;&#26816;&#26597;&#20219;&#21153;&rdquo;&#27169;&#26495;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/inspection-requirements-general-faq" title="&#26816;&#26597;&#20219;&#21153;&#35201;&#27714;:&#19968;&#33324;&#24120;&#35265;&#38382;&#39064;"><span class="mt-icon-article-reference"></span>&#26816;&#26597;&#20219;&#21153;&#35201;&#27714;:&#19968;&#33324;&#24120;&#35265;&#38382;&#39064;</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="&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-multi-tiered-locations" title="&#20160;&#20040;&#26159;&#22810;&#23618;&#22320;&#28857;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#22810;&#23618;&#22320;&#28857;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;</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="&#32479;&#19968;&#38468;&#20214;&#26597;&#30475;&#22120;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#31867;&#22411;&#21644;&#26684;&#24335;&#65311;"><span class="mt-icon-article-none"></span>&#32479;&#19968;&#38468;&#20214;&#26597;&#30475;&#22120;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#31867;&#22411;&#21644;&#26684;&#24335;&#65311;</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="&#39033;&#30446;&#32423;&#21035;&#26816;&#26597;&#20219;&#21153;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#32423;&#21035;&#26816;&#26597;&#20219;&#21153;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-conditional-logic-within-the-inspections-tool" title="&#20160;&#20040;&#26159;&#26816;&#26597;&#20219;&#21153;&#24037;&#20855;&#20013;&#30340;&#26465;&#20214;&#36923;&#36753;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#26816;&#26597;&#20219;&#21153;&#24037;&#20855;&#20013;&#30340;&#26465;&#20214;&#36923;&#36753;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;</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 &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-standard-trades-are-available-in-procore" title="Procore &#20013;&#25552;&#20379;&#21738;&#20123;&#26631;&#20934;&#34892;&#19994;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#25552;&#20379;&#21738;&#20123;&#26631;&#20934;&#34892;&#19994;&#65311;</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="&#26816;&#26597;&#20219;&#21153;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#26816;&#26597;&#20219;&#21153;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</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="&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-site-instruction" title="&#20160;&#20040;&#26159;&ldquo;&#25351;&#31034;&rdquo;&#25110;&ldquo;&#29616;&#22330;&#25351;&#31034;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&ldquo;&#25351;&#31034;&rdquo;&#25110;&ldquo;&#29616;&#22330;&#25351;&#31034;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;</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 &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</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="&#25105;&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#21019;&#24314;&#21464;&#26356;&#20107;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#21019;&#24314;&#21464;&#26356;&#20107;&#20214;&#65311;</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="&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;</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="&#20160;&#20040;&#26159;&#20998;&#21253;&#21830;&#20998;&#39033;&#20215;&#26684;&#34920;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20998;&#21253;&#21830;&#20998;&#39033;&#20215;&#26684;&#34920;&#65311;</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="&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#21457;&#31080;&#32852;&#31995;&#20154;&#26159;&#21542;&#38656;&#35201;&ldquo;&#32467;&#31639;&#36992;&#35831;&rdquo;&#25165;&#33021;&#25552;&#20132;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>&#21457;&#31080;&#32852;&#31995;&#20154;&#26159;&#21542;&#38656;&#35201;&ldquo;&#32467;&#31639;&#36992;&#35831;&rdquo;&#25165;&#33021;&#25552;&#20132;&#21457;&#31080;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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 &#22914;&#20309;&#33258;&#21160;&#23436;&#25104;&#19994;&#20027; &#21457;&#31080;&#19978;&#30340;&#37329;&#39069;&#65311; &#65288;&#27979;&#35797;&#29256;&#65289;"><span class="mt-icon-article-none"></span>Procore &#22914;&#20309;&#33258;&#21160;&#23436;&#25104;&#19994;&#20027; &#21457;&#31080;&#19978;&#30340;&#37329;&#39069;&#65311; &#65288;&#27979;&#35797;&#29256;&#65289;</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 &#22914;&#20309;&#33258;&#21160;&#23436;&#25104;&#19978;&#28216; &#21457;&#31080;&#19978;&#30340;&#37329;&#39069;&#65311; &#65288;&#26087;&#29256;&#65289;"><span class="mt-icon-article-none"></span>Procore &#22914;&#20309;&#33258;&#21160;&#23436;&#25104;&#19978;&#28216; &#21457;&#31080;&#19978;&#30340;&#37329;&#39069;&#65311; &#65288;&#26087;&#29256;&#65289;</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="&#22914;&#20309;&#22312;&#21457;&#31080;&#20013;&#20026;&#24211;&#23384;&#26448;&#26009;&#24320;&#20855;&#36134;&#21333;&#65311; &#65288;&#27979;&#35797;&#29256;&#65289;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#21457;&#31080;&#20013;&#20026;&#24211;&#23384;&#26448;&#26009;&#24320;&#20855;&#36134;&#21333;&#65311; &#65288;&#27979;&#35797;&#29256;&#65289;</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="&#22914;&#20309;&#20026;&#21457;&#31080;&#21019;&#24314;&#32467;&#31639;&#26399;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#21457;&#31080;&#21019;&#24314;&#32467;&#31639;&#26399;&#65311;</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="&#22914;&#20309;&#38450;&#27490;&#25110;&#20801;&#35768;&#20998;&#21253;&#21830;&#21457;&#31080;&#36229;&#39069; &#35745;&#36153;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#38450;&#27490;&#25110;&#20801;&#35768;&#20998;&#21253;&#21830;&#21457;&#31080;&#36229;&#39069; &#35745;&#36153;&#65311;</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="&#22914;&#20309;&#22312; Procore &#20013;&#35774;&#32622;&#21644;&#36820;&#36824;&#20998;&#21253;&#21830;&#21457;&#31080;&#30340;&#20445;&#30041;&#37329;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#20013;&#35774;&#32622;&#21644;&#36820;&#36824;&#20998;&#21253;&#21830;&#21457;&#31080;&#30340;&#20445;&#30041;&#37329;&#65311;</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="&#22914;&#20309;&#25552;&#20132; Procore &#21512;&#32422;&#30340;&#20998;&#21253;&#21830;&#20998;&#39033;&#20215;&#26684;&#34920;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#25552;&#20132; Procore &#21512;&#32422;&#30340;&#20998;&#21253;&#21830;&#20998;&#39033;&#20215;&#26684;&#34920;&#65311;</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="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;</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 &#21457;&#31080;&#30340;&#40664;&#35748;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#21457;&#31080;&#30340;&#40664;&#35748;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;</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 &#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#31867;&#22411;&#30340;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#31867;&#22411;&#30340;&#21457;&#31080;&#65311;</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="&#22312;&#20801;&#35768;&#19979;&#28216;&#21327;&#20316;&#32773;&#22312; Procore &#20013;&#25552;&#20132;&#21457;&#31080;&#20043;&#21069;&#65292;&#25105;&#20204;&#38656;&#35201;&#32771;&#34385;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#20801;&#35768;&#19979;&#28216;&#21327;&#20316;&#32773;&#22312; Procore &#20013;&#25552;&#20132;&#21457;&#31080;&#20043;&#21069;&#65292;&#25105;&#20204;&#38656;&#35201;&#32771;&#34385;&#20160;&#20040;&#65311;</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 &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-downstream-collaborator" title="&#20160;&#20040;&#26159;&#19979;&#28216;&#21327;&#20316;&#32773;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#19979;&#28216;&#21327;&#20316;&#32773;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-invoice-administrator" title="&#20160;&#20040;&#26159;&#21457;&#31080; &#31649;&#29702;&#21592;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21457;&#31080; &#31649;&#29702;&#21592;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-invoice-contact" title="&#20160;&#20040;&#26159;&#21457;&#31080;&#32852;&#31995;&#20154;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21457;&#31080;&#32852;&#31995;&#20154;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-upstream-collaborator" title="&#20160;&#20040;&#26159;&#19978;&#28216;&#21327;&#20316;&#32773;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#19978;&#28216;&#21327;&#20316;&#32773;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-subcontractor-schedule-of-values" title="&#20160;&#20040;&#26159;&#20998;&#21253;&#21830;&#20998;&#39033;&#20215;&#26684;&#34920;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20998;&#21253;&#21830;&#20998;&#39033;&#20215;&#26684;&#34920;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-sliding-scale-retention" title="&#20160;&#20040;&#26159;&#28014;&#21160;&#20445;&#30041;&#37329;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#28014;&#21160;&#20445;&#30041;&#37329;&#65311;</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 &#20013;&#30340;&#21738;&#20123;&#24037;&#20855;&#21517;&#31216;&#21644;&#26415;&#35821;&#23545;&#20110;&#24635;&#25215;&#21253;&#21830;&#12289;&#19994;&#20027;&#21644;&#19987;&#19994;&#25215;&#21253;&#21830;&#26159;&#19981;&#21516;&#30340;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#21738;&#20123;&#24037;&#20855;&#21517;&#31216;&#21644;&#26415;&#35821;&#23545;&#20110;&#24635;&#25215;&#21253;&#21830;&#12289;&#19994;&#20027;&#21644;&#19987;&#19994;&#25215;&#21253;&#21830;&#26159;&#19981;&#21516;&#30340;&#65311;</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 &#20309;&#26102;&#21521;&#21457;&#31080;&#32852;&#31995;&#20154;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20309;&#26102;&#21521;&#21457;&#31080;&#32852;&#31995;&#20154;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;</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="&#21457;&#31080;&#25110;&#25353;&#36827;&#24230;&#25910;&#27454;&#36134;&#21333;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#36873;&#22635;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#21457;&#31080;&#25110;&#25353;&#36827;&#24230;&#25910;&#27454;&#36134;&#21333;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#36873;&#22635;&#25110;&#38544;&#34255;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-support-the-docusign-integration" title="&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#25903;&#25345; DocuSign&reg; &#38598;&#25104;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#25903;&#25345; DocuSign&reg; &#38598;&#25104;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-workflows" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#27969;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#27969;&#65311;</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="&#22312; QuickBooks&reg; &#20013;&#21551;&#29992;&#21738;&#20010;&#35774;&#32622;&#25165;&#33021;&#20351;&#29992; ERP &#38598;&#25104;&#24037;&#20855;&#23548;&#20986;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>&#22312; QuickBooks&reg; &#20013;&#21551;&#29992;&#21738;&#20010;&#35774;&#32622;&#25165;&#33021;&#20351;&#29992; ERP &#38598;&#25104;&#24037;&#20855;&#23548;&#20986;&#21457;&#31080;&#65311;</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 &#30340;&#20027;&#21015;&#34920;&#20013;&#21253;&#21547;&#21738;&#20123;&#35745;&#37327;&#21333;&#20301;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#20027;&#21015;&#34920;&#20013;&#21253;&#21547;&#21738;&#20123;&#35745;&#37327;&#21333;&#20301;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#26126;&#32454;&#39033;&#22312;&#25105;&#30340;&#20998;&#21253;&#21830;&#21457;&#31080;&#19978;&#37325;&#22797;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#26126;&#32454;&#39033;&#22312;&#25105;&#30340;&#20998;&#21253;&#21830;&#21457;&#31080;&#19978;&#37325;&#22797;&#65311;</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="&#20026;&#20160;&#20040;&#39044;&#31639;&#20013;&#30340;&ldquo;&#24320;&#24037;&#33267;&#20170;&#25104;&#26412;&rdquo;&#21015;&#19982;&#20998;&#21253;&#21830;&#21457;&#31080;&#37329;&#39069;&#19981;&#19968;&#33268;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#39044;&#31639;&#20013;&#30340;&ldquo;&#24320;&#24037;&#33267;&#20170;&#25104;&#26412;&rdquo;&#21015;&#19982;&#20998;&#21253;&#21830;&#21457;&#31080;&#37329;&#39069;&#19981;&#19968;&#33268;&#65311;</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="&#24403;&#25968;&#25454;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#31561;&#24453;&#39564;&#25910;&#26102;&#65292;&#26159;&#21542;&#20250;&#36890;&#30693;&#20250;&#35745;&#23457;&#25209;&#32773;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#25968;&#25454;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#31561;&#24453;&#39564;&#25910;&#26102;&#65292;&#26159;&#21542;&#20250;&#36890;&#30693;&#20250;&#35745;&#23457;&#25209;&#32773;&#65311;</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="&#24453;&#22788;&#29702;&#21512;&#32422;&#26159;&#21542;&#20250;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#33258;&#21160;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#24453;&#22788;&#29702;&#21512;&#32422;&#26159;&#21542;&#20250;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#33258;&#21160;&#21516;&#27493;&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#20844;&#21496;&#21516;&#27493;&#21518;&#26356;&#25913;&#36873;&#23450;&#30340;&#20379;&#24212;&#21830;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312;&#20844;&#21496;&#21516;&#27493;&#21518;&#26356;&#25913;&#36873;&#23450;&#30340;&#20379;&#24212;&#21830;&#31867;&#22411;&#65311;</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="&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;</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="&#21512;&#32422;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#21518;&#65292;&#25105;&#33021;&#21542;&#32534;&#36753;&#25110;&#21024;&#38500;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#21518;&#65292;&#25105;&#33021;&#21542;&#32534;&#36753;&#25110;&#21024;&#38500;&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</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="&#24403;&#21512;&#32422;&#26410;&#33021;&#20174; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#23548;&#20986;&#26102;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#21512;&#32422;&#26410;&#33021;&#20174; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#23548;&#20986;&#26102;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-erp-icons-mean" title="ERP &#22270;&#26631;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>ERP &#22270;&#26631;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;</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="&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#26126;&#32454;&#39033;&#22312;&#25105;&#30340;&#20998;&#21253;&#21830;&#21457;&#31080;&#19978;&#37325;&#22797;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#26126;&#32454;&#39033;&#22312;&#25105;&#30340;&#20998;&#21253;&#21830;&#21457;&#31080;&#19978;&#37325;&#22797;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-wbs-custom-segments" title="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21019;&#24314; WBS &#33258;&#23450;&#20041;&#32454;&#20998;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21019;&#24314; WBS &#33258;&#23450;&#20041;&#32454;&#20998;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&ldquo;&#21516;&#27493;&rdquo;&#25110;&ldquo;&#21047;&#26032;&rdquo;&#25353;&#38062;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&ldquo;&#21516;&#27493;&rdquo;&#25110;&ldquo;&#21047;&#26032;&rdquo;&#25353;&#38062;&#65311;</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="&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;</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="&#25105;&#21487;&#20197;&#26356;&#25913;&#20250;&#35758;&#21517;&#31216;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#26356;&#25913;&#20250;&#35758;&#21517;&#31216;&#21527;&#65311;</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="&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-meetings-integrate-with-microsoft-outlook-calendar" title="&#20250;&#35758;&#26159;&#21542;&#19982; Microsoft Outlook &#26085;&#21382;&#38598;&#25104;&#65311;"><span class="mt-icon-article-none"></span>&#20250;&#35758;&#26159;&#21542;&#19982; Microsoft Outlook &#26085;&#21382;&#38598;&#25104;&#65311;</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="&#25105;&#24212;&#35813;&#20026; Procore &#20013;&#30340;&#21738;&#20123;&#39033;&#21046;&#20316;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#24212;&#35813;&#20026; Procore &#20013;&#30340;&#21738;&#20123;&#39033;&#21046;&#20316;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#22914;&#20309;&#20026; mailto &#38142;&#25509;&#26356;&#25913;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#30340;&#40664;&#35748;&#30005;&#23376;&#37038;&#20214;&#23458;&#25143;&#31471;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026; mailto &#38142;&#25509;&#26356;&#25913;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#30340;&#40664;&#35748;&#30005;&#23376;&#37038;&#20214;&#23458;&#25143;&#31471;&#65311;</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="&#22914;&#20309;&#22312;&#20250;&#35758; PDF &#19978;&#26174;&#31034;&#20197;&#21069;&#30340;&#20250;&#35758;&#32426;&#35201;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#20250;&#35758; PDF &#19978;&#26174;&#31034;&#20197;&#21069;&#30340;&#20250;&#35758;&#32426;&#35201;&#65311;</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="&#22914;&#20309;&#38459;&#27490;&#20250;&#35758;&#39033;&#36716;&#31227;&#21040;&#21518;&#32493;&#20250;&#35758;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#38459;&#27490;&#20250;&#35758;&#39033;&#36716;&#31227;&#21040;&#21518;&#32493;&#20250;&#35758;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-meeting-minutes" title="&#20160;&#20040;&#26159;&#20250;&#35758;&#32426;&#35201;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20250;&#35758;&#32426;&#35201;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;</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="&#39033;&#30446;&#30340;&#20250;&#35758;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#20250;&#35758;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;</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 &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</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="&#25105;&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#21019;&#24314;&#21464;&#26356;&#20107;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#21019;&#24314;&#21464;&#26356;&#20107;&#20214;&#65311;</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="&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312;&#20250;&#35758;&#24037;&#20855;&#20013;&#21019;&#24314;&#21518;&#32493;&#20250;&#35758;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312;&#20250;&#35758;&#24037;&#20855;&#20013;&#21019;&#24314;&#21518;&#32493;&#20250;&#35758;&#65311;</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="&#25105;&#33021;&#21542;&#36890;&#36807;&#31227;&#21160;&#35774;&#22791;&#23558;&#29031;&#29255;&#28155;&#21152;&#21040;&#23614;&#39033;&#28165;&#21333;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#36890;&#36807;&#31227;&#21160;&#35774;&#22791;&#23558;&#29031;&#29255;&#28155;&#21152;&#21040;&#23614;&#39033;&#28165;&#21333;&#39033;&#30446;&#65311;</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="&#25105;&#21487;&#20197;&#22312; Procore &#20013;&#26356;&#25913;&#20844;&#21496;&#12289;&#39033;&#30446;&#25110;&#29992;&#25143;&#35821;&#35328;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312; Procore &#20013;&#26356;&#25913;&#20844;&#21496;&#12289;&#39033;&#30446;&#25110;&#29992;&#25143;&#35821;&#35328;&#21527;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-use-procores-mobile-application-offline" title="&#25105;&#21487;&#20197;&#22312;&#31163;&#32447;&#27169;&#24335;&#19979;&#20351;&#29992; Procore &#30340;&#31227;&#21160;&#24212;&#29992;&#31243;&#24207;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312;&#31163;&#32447;&#27169;&#24335;&#19979;&#20351;&#29992; Procore &#30340;&#31227;&#21160;&#24212;&#29992;&#31243;&#24207;&#21527;&#65311;</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="&#22914;&#20309;&#19979;&#36733; Procore &#30340; Android &#31227;&#21160;&#24212;&#29992;&#31243;&#24207;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#19979;&#36733; Procore &#30340; Android &#31227;&#21160;&#24212;&#29992;&#31243;&#24207;&#65311;</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="&#21487;&#20197;&#22312;&#31227;&#21160;&#35774;&#22791;&#19978;&#23558;&#21738;&#20123;&#24037;&#20855;&#29992;&#20110;&#38750;&#27963;&#21160;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#22312;&#31227;&#21160;&#35774;&#22791;&#19978;&#23558;&#21738;&#20123;&#24037;&#20855;&#29992;&#20110;&#38750;&#27963;&#21160;&#39033;&#30446;&#65311;</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="&#24212;&#35813;&#20351;&#29992;&#20160;&#20040;&#31867;&#22411;&#30340;&#31227;&#21160;&#35774;&#22791;&#26469;&#20351;&#29992; Procore&#65311;"><span class="mt-icon-article-none"></span>&#24212;&#35813;&#20351;&#29992;&#20160;&#20040;&#31867;&#22411;&#30340;&#31227;&#21160;&#35774;&#22791;&#26469;&#20351;&#29992; Procore&#65311;</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="&#25105;&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#21019;&#24314;&#21464;&#26356;&#20107;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#21019;&#24314;&#21464;&#26356;&#20107;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-work-breakdown-structure" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#65311;</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="&#22312; Procore &#31227;&#21160;&#24212;&#29992;&#31243;&#24207;&#19978;&#65292;&#30446;&#21069;&#21738;&#20123;&#24037;&#20855;&#25903;&#25345;&ldquo;&#20070;&#31614;&rdquo;&#21151;&#33021;&#65311;"><span class="mt-icon-article-none"></span>&#22312; Procore &#31227;&#21160;&#24212;&#29992;&#31243;&#24207;&#19978;&#65292;&#30446;&#21069;&#21738;&#20123;&#24037;&#20855;&#25903;&#25345;&ldquo;&#20070;&#31614;&rdquo;&#21151;&#33021;&#65311;</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="&#20026;&#20160;&#20040; Procore &#20572;&#27490;&#25903;&#25345;&#26087;&#29256;&#26412;&#30340; iOS &#21644; Android&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; Procore &#20572;&#27490;&#25903;&#25345;&#26087;&#29256;&#26412;&#30340; iOS &#21644; Android&#65311;</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="&#25105;&#33021;&#21542;&#36890;&#36807;&#31227;&#21160;&#35774;&#22791;&#23558;&#29031;&#29255;&#28155;&#21152;&#21040;&#23614;&#39033;&#28165;&#21333;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#36890;&#36807;&#31227;&#21160;&#35774;&#22791;&#23558;&#29031;&#29255;&#28155;&#21152;&#21040;&#23614;&#39033;&#28165;&#21333;&#39033;&#30446;&#65311;</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="&#25105;&#21487;&#20197;&#22312; Procore &#20013;&#26356;&#25913;&#20844;&#21496;&#12289;&#39033;&#30446;&#25110;&#29992;&#25143;&#35821;&#35328;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312; Procore &#20013;&#26356;&#25913;&#20844;&#21496;&#12289;&#39033;&#30446;&#25110;&#29992;&#25143;&#35821;&#35328;&#21527;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-use-procores-mobile-application-offline" title="&#25105;&#21487;&#20197;&#22312;&#31163;&#32447;&#27169;&#24335;&#19979;&#20351;&#29992; Procore &#30340;&#31227;&#21160;&#24212;&#29992;&#31243;&#24207;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312;&#31163;&#32447;&#27169;&#24335;&#19979;&#20351;&#29992; Procore &#30340;&#31227;&#21160;&#24212;&#29992;&#31243;&#24207;&#21527;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-disable-quick-capture-for-ios" title="&#22914;&#20309;&#31105;&#29992; iOS &#30340; Quick Capture&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#31105;&#29992; iOS &#30340; Quick Capture&#65311;</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="&#21487;&#20197;&#22312;&#31227;&#21160;&#35774;&#22791;&#19978;&#23558;&#21738;&#20123;&#24037;&#20855;&#29992;&#20110;&#38750;&#27963;&#21160;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#22312;&#31227;&#21160;&#35774;&#22791;&#19978;&#23558;&#21738;&#20123;&#24037;&#20855;&#29992;&#20110;&#38750;&#27963;&#21160;&#39033;&#30446;&#65311;</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="&#24212;&#35813;&#20351;&#29992;&#20160;&#20040;&#31867;&#22411;&#30340;&#31227;&#21160;&#35774;&#22791;&#26469;&#20351;&#29992; Procore&#65311;"><span class="mt-icon-article-none"></span>&#24212;&#35813;&#20351;&#29992;&#20160;&#20040;&#31867;&#22411;&#30340;&#31227;&#21160;&#35774;&#22791;&#26469;&#20351;&#29992; Procore&#65311;</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="&#25105;&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#21019;&#24314;&#21464;&#26356;&#20107;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#21019;&#24314;&#21464;&#26356;&#20107;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-work-breakdown-structure" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#65311;</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="&#22312; Procore &#31227;&#21160;&#24212;&#29992;&#31243;&#24207;&#19978;&#65292;&#30446;&#21069;&#21738;&#20123;&#24037;&#20855;&#25903;&#25345;&ldquo;&#20070;&#31614;&rdquo;&#21151;&#33021;&#65311;"><span class="mt-icon-article-none"></span>&#22312; Procore &#31227;&#21160;&#24212;&#29992;&#31243;&#24207;&#19978;&#65292;&#30446;&#21069;&#21738;&#20123;&#24037;&#20855;&#25903;&#25345;&ldquo;&#20070;&#31614;&rdquo;&#21151;&#33021;&#65311;</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="&#20026;&#20160;&#20040; Procore &#20572;&#27490;&#25903;&#25345;&#26087;&#29256;&#26412;&#30340; iOS &#21644; Android&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; Procore &#20572;&#27490;&#25903;&#25345;&#26087;&#29256;&#26412;&#30340; iOS &#21644; Android&#65311;</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="&#20026;&#20160;&#20040;&#22312; Procore &#20013;&#26597;&#30475;&#27169;&#22411;&#26102;&#65292;&#27169;&#22411;&#19981;&#26174;&#31034;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#22312; Procore &#20013;&#26597;&#30475;&#27169;&#22411;&#26102;&#65292;&#27169;&#22411;&#19981;&#26174;&#31034;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#25991;&#26723;&#24037;&#20855;&#20013;&#30340; 3D &#27169;&#22411;&#26597;&#30475;&#22120;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#25991;&#26723;&#24037;&#20855;&#20013;&#30340; 3D &#27169;&#22411;&#26597;&#30475;&#22120;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#31867;&#22411;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procore-bim" title="&#20160;&#20040;&#26159; Procore BIM&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore BIM&#65311;</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="&#20160;&#20040;&#26159; Procore&#25554;&#20214;&#65292;&#26377;&#20309;&#29992;&#36884;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore&#25554;&#20214;&#65292;&#26377;&#20309;&#29992;&#36884;&#65311;</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="&#22914;&#26524;&#27169;&#22411;&#22826;&#22823;&#32780;&#26080;&#27861;&#22312; Procore &#30340; Web &#24212;&#29992;&#31243;&#24207;&#20013;&#26597;&#30475;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#27169;&#22411;&#22826;&#22823;&#32780;&#26080;&#27861;&#22312; Procore &#30340; Web &#24212;&#29992;&#31243;&#24207;&#20013;&#26597;&#30475;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;</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="&#22914;&#26524;&#25105;&#30340;&#27169;&#22411;&#25991;&#20214;&#22826;&#22823;&#32780;&#26080;&#27861;&#22312;&#25991;&#26723;&#24037;&#20855;&#20013;&#22788;&#29702;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#25105;&#30340;&#27169;&#22411;&#25991;&#20214;&#22826;&#22823;&#32780;&#26080;&#27861;&#22312;&#25991;&#26723;&#24037;&#20855;&#20013;&#22788;&#29702;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;</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="&#24314;&#35758;&#22312;&#27169;&#22411;&#24037;&#20855;&#20013;&#20351;&#29992;&#20160;&#20040;&#31867;&#22411;&#30340;&#35774;&#22791;&#26597;&#30475;&#27169;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#24314;&#35758;&#22312;&#27169;&#22411;&#24037;&#20855;&#20013;&#20351;&#29992;&#20160;&#20040;&#31867;&#22411;&#30340;&#35774;&#22791;&#26597;&#30475;&#27169;&#22411;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#32593;&#26684;&#22312;&#27169;&#22411;&#24037;&#20855;&#20013;&#27809;&#26377;&#23545;&#40784;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#32593;&#26684;&#22312;&#27169;&#22411;&#24037;&#20855;&#20013;&#27809;&#26377;&#23545;&#40784;&#65311;</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="&#20026;&#20160;&#20040;&#22312; Procore &#20013;&#26597;&#30475;&#27169;&#22411;&#26102;&#65292;&#27169;&#22411;&#19981;&#26174;&#31034;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#22312; Procore &#20013;&#26597;&#30475;&#27169;&#22411;&#26102;&#65292;&#27169;&#22411;&#19981;&#26174;&#31034;&#65311;</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="&#20026;&#20160;&#20040; Procore &#20013;&#27169;&#22411;&#30340;&#25991;&#20214;&#22823;&#23567;&#20250;&#22686;&#21152;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; Procore &#20013;&#27169;&#22411;&#30340;&#25991;&#20214;&#22823;&#23567;&#20250;&#22686;&#21152;&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;</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="&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#23376;&#20316;&#19994;&rdquo;&#27010;&#24565;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#23376;&#20316;&#19994;&rdquo;&#27010;&#24565;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;</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="&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;</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="&#26159;&#21542;&#24212;&#35813;&#23558; Microsoft Project &#36827;&#24230;&#35745;&#21010;&#38598;&#25104;&#21040; Procore Web &#24212;&#29992;&#31243;&#24207;&#25110; Procore Drive&#65311;"><span class="mt-icon-article-none"></span>&#26159;&#21542;&#24212;&#35813;&#23558; Microsoft Project &#36827;&#24230;&#35745;&#21010;&#38598;&#25104;&#21040; Procore Web &#24212;&#29992;&#31243;&#24207;&#25110; Procore Drive&#65311;</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 &#25903;&#25345;&#21738;&#20123;&#29256;&#26412;&#30340; Microsoft Project&#65311;"><span class="mt-icon-article-none"></span>Procore &#25903;&#25345;&#21738;&#20123;&#29256;&#26412;&#30340; Microsoft Project&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</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="&#22914;&#20309;&#23558;&#25105;&#30340;&#20027;&#21512;&#21516;&#19982; Acumatica &#25110;MYOB Advanced Construction&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#25105;&#30340;&#20027;&#21512;&#21516;&#19982; Acumatica &#25110;MYOB Advanced Construction&#21516;&#27493;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;</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="&#24403;&#39033;&#34987; ERP &#25298;&#32477;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#39033;&#34987; ERP &#25298;&#32477;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;</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="&#22914;&#20309;&#20026;&#24037;&#26102;&#26465;&#30446;&#37197;&#32622;&#20219;&#21153;&#32534;&#21495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#24037;&#26102;&#26465;&#30446;&#37197;&#32622;&#20219;&#21153;&#32534;&#21495;&#65311;</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="&#22914;&#20309;&#20026;&#24102;&#35745;&#26102;&#30340;&#22810;&#23618;&#23457;&#25209;&#37197;&#32622;&#29992;&#25143;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#24102;&#35745;&#26102;&#30340;&#22810;&#23618;&#23457;&#25209;&#37197;&#32622;&#29992;&#25143;&#26435;&#38480;&#65311;</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="&#22914;&#20309;&#20026;&#23454;&#26102;&#20154;&#24037;&#29983;&#20135;&#21147;&#35774;&#32622;&#39044;&#31639;&#35270;&#22270;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#23454;&#26102;&#20154;&#24037;&#29983;&#20135;&#21147;&#35774;&#32622;&#39044;&#31639;&#35270;&#22270;&#65311;</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="&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</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="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</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 &#30340;&#24037;&#26102;&#27169;&#22359;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#24037;&#26102;&#27169;&#22359;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#39044;&#31639;&#32534;&#21495;&#21644;&#20219;&#21153;&#32534;&#21495;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#39044;&#31639;&#32534;&#21495;&#21644;&#20219;&#21153;&#32534;&#21495;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#32771;&#21220;&#34920;&#21644;&#25105;&#30340;&#24037;&#26102;&#24037;&#20855;&#23383;&#27573;&#38598;&#19978;&#30340;&#32534;&#21495;&#27169;&#26495;&#20174;&#20309;&#32780;&#26469;&#65311;"><span class="mt-icon-article-none"></span>&#32771;&#21220;&#34920;&#21644;&#25105;&#30340;&#24037;&#26102;&#24037;&#20855;&#23383;&#27573;&#38598;&#19978;&#30340;&#32534;&#21495;&#27169;&#26495;&#20174;&#20309;&#32780;&#26469;&#65311;</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="&#25105;&#30340;&#24037;&#26102;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#30340;&#24037;&#26102;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-classifications" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&ldquo;&#24037;&#31181;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&ldquo;&#24037;&#31181;&rdquo;&#65311;</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="&#24403;&#25968;&#25454;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#31561;&#24453;&#39564;&#25910;&#26102;&#65292;&#26159;&#21542;&#20250;&#36890;&#30693;&#20250;&#35745;&#23457;&#25209;&#32773;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#25968;&#25454;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#31561;&#24453;&#39564;&#25910;&#26102;&#65292;&#26159;&#21542;&#20250;&#36890;&#30693;&#20250;&#35745;&#23457;&#25209;&#32773;&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-erp-icons-mean" title="ERP &#22270;&#26631;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>ERP &#22270;&#26631;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;</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="&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-category-concept" title="&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#27010;&#24565;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#27010;&#24565;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&ldquo;&#21516;&#27493;&rdquo;&#25110;&ldquo;&#21047;&#26032;&rdquo;&#25353;&#38062;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&ldquo;&#21516;&#27493;&rdquo;&#25110;&ldquo;&#21047;&#26032;&rdquo;&#25353;&#38062;&#65311;</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="&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-disable-quick-capture-for-ios" title="&#22914;&#20309;&#31105;&#29992; iOS &#30340; Quick Capture&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#31105;&#29992; iOS &#30340; Quick Capture&#65311;</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="&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</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="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-multi-tiered-locations" title="&#20160;&#20040;&#26159;&#22810;&#23618;&#22320;&#28857;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#22810;&#23618;&#22320;&#28857;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-observation-types-used-for" title="&#40664;&#35748;&#35266;&#23519;&#20219;&#21153;&#31867;&#22411;&#26377;&#20309;&#29992;&#36884;&#65311;"><span class="mt-icon-article-none"></span>&#40664;&#35748;&#35266;&#23519;&#20219;&#21153;&#31867;&#22411;&#26377;&#20309;&#29992;&#36884;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-fieldset-configurations-are-recommended-for-configurable-fieldsets" title="&#23545;&#20110;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#25512;&#33616;&#20351;&#29992;&#21738;&#20123;&#37197;&#32622;&#65311;"><span class="mt-icon-article-none"></span>&#23545;&#20110;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#25512;&#33616;&#20351;&#29992;&#21738;&#20123;&#37197;&#32622;&#65311;</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="&#39033;&#30446;&#30340;&#35266;&#23519;&#20219;&#21153;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#35266;&#23519;&#20219;&#21153;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;</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 &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-standard-trades-are-available-in-procore" title="Procore &#20013;&#25552;&#20379;&#21738;&#20123;&#26631;&#20934;&#34892;&#19994;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#25552;&#20379;&#21738;&#20123;&#26631;&#20934;&#34892;&#19994;&#65311;</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="&#35266;&#23519;&#20219;&#21153;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#35266;&#23519;&#20219;&#21153;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</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="&#25105;&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#21019;&#24314;&#21464;&#26356;&#20107;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#21019;&#24314;&#21464;&#26356;&#20107;&#20214;&#65311;</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="&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-gets-notifications-from-observations" title="&#35841;&#20250;&#25910;&#21040;&#35266;&#23519;&#20219;&#21153;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#35841;&#20250;&#25910;&#21040;&#35266;&#23519;&#20219;&#21153;&#36890;&#30693;&#65311;</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="&#22914;&#26524;&#25105;&#20204;&#20844;&#21496;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#26159;&#21542;&#38656;&#35201;&#21019;&#24314; Procore &#29992;&#25143;&#36134;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#25105;&#20204;&#20844;&#21496;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#26159;&#21542;&#38656;&#35201;&#21019;&#24314; Procore &#29992;&#25143;&#36134;&#25143;&#65311;</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="&#22312;&#25105;&#30340; Procore &#20844;&#21496;&#36134;&#25143;&#20013;&#23454;&#26045; SSO &#20043;&#21069;&#65292;&#22914;&#20309;&#22312;&#27801;&#31665;&#29615;&#22659;&#20013;&#37197;&#32622; SSO &#20197;&#36827;&#34892;&#27979;&#35797;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#25105;&#30340; Procore &#20844;&#21496;&#36134;&#25143;&#20013;&#23454;&#26045; SSO &#20043;&#21069;&#65292;&#22914;&#20309;&#22312;&#27801;&#31665;&#29615;&#22659;&#20013;&#37197;&#32622; SSO &#20197;&#36827;&#34892;&#27979;&#35797;&#65311;</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="&#22914;&#20309;&#20351;&#29992; Procore &#35774;&#32622;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20351;&#29992; Procore &#35774;&#32622;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;</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="&#22914;&#20309;&#22312;&#20844;&#21496;&#30340; Procore &#21333;&#28857;&#30331;&#24405;&#37197;&#32622;&#35774;&#32622;&#20013;&#26356;&#26032;&#21363;&#23558;&#21040;&#26399;&#30340; x509 &#35777;&#20070;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#20844;&#21496;&#30340; Procore &#21333;&#28857;&#30331;&#24405;&#37197;&#32622;&#35774;&#32622;&#20013;&#26356;&#26032;&#21363;&#23558;&#21040;&#26399;&#30340; x509 &#35777;&#20070;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-single-sign-on-sso" title="&#20160;&#20040;&#26159;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;</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="&#22914;&#26524;&#25105;&#30340;&#20844;&#21496;&#24050;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#21487;&#20197;&#30452;&#25509;&#30331;&#24405; Procore Web &#24212;&#29992;&#31243;&#24207;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#25105;&#30340;&#20844;&#21496;&#24050;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#21487;&#20197;&#30452;&#25509;&#30331;&#24405; Procore Web &#24212;&#29992;&#31243;&#24207;&#21527;&#65311;</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="&#22914;&#26524;&#25105;&#20204;&#20844;&#21496;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#26159;&#21542;&#38656;&#35201;&#21019;&#24314; Procore &#29992;&#25143;&#36134;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#25105;&#20204;&#20844;&#21496;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#26159;&#21542;&#38656;&#35201;&#21019;&#24314; Procore &#29992;&#25143;&#36134;&#25143;&#65311;</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="&#22312;&#25105;&#30340; Procore &#20844;&#21496;&#36134;&#25143;&#20013;&#23454;&#26045; SSO &#20043;&#21069;&#65292;&#22914;&#20309;&#22312;&#27801;&#31665;&#29615;&#22659;&#20013;&#37197;&#32622; SSO &#20197;&#36827;&#34892;&#27979;&#35797;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#25105;&#30340; Procore &#20844;&#21496;&#36134;&#25143;&#20013;&#23454;&#26045; SSO &#20043;&#21069;&#65292;&#22914;&#20309;&#22312;&#27801;&#31665;&#29615;&#22659;&#20013;&#37197;&#32622; SSO &#20197;&#36827;&#34892;&#27979;&#35797;&#65311;</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="&#22914;&#20309;&#20026; Procore &#37197;&#32622; Okta &#21333;&#28857;&#30331;&#24405; (SAML 2.0)&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026; Procore &#37197;&#32622; Okta &#21333;&#28857;&#30331;&#24405; (SAML 2.0)&#65311;</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="&#22914;&#20309;&#20351;&#29992; Procore &#35774;&#32622;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20351;&#29992; Procore &#35774;&#32622;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;</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="&#22914;&#20309;&#22312;&#20844;&#21496;&#30340; Procore &#21333;&#28857;&#30331;&#24405;&#37197;&#32622;&#35774;&#32622;&#20013;&#26356;&#26032;&#21363;&#23558;&#21040;&#26399;&#30340; x509 &#35777;&#20070;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#20844;&#21496;&#30340; Procore &#21333;&#28857;&#30331;&#24405;&#37197;&#32622;&#35774;&#32622;&#20013;&#26356;&#26032;&#21363;&#23558;&#21040;&#26399;&#30340; x509 &#35777;&#20070;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-single-sign-on-sso" title="&#20160;&#20040;&#26159;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;</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 &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#21644; IdP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>SP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#21644; IdP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;</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 &#25903;&#25345;&#21738;&#20123;&#21333;&#28857;&#30331;&#24405;&#36523;&#20221;&#25552;&#20379;&#21830;&#65311;"><span class="mt-icon-article-none"></span>Procore &#25903;&#25345;&#21738;&#20123;&#21333;&#28857;&#30331;&#24405;&#36523;&#20221;&#25552;&#20379;&#21830;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#20351;&#29992; SSO &#30331;&#24405;&#26102;&#25910;&#21040;&ldquo;&#26410;&#21457;&#29616;&#26377;&#29992;&#25143;&#20351;&#29992;&#32473;&#23450;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&rdquo;&#38169;&#35823;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#20351;&#29992; SSO &#30331;&#24405;&#26102;&#25910;&#21040;&ldquo;&#26410;&#21457;&#29616;&#26377;&#29992;&#25143;&#20351;&#29992;&#32473;&#23450;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&rdquo;&#38169;&#35823;&#65311;</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="&#22914;&#26524;&#25105;&#30340;&#20844;&#21496;&#24050;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#21487;&#20197;&#30452;&#25509;&#30331;&#24405; Procore Web &#24212;&#29992;&#31243;&#24207;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#25105;&#30340;&#20844;&#21496;&#24050;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#21487;&#20197;&#30452;&#25509;&#30331;&#24405; Procore Web &#24212;&#29992;&#31243;&#24207;&#21527;&#65311;</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="&#22914;&#26524;&#25105;&#20204;&#20844;&#21496;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#26159;&#21542;&#38656;&#35201;&#21019;&#24314; Procore &#29992;&#25143;&#36134;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#25105;&#20204;&#20844;&#21496;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#26159;&#21542;&#38656;&#35201;&#21019;&#24314; Procore &#29992;&#25143;&#36134;&#25143;&#65311;</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 &#30340;&#21333;&#28857;&#30331;&#24405;&#38598;&#25104;&#25903;&#25345;&#21333;&#20010;&#22495;&#36824;&#26159;&#22810;&#20010;&#22495;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#21333;&#28857;&#30331;&#24405;&#38598;&#25104;&#25903;&#25345;&#21333;&#20010;&#22495;&#36824;&#26159;&#22810;&#20010;&#22495;&#65311;</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="&#22312;&#25105;&#30340; Procore &#20844;&#21496;&#36134;&#25143;&#20013;&#23454;&#26045; SSO &#20043;&#21069;&#65292;&#22914;&#20309;&#22312;&#27801;&#31665;&#29615;&#22659;&#20013;&#37197;&#32622; SSO &#20197;&#36827;&#34892;&#27979;&#35797;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#25105;&#30340; Procore &#20844;&#21496;&#36134;&#25143;&#20013;&#23454;&#26045; SSO &#20043;&#21069;&#65292;&#22914;&#20309;&#22312;&#27801;&#31665;&#29615;&#22659;&#20013;&#37197;&#32622; SSO &#20197;&#36827;&#34892;&#27979;&#35797;&#65311;</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="&#22914;&#20309;&#20026; Procore &#37197;&#32622; Okta &#21333;&#28857;&#30331;&#24405; (SAML 2.0)&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026; Procore &#37197;&#32622; Okta &#21333;&#28857;&#30331;&#24405; (SAML 2.0)&#65311;</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="&#22914;&#20309;&#20351;&#29992; Procore &#35774;&#32622;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20351;&#29992; Procore &#35774;&#32622;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;</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="&#22914;&#20309;&#22312;&#20844;&#21496;&#30340; Procore &#21333;&#28857;&#30331;&#24405;&#37197;&#32622;&#35774;&#32622;&#20013;&#26356;&#26032;&#21363;&#23558;&#21040;&#26399;&#30340; x509 &#35777;&#20070;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#20844;&#21496;&#30340; Procore &#21333;&#28857;&#30331;&#24405;&#37197;&#32622;&#35774;&#32622;&#20013;&#26356;&#26032;&#21363;&#23558;&#21040;&#26399;&#30340; x509 &#35777;&#20070;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-single-sign-on-sso" title="&#20160;&#20040;&#26159;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;</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 &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#21644; IdP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>SP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#21644; IdP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;</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 &#25903;&#25345;&#21738;&#20123;&#21333;&#28857;&#30331;&#24405;&#36523;&#20221;&#25552;&#20379;&#21830;&#65311;"><span class="mt-icon-article-none"></span>Procore &#25903;&#25345;&#21738;&#20123;&#21333;&#28857;&#30331;&#24405;&#36523;&#20221;&#25552;&#20379;&#21830;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#20351;&#29992; SSO &#30331;&#24405;&#26102;&#25910;&#21040;&ldquo;&#26410;&#21457;&#29616;&#26377;&#29992;&#25143;&#20351;&#29992;&#32473;&#23450;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&rdquo;&#38169;&#35823;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#20351;&#29992; SSO &#30331;&#24405;&#26102;&#25910;&#21040;&ldquo;&#26410;&#21457;&#29616;&#26377;&#29992;&#25143;&#20351;&#29992;&#32473;&#23450;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&rdquo;&#38169;&#35823;&#65311;</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="&#22312;&#25105;&#30340; Procore &#20844;&#21496;&#36134;&#25143;&#20013;&#23454;&#26045; SSO &#20043;&#21069;&#65292;&#22914;&#20309;&#22312;&#27801;&#31665;&#29615;&#22659;&#20013;&#37197;&#32622; SSO &#20197;&#36827;&#34892;&#27979;&#35797;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#25105;&#30340; Procore &#20844;&#21496;&#36134;&#25143;&#20013;&#23454;&#26045; SSO &#20043;&#21069;&#65292;&#22914;&#20309;&#22312;&#27801;&#31665;&#29615;&#22659;&#20013;&#37197;&#32622; SSO &#20197;&#36827;&#34892;&#27979;&#35797;&#65311;</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="&#22914;&#20309;&#22312;&#20844;&#21496;&#30340; Procore &#21333;&#28857;&#30331;&#24405;&#37197;&#32622;&#35774;&#32622;&#20013;&#26356;&#26032;&#21363;&#23558;&#21040;&#26399;&#30340; x509 &#35777;&#20070;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#20844;&#21496;&#30340; Procore &#21333;&#28857;&#30331;&#24405;&#37197;&#32622;&#35774;&#32622;&#20013;&#26356;&#26032;&#21363;&#23558;&#21040;&#26399;&#30340; x509 &#35777;&#20070;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#20351;&#29992; SSO &#30331;&#24405;&#26102;&#25910;&#21040;&ldquo;&#26410;&#21457;&#29616;&#26377;&#29992;&#25143;&#20351;&#29992;&#32473;&#23450;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&rdquo;&#38169;&#35823;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#20351;&#29992; SSO &#30331;&#24405;&#26102;&#25910;&#21040;&ldquo;&#26410;&#21457;&#29616;&#26377;&#29992;&#25143;&#20351;&#29992;&#32473;&#23450;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&rdquo;&#38169;&#35823;&#65311;</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="&#22312;&#25105;&#30340; Procore &#20844;&#21496;&#36134;&#25143;&#20013;&#23454;&#26045; SSO &#20043;&#21069;&#65292;&#22914;&#20309;&#22312;&#27801;&#31665;&#29615;&#22659;&#20013;&#37197;&#32622; SSO &#20197;&#36827;&#34892;&#27979;&#35797;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#25105;&#30340; Procore &#20844;&#21496;&#36134;&#25143;&#20013;&#23454;&#26045; SSO &#20043;&#21069;&#65292;&#22914;&#20309;&#22312;&#27801;&#31665;&#29615;&#22659;&#20013;&#37197;&#32622; SSO &#20197;&#36827;&#34892;&#27979;&#35797;&#65311;</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="&#22914;&#20309;&#22312;&#20844;&#21496;&#30340; Procore &#21333;&#28857;&#30331;&#24405;&#37197;&#32622;&#35774;&#32622;&#20013;&#26356;&#26032;&#21363;&#23558;&#21040;&#26399;&#30340; x509 &#35777;&#20070;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#20844;&#21496;&#30340; Procore &#21333;&#28857;&#30331;&#24405;&#37197;&#32622;&#35774;&#32622;&#20013;&#26356;&#26032;&#21363;&#23558;&#21040;&#26399;&#30340; x509 &#35777;&#20070;&#65311;</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 &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#21644; IdP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>SP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#21644; IdP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;</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 &#25903;&#25345;&#21738;&#20123;&#21333;&#28857;&#30331;&#24405;&#36523;&#20221;&#25552;&#20379;&#21830;&#65311;"><span class="mt-icon-article-none"></span>Procore &#25903;&#25345;&#21738;&#20123;&#21333;&#28857;&#30331;&#24405;&#36523;&#20221;&#25552;&#20379;&#21830;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#20351;&#29992; SSO &#30331;&#24405;&#26102;&#25910;&#21040;&ldquo;&#26410;&#21457;&#29616;&#26377;&#29992;&#25143;&#20351;&#29992;&#32473;&#23450;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&rdquo;&#38169;&#35823;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#20351;&#29992; SSO &#30331;&#24405;&#26102;&#25910;&#21040;&ldquo;&#26410;&#21457;&#29616;&#26377;&#29992;&#25143;&#20351;&#29992;&#32473;&#23450;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&rdquo;&#38169;&#35823;&#65311;</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 &#30340;&#21333;&#28857;&#30331;&#24405;&#38598;&#25104;&#25903;&#25345;&#21333;&#20010;&#22495;&#36824;&#26159;&#22810;&#20010;&#22495;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#21333;&#28857;&#30331;&#24405;&#38598;&#25104;&#25903;&#25345;&#21333;&#20010;&#22495;&#36824;&#26159;&#22810;&#20010;&#22495;&#65311;</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="&#22312;&#25105;&#30340; Procore &#20844;&#21496;&#36134;&#25143;&#20013;&#23454;&#26045; SSO &#20043;&#21069;&#65292;&#22914;&#20309;&#22312;&#27801;&#31665;&#29615;&#22659;&#20013;&#37197;&#32622; SSO &#20197;&#36827;&#34892;&#27979;&#35797;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#25105;&#30340; Procore &#20844;&#21496;&#36134;&#25143;&#20013;&#23454;&#26045; SSO &#20043;&#21069;&#65292;&#22914;&#20309;&#22312;&#27801;&#31665;&#29615;&#22659;&#20013;&#37197;&#32622; SSO &#20197;&#36827;&#34892;&#27979;&#35797;&#65311;</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="&#22914;&#20309;&#22312;&#20844;&#21496;&#30340; Procore &#21333;&#28857;&#30331;&#24405;&#37197;&#32622;&#35774;&#32622;&#20013;&#26356;&#26032;&#21363;&#23558;&#21040;&#26399;&#30340; x509 &#35777;&#20070;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#20844;&#21496;&#30340; Procore &#21333;&#28857;&#30331;&#24405;&#37197;&#32622;&#35774;&#32622;&#20013;&#26356;&#26032;&#21363;&#23558;&#21040;&#26399;&#30340; x509 &#35777;&#20070;&#65311;</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 &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#21644; IdP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>SP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#21644; IdP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;</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 &#25903;&#25345;&#21738;&#20123;&#21333;&#28857;&#30331;&#24405;&#36523;&#20221;&#25552;&#20379;&#21830;&#65311;"><span class="mt-icon-article-none"></span>Procore &#25903;&#25345;&#21738;&#20123;&#21333;&#28857;&#30331;&#24405;&#36523;&#20221;&#25552;&#20379;&#21830;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#20351;&#29992; SSO &#30331;&#24405;&#26102;&#25910;&#21040;&ldquo;&#26410;&#21457;&#29616;&#26377;&#29992;&#25143;&#20351;&#29992;&#32473;&#23450;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&rdquo;&#38169;&#35823;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#20351;&#29992; SSO &#30331;&#24405;&#26102;&#25910;&#21040;&ldquo;&#26410;&#21457;&#29616;&#26377;&#29992;&#25143;&#20351;&#29992;&#32473;&#23450;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&rdquo;&#38169;&#35823;&#65311;</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="&#26159;&#21542;&#21487;&#20197;&#40664;&#35748;&#22312;&#25991;&#26723;&#24037;&#20855;&#20013;&#23558;&#25991;&#20214;&#21644;&#25991;&#20214;&#22841;&#35774;&#20026;&#31169;&#23494;&#65311;"><span class="mt-icon-article-none"></span>&#26159;&#21542;&#21487;&#20197;&#40664;&#35748;&#22312;&#25991;&#26723;&#24037;&#20855;&#20013;&#23558;&#25991;&#20214;&#21644;&#25991;&#20214;&#22841;&#35774;&#20026;&#31169;&#23494;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#20160;&#20040;&#26159;&#21457;&#31080;&#32852;&#31995;&#20154;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21457;&#31080;&#32852;&#31995;&#20154;&#65311;</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="&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#20160;&#20040;&#26159; Procore &#20013;&#30340;&#26435;&#38480;&#20197;&#21450;&#23427;&#20204;&#22914;&#20309;&#24037;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#20013;&#30340;&#26435;&#38480;&#20197;&#21450;&#23427;&#20204;&#22914;&#20309;&#24037;&#20316;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-role-based-permissions" title="&#20160;&#20040;&#26159;&#22522;&#20110;&#35282;&#33394;&#30340;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#22522;&#20110;&#35282;&#33394;&#30340;&#26435;&#38480;&#65311;</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 &#20013;&#30340;&#40664;&#35748;&#26435;&#38480;&#32423;&#21035;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#40664;&#35748;&#26435;&#38480;&#32423;&#21035;&#26377;&#21738;&#20123;&#65311;</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="&#20160;&#20040;&#26159; Procore &#20013;&#30340;&#40664;&#35748;&#39033;&#30446;&#26435;&#38480;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#20013;&#30340;&#40664;&#35748;&#39033;&#30446;&#26435;&#38480;&#27169;&#26495;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-commitments-workflows" title="&#21512;&#32422;&#24037;&#20316;&#27969;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&#24037;&#20316;&#27969;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#20844;&#21496;&#32423;&#21035;&#30446;&#24405;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#20844;&#21496;&#32423;&#21035;&#30446;&#24405;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#20844;&#21496;&#25237;&#26631;&#26495;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#20844;&#21496;&#25237;&#26631;&#26495;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#32423;&#21035;&#31649;&#29702;&#21592;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#32423;&#21035;&#31649;&#29702;&#21592;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#32423;&#21035;&#30446;&#24405;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#32423;&#21035;&#30446;&#24405;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#32423;&#21035;&#25991;&#26723;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#32423;&#21035;&#25991;&#26723;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#32423;&#21035;&#26816;&#26597;&#20219;&#21153;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#32423;&#21035;&#26816;&#26597;&#20219;&#21153;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#32423;&#21035;&#36827;&#24230;&#35745;&#21010;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#32423;&#21035;&#36827;&#24230;&#35745;&#21010;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#32423;&#21035;&#32771;&#21220;&#34920;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#32423;&#21035;&#32771;&#21220;&#34920;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#34892;&#21160;&#35745;&#21010;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#34892;&#21160;&#35745;&#21010;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#25237;&#26631;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#25237;&#26631;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#39044;&#31639;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#39044;&#31639;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#23458;&#25143;&#21512;&#21516;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#23458;&#25143;&#21512;&#21516;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#21512;&#32422;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#21512;&#32422;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#36890;&#20449;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#36890;&#20449;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#24037;&#20316;&#26085;&#24535;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#24037;&#20316;&#26085;&#24535;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#30452;&#25509;&#25104;&#26412;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#30452;&#25509;&#25104;&#26412;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#22270;&#32440;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#22270;&#32440;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#36164;&#37329;&#24037;&#20855;&#26377;&#21738;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#36164;&#37329;&#24037;&#20855;&#26377;&#21738;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#20250;&#35758;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#20250;&#35758;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#35266;&#23519;&#20219;&#21153;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#35266;&#23519;&#20219;&#21153;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#29031;&#29255;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#29031;&#29255;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#20027;&#21512;&#21516;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#20027;&#21512;&#21516;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#23614;&#39033;&#28165;&#21333;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#23614;&#39033;&#28165;&#21333;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340; RFI &#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340; RFI &#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#36865;&#23457;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#36865;&#23457;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#20256;&#36755;&#35760;&#24405;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#20256;&#36755;&#35760;&#24405;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-assignable-permissions-template" title="&#20160;&#20040;&#26159;&#21487;&#20998;&#37197;&#26435;&#38480;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21487;&#20998;&#37197;&#26435;&#38480;&#27169;&#26495;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-permissions-template" title="&#20160;&#20040;&#26159;&#26435;&#38480;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#26435;&#38480;&#27169;&#26495;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#35841;&#21487;&#20197;&#26597;&#30475;&#39033;&#30446;&#30446;&#24405;&#20013;&#21015;&#20986;&#30340;&#29992;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#35841;&#21487;&#20197;&#26597;&#30475;&#39033;&#30446;&#30446;&#24405;&#20013;&#21015;&#20986;&#30340;&#29992;&#25143;&#65311;</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="&#29616;&#37329;&#27969;&#39044;&#27979;&#21644;&#36164;&#37329;&#35268;&#21010;&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30456;&#20114;&#20316;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#29616;&#37329;&#27969;&#39044;&#27979;&#21644;&#36164;&#37329;&#35268;&#21010;&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30456;&#20114;&#20316;&#29992;&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#33258;&#23450;&#20041;&#39033;&#30446;&#31867;&#22411;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#33258;&#23450;&#20041;&#39033;&#30446;&#31867;&#22411;&#36873;&#39033;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#36755;&#20837;&#24403;&#24180;&#30340;&#39044;&#31639;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#36755;&#20837;&#24403;&#24180;&#30340;&#39044;&#31639;&#39033;&#30446;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#25214;&#21040;&#23384;&#26723;&#30340;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#25214;&#21040;&#23384;&#26723;&#30340;&#39033;&#30446;&#65311;</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="&#22914;&#20309;&#22312; Procore &#20013;&#30340;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#39033;&#30446;&#31649;&#29702;&#24037;&#20855;&#21253;&#20043;&#38388;&#20999;&#25442;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#20013;&#30340;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#39033;&#30446;&#31649;&#29702;&#24037;&#20855;&#21253;&#20043;&#38388;&#20999;&#25442;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#22242;&#38431;&#25104;&#21592;&#26080;&#27861;&#26597;&#30475;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#22242;&#38431;&#25104;&#21592;&#26080;&#27861;&#26597;&#30475;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#39033;&#30446;&#65311;</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="&#29616;&#37329;&#27969;&#39044;&#27979;&#21644;&#36164;&#37329;&#35268;&#21010;&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30456;&#20114;&#20316;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#29616;&#37329;&#27969;&#39044;&#27979;&#21644;&#36164;&#37329;&#35268;&#21010;&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30456;&#20114;&#20316;&#29992;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#36164;&#37329;&#35268;&#21010;&#30340;&#25968;&#25454;&#28857;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#36164;&#37329;&#35268;&#21010;&#30340;&#25968;&#25454;&#28857;&#26159;&#20160;&#20040;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&ldquo;&#39033;&#30446;&#27604;&#36739;&rdquo;&#26631;&#31614;&#39029;&#20013;&#30340;&#31661;&#22836;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&ldquo;&#39033;&#30446;&#27604;&#36739;&rdquo;&#26631;&#31614;&#39029;&#20013;&#30340;&#31661;&#22836;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;</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="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#39033;&#30446;&#27604;&#36739;&#30340;&#31034;&#20363;&#29992;&#20363;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#39033;&#30446;&#27604;&#36739;&#30340;&#31034;&#20363;&#29992;&#20363;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#23637;&#24320;&ldquo;&#20013;&#26631;&#20540;&rdquo;&#34892;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#23637;&#24320;&ldquo;&#20013;&#26631;&#20540;&rdquo;&#34892;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#36755;&#20837;&#24403;&#24180;&#30340;&#39044;&#31639;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#36755;&#20837;&#24403;&#24180;&#30340;&#39044;&#31639;&#39033;&#30446;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#25214;&#21040;&#23384;&#26723;&#30340;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#25214;&#21040;&#23384;&#26723;&#30340;&#39033;&#30446;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21153;&#21644;&#36164;&#37329;&#35268;&#21010;&#25253;&#21578;&#30340;&#19968;&#20123;&#26368;&#20339;&#23454;&#36341;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21153;&#21644;&#36164;&#37329;&#35268;&#21010;&#25253;&#21578;&#30340;&#19968;&#20123;&#26368;&#20339;&#23454;&#36341;&#26159;&#20160;&#20040;&#65311;</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="&#21487;&#20197;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#29983;&#25104;&#21738;&#20123;&#25253;&#21578;&#31034;&#20363;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#29983;&#25104;&#21738;&#20123;&#25253;&#21578;&#31034;&#20363;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#33258;&#23450;&#20041;&#25253;&#21578;&#21487;&#20351;&#29992;&#21738;&#20123;&#25968;&#25454;&#28857;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#33258;&#23450;&#20041;&#25253;&#21578;&#21487;&#20351;&#29992;&#21738;&#20123;&#25968;&#25454;&#28857;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&ldquo;&#39033;&#30446;&#27604;&#36739;&rdquo;&#26631;&#31614;&#39029;&#20013;&#30340;&#31661;&#22836;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&ldquo;&#39033;&#30446;&#27604;&#36739;&rdquo;&#26631;&#31614;&#39029;&#20013;&#30340;&#31661;&#22836;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;</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="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#39033;&#30446;&#27604;&#36739;&#30340;&#31034;&#20363;&#29992;&#20363;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#39033;&#30446;&#27604;&#36739;&#30340;&#31034;&#20363;&#29992;&#20363;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-project-cost-reporting-in-portfolio-financials" title="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#25104;&#26412;&#25253;&#21578;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#25104;&#26412;&#25253;&#21578;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#23637;&#24320;&ldquo;&#20013;&#26631;&#20540;&rdquo;&#34892;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#23637;&#24320;&ldquo;&#20013;&#26631;&#20540;&rdquo;&#34892;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#20174;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#23548;&#20986;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#20174;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#23548;&#20986;&#39033;&#30446;&#65311;</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="&#25105;&#21487;&#20197;&#22312;&#39033;&#30446;&#30340;&#29031;&#29255;&#24037;&#20855;&#20013;&#23558;&#25152;&#26377;&#29031;&#29255;&#26631;&#35760;&#20026;&ldquo;&#31169;&#23494;&rdquo;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312;&#39033;&#30446;&#30340;&#29031;&#29255;&#24037;&#20855;&#20013;&#23558;&#25152;&#26377;&#29031;&#29255;&#26631;&#35760;&#20026;&ldquo;&#31169;&#23494;&rdquo;&#21527;&#65311;</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="&#22914;&#20309;&#20026; mailto &#38142;&#25509;&#26356;&#25913;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#30340;&#40664;&#35748;&#30005;&#23376;&#37038;&#20214;&#23458;&#25143;&#31471;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026; mailto &#38142;&#25509;&#26356;&#25913;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#30340;&#40664;&#35748;&#30005;&#23376;&#37038;&#20214;&#23458;&#25143;&#31471;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-multi-tiered-locations" title="&#20160;&#20040;&#26159;&#22810;&#23618;&#22320;&#28857;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#22810;&#23618;&#22320;&#28857;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-does-the-search-box-search-for" title="&#29031;&#29255;&#24037;&#20855;&#20013;&#30340;&ldquo;&#25628;&#32034;&rdquo;&#26694;&#20250;&#25628;&#32034;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#29031;&#29255;&#24037;&#20855;&#20013;&#30340;&ldquo;&#25628;&#32034;&rdquo;&#26694;&#20250;&#25628;&#32034;&#20160;&#20040;&#65311;</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="&#39033;&#30446;&#30340;&#29031;&#29255;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#29031;&#29255;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-standard-trades-are-available-in-procore" title="Procore &#20013;&#25552;&#20379;&#21738;&#20123;&#26631;&#20934;&#34892;&#19994;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#25552;&#20379;&#21738;&#20123;&#26631;&#20934;&#34892;&#19994;&#65311;</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="&#22312;&#21738;&#37324;&#21487;&#20197;&#25214;&#21040;&#29992;&#20110;&#21521; Procore &#21457;&#36865;&#24037;&#20316;&#26085;&#24535;&#12289;&#29031;&#29255;&#12289;&#25991;&#26723;&#21644;&#30005;&#23376;&#37038;&#20214;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#21738;&#37324;&#21487;&#20197;&#25214;&#21040;&#29992;&#20110;&#21521; Procore &#21457;&#36865;&#24037;&#20316;&#26085;&#24535;&#12289;&#29031;&#29255;&#12289;&#25991;&#26723;&#21644;&#30005;&#23376;&#37038;&#20214;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#25237;&#26631;&#20154;&#21487;&#20197;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#25552;&#20132;&#25237;&#26631;&#36824;&#26159;&#24517;&#39035;&#30331;&#24405;&#65311;"><span class="mt-icon-article-none"></span>&#25237;&#26631;&#20154;&#21487;&#20197;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#25552;&#20132;&#25237;&#26631;&#36824;&#26159;&#24517;&#39035;&#30331;&#24405;&#65311;</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="&#33021;&#21542;&#20174;&#25237;&#26631;&#20013;&#31227;&#38500;&#26126;&#32454;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#33021;&#21542;&#20174;&#25237;&#26631;&#20013;&#31227;&#38500;&#26126;&#32454;&#39033;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#25105;&#30340;&#20844;&#21496;&#22914;&#20309;&#36890;&#36807; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#25509;&#25910;&#25237;&#26631;&#36992;&#35831;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#30340;&#20844;&#21496;&#22914;&#20309;&#36890;&#36807; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#25509;&#25910;&#25237;&#26631;&#36992;&#35831;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#20174; Procore &#19979;&#36733;&#21644;&#25171;&#24320; .ZIP &#25991;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#20174; Procore &#19979;&#36733;&#21644;&#25171;&#24320; .ZIP &#25991;&#20214;&#65311;</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="&#25105;&#21487;&#20197;&#20026;&#20854;&#20182;&#29992;&#25143;&#28155;&#21152;&#20010;&#20154;&#22836;&#20687;&#25110;&#20010;&#20154;&#36164;&#26009;&#29031;&#29255;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#20026;&#20854;&#20182;&#29992;&#25143;&#28155;&#21152;&#20010;&#20154;&#22836;&#20687;&#25110;&#20010;&#20154;&#36164;&#26009;&#29031;&#29255;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#22312; Procore &#20013;&#26356;&#25913;&#20844;&#21496;&#12289;&#39033;&#30446;&#25110;&#29992;&#25143;&#35821;&#35328;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312; Procore &#20013;&#26356;&#25913;&#20844;&#21496;&#12289;&#39033;&#30446;&#25110;&#29992;&#25143;&#35821;&#35328;&#21527;&#65311;</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="&#26159;&#21542;&#21487;&#20197;&#20026;&#25105;&#30340;&#39033;&#30446;&#24037;&#20855;&#35774;&#32622;&#22810;&#20010;&#25910;&#34255;&#22841;&#21015;&#34920;&#65292;&#20197;&#24212;&#29992;&#20110;&#19981;&#21516;&#30340;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#26159;&#21542;&#21487;&#20197;&#20026;&#25105;&#30340;&#39033;&#30446;&#24037;&#20855;&#35774;&#32622;&#22810;&#20010;&#25910;&#34255;&#22841;&#21015;&#34920;&#65292;&#20197;&#24212;&#29992;&#20110;&#19981;&#21516;&#30340;&#39033;&#30446;&#65311;</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="&#22914;&#20309;&#21521; Procore &#28155;&#21152;&#22836;&#20687;&#25110;&#20010;&#20154;&#36164;&#26009;&#29031;&#29255;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21521; Procore &#28155;&#21152;&#22836;&#20687;&#25110;&#20010;&#20154;&#36164;&#26009;&#29031;&#29255;&#65311;</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="&#22914;&#20309;&#22312; Procore &#20013;&#23558;&#24037;&#20855;&#28155;&#21152;&#21040;&#25910;&#34255;&#22841;&#21015;&#34920;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#20013;&#23558;&#24037;&#20855;&#28155;&#21152;&#21040;&#25910;&#34255;&#22841;&#21015;&#34920;&#65311;</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="&#22914;&#20309;&#30830;&#23450;&#22320;&#22336;&#30340;&#32428;&#24230;&#21644;&#32463;&#24230;&#20540;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#30830;&#23450;&#22320;&#22336;&#30340;&#32428;&#24230;&#21644;&#32463;&#24230;&#20540;&#65311;</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="&#22914;&#20309;&#20102;&#35299;&#25105;&#30340; DocuSign &#36134;&#25143;&#26159;&#21542;&#19982; Procore &#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20102;&#35299;&#25105;&#30340; DocuSign &#36134;&#25143;&#26159;&#21542;&#19982; Procore &#21516;&#27493;&#65311;</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="&#22914;&#20309;&#20351;&#29992;&#23548;&#33322;&#26639;&#36820;&#22238;&#20844;&#21496;&#39033;&#30446;&#38598;&#21512;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20351;&#29992;&#23548;&#33322;&#26639;&#36820;&#22238;&#20844;&#21496;&#39033;&#30446;&#38598;&#21512;&#65311;</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="&#26159;&#21542;&#26377;&#21150;&#27861;&#26597;&#30475; Procore &#20013;&#20998;&#37197;&#32473;&#25105;&#30340;&#25152;&#26377;&#26410;&#23436;&#25104;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#26159;&#21542;&#26377;&#21150;&#27861;&#26597;&#30475; Procore &#20013;&#20998;&#37197;&#32473;&#25105;&#30340;&#25152;&#26377;&#26410;&#23436;&#25104;&#39033;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-project-roles" title="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#39033;&#30446;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#39033;&#30446;&#35282;&#33394;&#65311;</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="&#20160;&#20040;&#26159;&#39033;&#30446;&#38598;&#21512;&#24037;&#20855;&#30340;&#20581;&#24247;&#20202;&#34920;&#26495;&#30340;&#38408;&#20540;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#39033;&#30446;&#38598;&#21512;&#24037;&#20855;&#30340;&#20581;&#24247;&#20202;&#34920;&#26495;&#30340;&#38408;&#20540;&#65311;</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="&#39033;&#30446;&#21019;&#24314;&#39029;&#38754;&#19978;&#30340;&ldquo;Code&rdquo;&#23383;&#27573;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#21019;&#24314;&#39029;&#38754;&#19978;&#30340;&ldquo;Code&rdquo;&#23383;&#27573;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-languages-are-available-in-procore" title="Procore &#20013;&#26377;&#21738;&#20123;&#35821;&#35328;&#21487;&#29992;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#26377;&#21738;&#20123;&#35821;&#35328;&#21487;&#29992;&#65311;</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="&#20316;&#19994;&#12289;&#29238;&#20316;&#19994;&#21644;&#23376;&#20316;&#19994;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#20316;&#19994;&#12289;&#29238;&#20316;&#19994;&#21644;&#23376;&#20316;&#19994;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;</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="&#39033;&#30446;&#38598;&#21512;&#24037;&#20855;&#30340;&#35270;&#22270;&#20013;&#25903;&#25345;&#21738;&#20123;&#31579;&#36873;&#22120;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#38598;&#21512;&#24037;&#20855;&#30340;&#35270;&#22270;&#20013;&#25903;&#25345;&#21738;&#20123;&#31579;&#36873;&#22120;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#23558; Procore &#24037;&#20855;&#28155;&#21152;&#21040;&#25910;&#34255;&#22841;&#21015;&#34920;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#23558; Procore &#24037;&#20855;&#28155;&#21152;&#21040;&#25910;&#34255;&#22841;&#21015;&#34920;&#20013;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-or-activate-procore-projects" title="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#25110;&#28608;&#27963; Procore &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#25110;&#28608;&#27963; Procore &#39033;&#30446;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#39033;&#30446;&#20013;&#30475;&#19981;&#21040;&#25152;&#26377;&#25910;&#34255;&#30340;&#24037;&#20855;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#39033;&#30446;&#20013;&#30475;&#19981;&#21040;&#25152;&#26377;&#25910;&#34255;&#30340;&#24037;&#20855;&#65311;</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="&#20026;&#20160;&#20040;&#22312;&ldquo;&#25105;&#30340;&#20010;&#20154;&#36164;&#26009;&#35774;&#32622;&rdquo;&#20013;&#30475;&#19981;&#21040;&ldquo;&#25910;&#34255;&#22841;&rdquo;&#26631;&#31614;&#39029;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#22312;&ldquo;&#25105;&#30340;&#20010;&#20154;&#36164;&#26009;&#35774;&#32622;&rdquo;&#20013;&#30475;&#19981;&#21040;&ldquo;&#25910;&#34255;&#22841;&rdquo;&#26631;&#31614;&#39029;&#65311;</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="&#20026;&#20160;&#20040;&#27809;&#26377;&#37197;&#32622;&#20581;&#24247;&#20202;&#34920;&#26495;&#30340;&#36130;&#21153;&#20581;&#24247;&#37096;&#20998;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#27809;&#26377;&#37197;&#32622;&#20581;&#24247;&#20202;&#34920;&#26495;&#30340;&#36130;&#21153;&#20581;&#24247;&#37096;&#20998;&#65311;</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="&#20026;&#20160;&#20040;&ldquo;&#25105;&#30340;&#26410;&#23436;&#25104;&#39033;&rdquo;&#21015;&#34920;&#19981;&#26174;&#31034;&#24050;&#20998;&#37197;&#32473;&#25105;&#30340;&#20219;&#21153;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&ldquo;&#25105;&#30340;&#26410;&#23436;&#25104;&#39033;&rdquo;&#21015;&#34920;&#19981;&#26174;&#31034;&#24050;&#20998;&#37197;&#32473;&#25105;&#30340;&#20219;&#21153;&#65311;</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="&#20026;&#20160;&#20040;&ldquo;&#21457;&#36865;&#21040; ERP&rdquo;&#25353;&#38062;&#21464;&#26263;&#24182;&#19988;&#22312;&#39033;&#30446;&#21019;&#24314;&#21161;&#25163;&#20013;&#19981;&#21487;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&ldquo;&#21457;&#36865;&#21040; ERP&rdquo;&#25353;&#38062;&#21464;&#26263;&#24182;&#19988;&#22312;&#39033;&#30446;&#21019;&#24314;&#21161;&#25163;&#20013;&#19981;&#21487;&#29992;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#26159;&#21542;&#25552;&#20379;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#26159;&#21542;&#25552;&#20379;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#33258;&#23450;&#20041;&#39033;&#30446;&#31867;&#22411;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#33258;&#23450;&#20041;&#39033;&#30446;&#31867;&#22411;&#36873;&#39033;&#65311;</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="&#25105;&#21487;&#20197;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#32534;&#36753;&#25105;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#25110;&#21457;&#31080;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#32534;&#36753;&#25105;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#25110;&#21457;&#31080;&#21527;&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#25237;&#26631;&#23460;&#30340;&#25237;&#26631;&#36882;&#20132;&#20013;&#21253;&#21547;&#25187;&#38500;&#39069;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312;&#25237;&#26631;&#23460;&#30340;&#25237;&#26631;&#36882;&#20132;&#20013;&#21253;&#21547;&#25187;&#38500;&#39069;&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#25237;&#26631;&#23460;&#25171;&#21360;&#25110;&#23548;&#20986;&#25105;&#30340;&#25237;&#26631;&#21103;&#26412;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312;&#25237;&#26631;&#23460;&#25171;&#21360;&#25110;&#23548;&#20986;&#25105;&#30340;&#25237;&#26631;&#21103;&#26412;&#65311;</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="&#25105;&#33021;&#21542;&#25509;&#25910;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&#27599;&#26085;&#27963;&#21160;&#25688;&#35201;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#25509;&#25910;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&#27599;&#26085;&#27963;&#21160;&#25688;&#35201;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#37324;&#31243;&#30865;&#26159;&#21542;&#19982;&#25105;&#30340;&#22806;&#37096;&#39033;&#30446;&#36827;&#24230;&#35745;&#21010;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#37324;&#31243;&#30865;&#26159;&#21542;&#19982;&#25105;&#30340;&#22806;&#37096;&#39033;&#30446;&#36827;&#24230;&#35745;&#21010;&#21516;&#27493;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-templates-created-in-portfolio-financials" title="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#21019;&#24314;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#21019;&#24314;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#23558;&#25237;&#26631;&#20154;&#38145;&#23450;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#30340;&#23494;&#23553;&#25237;&#26631;&#23460;&#20043;&#22806;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#25237;&#26631;&#20154;&#38145;&#23450;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#30340;&#23494;&#23553;&#25237;&#26631;&#23460;&#20043;&#22806;&#65311;</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="&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#28155;&#21152;&#33258;&#23450;&#20041;&#25237;&#26631;&#34920;&#21333;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#28155;&#21152;&#33258;&#23450;&#20041;&#25237;&#26631;&#34920;&#21333;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#28155;&#21152;&#33258;&#23450;&#20041;&#25104;&#26412;&#36319;&#36394;&#22120;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#28155;&#21152;&#33258;&#23450;&#20041;&#25104;&#26412;&#36319;&#36394;&#22120;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25104;&#26412;&#39033;&#30340;&#21333;&#20010;&#20540;&#32534;&#21046;&#39044;&#31639;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25104;&#26412;&#39033;&#30340;&#21333;&#20010;&#20540;&#32534;&#21046;&#39044;&#31639;&#65311;</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="&#22914;&#20309;&#25480;&#20104;&ldquo;&#26377;&#38480;&rdquo;&#29992;&#25143;&#35775;&#38382;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#29305;&#23450;&#25237;&#26631;&#23460;&#30340;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#25480;&#20104;&ldquo;&#26377;&#38480;&rdquo;&#29992;&#25143;&#35775;&#38382;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#29305;&#23450;&#25237;&#26631;&#23460;&#30340;&#26435;&#38480;&#65311;</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="&#25105;&#22914;&#20309;&#22788;&#29702;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340; CM &#36153;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#22914;&#20309;&#22788;&#29702;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340; CM &#36153;&#29992;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25163;&#21160;&#28155;&#21152;&#25237;&#26631;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25163;&#21160;&#28155;&#21152;&#25237;&#26631;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30417;&#25511;&#25105;&#25152;&#26377;&#24314;&#31569;&#29289;&#30340;&#27963;&#21160;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30417;&#25511;&#25105;&#25152;&#26377;&#24314;&#31569;&#29289;&#30340;&#27963;&#21160;&#65311;</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="&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#39033;&#30446;&#20013;&#30340;&#25991;&#26723;&#35831;&#27714;&#25991;&#20214;&#22841;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#39033;&#30446;&#20013;&#30340;&#25991;&#26723;&#35831;&#27714;&#25991;&#20214;&#22841;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#36827;&#34892;&#26368;&#20339;&#21644;&#26368;&#21518;&#19968;&#36718;&#25237;&#26631;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#36827;&#34892;&#26368;&#20339;&#21644;&#26368;&#21518;&#19968;&#36718;&#25237;&#26631;&#65311;</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="&#22914;&#20309;&#22312;&#25104;&#26412;&#36319;&#36394;&#22120;&#20013;&#35774;&#32622;&#31199;&#25143;&#26045;&#24037;&#36864;&#27454;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25104;&#26412;&#36319;&#36394;&#22120;&#20013;&#35774;&#32622;&#31199;&#25143;&#26045;&#24037;&#36864;&#27454;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20849;&#20139;&#23545;&#25237;&#26631;&#23460;&#30340;&#35775;&#38382;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20849;&#20139;&#23545;&#25237;&#26631;&#23460;&#30340;&#35775;&#38382;&#26435;&#38480;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20849;&#20139;&#23545;&#21512;&#21516;&#23460;&#30340;&#35775;&#38382;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20849;&#20139;&#23545;&#21512;&#21516;&#23460;&#30340;&#35775;&#38382;&#26435;&#38480;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#35299;&#38500;&#25237;&#26631;&#25110;&#21512;&#21516;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#35299;&#38500;&#25237;&#26631;&#25110;&#21512;&#21516;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#35774;&#32622;&#23457;&#25209;&#24037;&#20316;&#27969;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#35774;&#32622;&#23457;&#25209;&#24037;&#20316;&#27969;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-bid-approvals-work-in-portfolio-financials" title="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-budget-approvals-work-in-portfolio-financials" title="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39044;&#31639;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39044;&#31639;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;</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="&#29616;&#37329;&#27969;&#39044;&#27979;&#21644;&#36164;&#37329;&#35268;&#21010;&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30456;&#20114;&#20316;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#29616;&#37329;&#27969;&#39044;&#27979;&#21644;&#36164;&#37329;&#35268;&#21010;&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30456;&#20114;&#20316;&#29992;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-contract-approvals-work-in-portfolio-financials" title="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#23558;&#24314;&#31569;&#28155;&#21152;&#21040;&#25105;&#30340;&#36134;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#23558;&#24314;&#31569;&#28155;&#21152;&#21040;&#25105;&#30340;&#36134;&#25143;&#65311;</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="&#22914;&#20309;&#21521;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#20379;&#24212;&#21830;&#37197;&#32622;&#25991;&#20214;&#28155;&#21152;&#20854;&#20182;&#32852;&#31995;&#20154;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21521;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#20379;&#24212;&#21830;&#37197;&#32622;&#25991;&#20214;&#28155;&#21152;&#20854;&#20182;&#32852;&#31995;&#20154;&#65311;</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="&#22914;&#20309;&#23558;&#26469;&#33258; Yardi &#30340;&#21457;&#31080;&#22238;&#22635;&#21040;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#26469;&#33258; Yardi &#30340;&#21457;&#31080;&#22238;&#22635;&#21040;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#32534;&#36753;&#21512;&#21516;&#21021;&#22987;&#22870;&#21169;&#37329;&#39069;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#32534;&#36753;&#21512;&#21516;&#21021;&#22987;&#22870;&#21169;&#37329;&#39069;&#65311;</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="&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#39033;&#30446;&#21551;&#29992;&#25104;&#26412;&#20998;&#37197;&#21644;&#32452;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#39033;&#30446;&#21551;&#29992;&#25104;&#26412;&#20998;&#37197;&#21644;&#32452;&#20214;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20026;&#21512;&#21516;&#21551;&#29992;&#20445;&#30041;&#37329;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20026;&#21512;&#21516;&#21551;&#29992;&#20445;&#30041;&#37329;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#36755;&#20837;&#20449;&#29992;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#36755;&#20837;&#20449;&#29992;&#21457;&#31080;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#36755;&#20837;&#24403;&#24180;&#30340;&#39044;&#31639;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#36755;&#20837;&#24403;&#24180;&#30340;&#39044;&#31639;&#39033;&#30446;&#65311;</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="&#25105;&#22914;&#20309;&#30693;&#36947;&#25105;&#22312;&#25237;&#26631;&#23460;&#21457;&#24067;&#30340; RFI &#26159;&#21542;&#24050;&#24471;&#21040;&#31572;&#22797;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#22914;&#20309;&#30693;&#36947;&#25105;&#22312;&#25237;&#26631;&#23460;&#21457;&#24067;&#30340; RFI &#26159;&#21542;&#24050;&#24471;&#21040;&#31572;&#22797;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#25214;&#21040;&#23384;&#26723;&#30340;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#25214;&#21040;&#23384;&#26723;&#30340;&#39033;&#30446;&#65311;</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="&#22914;&#20309;&#30331;&#24405;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#30331;&#24405;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#65311;</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="&#22914;&#20309;&#23548;&#33322;&#21040;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23548;&#33322;&#21040;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-invoice-approvals-work-in-portfolio-financials" title="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21457;&#31080;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21457;&#31080;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#36816;&#34892;&#23494;&#23553;&#25237;&#26631;&#27969;&#31243;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#36816;&#34892;&#23494;&#23553;&#25237;&#26631;&#27969;&#31243;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25552;&#20132;&#21464;&#26356;&#36890;&#30693;&#21333;&#21644;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25552;&#20132;&#21464;&#26356;&#36890;&#30693;&#21333;&#21644;&#21457;&#31080;&#65311;</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="&#22914;&#20309;&#22312; Procore &#20013;&#30340;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#39033;&#30446;&#31649;&#29702;&#24037;&#20855;&#21253;&#20043;&#38388;&#20999;&#25442;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#20013;&#30340;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#39033;&#30446;&#31649;&#29702;&#24037;&#20855;&#21253;&#20043;&#38388;&#20999;&#25442;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-approvals-in-portfolio-financials" title="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#23457;&#25209;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#23457;&#25209;&#65311;</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="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25104;&#26412;&#20998;&#37197;&#21644;&#32452;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25104;&#26412;&#20998;&#37197;&#21644;&#32452;&#20214;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#37324;&#31243;&#30865;&#20381;&#36182;&#39033;&#26159;&#20160;&#20040;&#65311;&#22914;&#20309;&#36827;&#34892;&#35774;&#32622;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#37324;&#31243;&#30865;&#20381;&#36182;&#39033;&#26159;&#20160;&#20040;&#65311;&#22914;&#20309;&#36827;&#34892;&#35774;&#32622;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21153;&#21644;&#36164;&#37329;&#35268;&#21010;&#25253;&#21578;&#30340;&#19968;&#20123;&#26368;&#20339;&#23454;&#36341;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21153;&#21644;&#36164;&#37329;&#35268;&#21010;&#25253;&#21578;&#30340;&#19968;&#20123;&#26368;&#20339;&#23454;&#36341;&#26159;&#20160;&#20040;&#65311;</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="&#21487;&#20197;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#29983;&#25104;&#21738;&#20123;&#25253;&#21578;&#31034;&#20363;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#29983;&#25104;&#21738;&#20123;&#25253;&#21578;&#31034;&#20363;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#33258;&#23450;&#20041;&#25253;&#21578;&#21487;&#20351;&#29992;&#21738;&#20123;&#25968;&#25454;&#28857;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#33258;&#23450;&#20041;&#25253;&#21578;&#21487;&#20351;&#29992;&#21738;&#20123;&#25968;&#25454;&#28857;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#36164;&#37329;&#35268;&#21010;&#30340;&#25968;&#25454;&#28857;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#36164;&#37329;&#35268;&#21010;&#30340;&#25968;&#25454;&#28857;&#26159;&#20160;&#20040;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#22242;&#38431;&#25104;&#21592;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#26435;&#38480;&#32423;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#22242;&#38431;&#25104;&#21592;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#26435;&#38480;&#32423;&#21035;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-uncategorized-invoices-in-portfolio-financials" title="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#26410;&#20998;&#31867;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#26410;&#20998;&#31867;&#21457;&#31080;&#65311;</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="&#25237;&#26631;&#20154;&#22312;&#25237;&#26631;&#23460;&#30475;&#21040;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#25237;&#26631;&#20154;&#22312;&#25237;&#26631;&#23460;&#30475;&#21040;&#20160;&#20040;&#65311;</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="&ldquo;&#38544;&#34255;&#25237;&#26631;&#20449;&#24687;&rdquo;&#23545;&#25237;&#26631;&#23460;&#22242;&#38431;&#20013;&#30340;&#26576;&#20154;&#24847;&#21619;&#30528;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&ldquo;&#38544;&#34255;&#25237;&#26631;&#20449;&#24687;&rdquo;&#23545;&#25237;&#26631;&#23460;&#22242;&#38431;&#20013;&#30340;&#26576;&#20154;&#24847;&#21619;&#30528;&#20160;&#20040;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&ldquo;&#39033;&#30446;&#27604;&#36739;&rdquo;&#26631;&#31614;&#39029;&#20013;&#30340;&#31661;&#22836;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&ldquo;&#39033;&#30446;&#27604;&#36739;&rdquo;&#26631;&#31614;&#39029;&#20013;&#30340;&#31661;&#22836;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#23457;&#25209;&#24037;&#20316;&#27969;&#20250;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#23457;&#25209;&#24037;&#20316;&#27969;&#20250;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;</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="&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#30340;&#25237;&#26631;&#36807;&#31243;&#20013;&#20250;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#30340;&#25237;&#26631;&#36807;&#31243;&#20013;&#20250;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#39033;&#30446;&#27604;&#36739;&#30340;&#31034;&#20363;&#29992;&#20363;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#39033;&#30446;&#27604;&#36739;&#30340;&#31034;&#20363;&#29992;&#20363;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-portfolio-financials" title="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procore-community" title="&#20160;&#20040;&#26159; Procore &#31038;&#21306;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#31038;&#21306;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-project-cost-reporting-in-portfolio-financials" title="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#25104;&#26412;&#25253;&#21578;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#25104;&#26412;&#25253;&#21578;&#65311;</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="&#25237;&#26631;&#23460;&#25237;&#26631;&#34920;&#21333;&#19978;&#30340;&ldquo;&#35843;&#25972;&rdquo;&#37096;&#20998;&#21253;&#25324;&#21738;&#20123;&#20869;&#23481;&#65311;"><span class="mt-icon-article-none"></span>&#25237;&#26631;&#23460;&#25237;&#26631;&#34920;&#21333;&#19978;&#30340;&ldquo;&#35843;&#25972;&rdquo;&#37096;&#20998;&#21253;&#25324;&#21738;&#20123;&#20869;&#23481;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-bid-room-in-portfolio-financials" title="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-contract-room-in-portfolio-financials" title="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23460;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23460;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#37324;&#31243;&#30865;&#30340;&ldquo;&#22522;&#20934;&rdquo;&#21644;&ldquo;&#39044;&#27979;&#25110;&#23454;&#38469;&rdquo;&#26085;&#26399;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#37324;&#31243;&#30865;&#30340;&ldquo;&#22522;&#20934;&rdquo;&#21644;&ldquo;&#39044;&#27979;&#25110;&#23454;&#38469;&rdquo;&#26085;&#26399;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&ldquo;&#25105;&#30340;&#20219;&#21153;&rdquo;&#39029;&#38754;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&ldquo;&#25105;&#30340;&#20219;&#21153;&rdquo;&#39029;&#38754;&#26159;&#20160;&#20040;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#39033;&#30446;&#39029;&#38754;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#39033;&#30446;&#39029;&#38754;&#26159;&#20160;&#20040;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#22242;&#38431;&#26159;&#20160;&#20040;&#65311;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#26435;&#38480;&#32423;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#22242;&#38431;&#26159;&#20160;&#20040;&#65311;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#26435;&#38480;&#32423;&#21035;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&ldquo;&#21457;&#36865;&#21040;&#24212;&#20184;&#20250;&#35745;&rdquo;&#21151;&#33021;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&ldquo;&#21457;&#36865;&#21040;&#24212;&#20184;&#20250;&#35745;&rdquo;&#21151;&#33021;&#26159;&#20160;&#20040;&#65311;</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="&#22914;&#26524;&#25105;&#24536;&#35760;&#20102;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#30340;&#23494;&#30721;&#65292;&#35813;&#24590;&#20040;&#21150;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#25105;&#24536;&#35760;&#20102;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#30340;&#23494;&#30721;&#65292;&#35813;&#24590;&#20040;&#21150;&#65311;</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="&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#23457;&#25209;&#24037;&#20316;&#27969;&#65292;&#25105;&#24212;&#35813;&#20102;&#35299;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#23457;&#25209;&#24037;&#20316;&#27969;&#65292;&#25105;&#24212;&#35813;&#20102;&#35299;&#20160;&#20040;&#65311;</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="&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;</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="&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;</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="&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#24320;&#21457;&#31080;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#24320;&#21457;&#31080;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;</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="&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23460;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23460;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;</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="&#20160;&#20040;&#26102;&#20505;&#20250;&#25910;&#21040;&#26377;&#20851;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25237;&#26631;&#30340;&#39033;&#30446;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26102;&#20505;&#20250;&#25910;&#21040;&#26377;&#20851;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25237;&#26631;&#30340;&#39033;&#30446;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#27809;&#26377;&#25910;&#21040;&#26469;&#33258;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#27809;&#26377;&#25910;&#21040;&#26469;&#33258;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#23637;&#24320;&ldquo;&#20013;&#26631;&#20540;&rdquo;&#34892;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#23637;&#24320;&ldquo;&#20013;&#26631;&#20540;&rdquo;&#34892;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#20174;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#23548;&#20986;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#20174;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#23548;&#20986;&#39033;&#30446;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#30331;&#24405;&ldquo;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&rdquo;&#21644;&ldquo;&#36164;&#37329;&#35268;&#21010;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#30331;&#24405;&ldquo;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&rdquo;&#21644;&ldquo;&#36164;&#37329;&#35268;&#21010;&rdquo;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30475;&#19981;&#21040;&#25237;&#26631;&#23460;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30475;&#19981;&#21040;&#25237;&#26631;&#23460;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30475;&#19981;&#21040;&#21512;&#21516;&#23460;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30475;&#19981;&#21040;&#21512;&#21516;&#23460;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#22242;&#38431;&#25104;&#21592;&#26080;&#27861;&#26597;&#30475;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#22242;&#38431;&#25104;&#21592;&#26080;&#27861;&#26597;&#30475;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#39033;&#30446;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#20379;&#24212;&#21830;&#26080;&#27861;&#35775;&#38382;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#20379;&#24212;&#21830;&#26080;&#27861;&#35775;&#38382;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#65311;</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="&#25237;&#26631;&#23460;&#20013;&#30340;&#26085;&#26399;&#26159;&#21542;&#20250;&#28155;&#21152;&#21040;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#37324;&#31243;&#30865;&#65311;"><span class="mt-icon-article-none"></span>&#25237;&#26631;&#23460;&#20013;&#30340;&#26085;&#26399;&#26159;&#21542;&#20250;&#28155;&#21152;&#21040;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#37324;&#31243;&#30865;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#35774;&#32622;&#23457;&#25209;&#24037;&#20316;&#27969;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#35774;&#32622;&#23457;&#25209;&#24037;&#20316;&#27969;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-bid-approvals-work-in-portfolio-financials" title="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-budget-approvals-work-in-portfolio-financials" title="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39044;&#31639;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39044;&#31639;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-contract-approvals-work-in-portfolio-financials" title="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-invoice-approvals-work-in-portfolio-financials" title="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21457;&#31080;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21457;&#31080;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-approvals-in-portfolio-financials" title="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#23457;&#25209;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#23457;&#25209;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#23457;&#25209;&#24037;&#20316;&#27969;&#20250;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#23457;&#25209;&#24037;&#20316;&#27969;&#20250;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&ldquo;&#25105;&#30340;&#20219;&#21153;&rdquo;&#39029;&#38754;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&ldquo;&#25105;&#30340;&#20219;&#21153;&rdquo;&#39029;&#38754;&#26159;&#20160;&#20040;&#65311;</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="&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#23457;&#25209;&#24037;&#20316;&#27969;&#65292;&#25105;&#24212;&#35813;&#20102;&#35299;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#23457;&#25209;&#24037;&#20316;&#27969;&#65292;&#25105;&#24212;&#35813;&#20102;&#35299;&#20160;&#20040;&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#25237;&#26631;&#23460;&#30340;&#25237;&#26631;&#36882;&#20132;&#20013;&#21253;&#21547;&#25187;&#38500;&#39069;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312;&#25237;&#26631;&#23460;&#30340;&#25237;&#26631;&#36882;&#20132;&#20013;&#21253;&#21547;&#25187;&#38500;&#39069;&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#25237;&#26631;&#23460;&#25171;&#21360;&#25110;&#23548;&#20986;&#25105;&#30340;&#25237;&#26631;&#21103;&#26412;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312;&#25237;&#26631;&#23460;&#25171;&#21360;&#25110;&#23548;&#20986;&#25105;&#30340;&#25237;&#26631;&#21103;&#26412;&#65311;</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="&#22914;&#20309;&#23558;&#25237;&#26631;&#20154;&#38145;&#23450;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#30340;&#23494;&#23553;&#25237;&#26631;&#23460;&#20043;&#22806;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#25237;&#26631;&#20154;&#38145;&#23450;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#30340;&#23494;&#23553;&#25237;&#26631;&#23460;&#20043;&#22806;&#65311;</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="&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#28155;&#21152;&#33258;&#23450;&#20041;&#25237;&#26631;&#34920;&#21333;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#28155;&#21152;&#33258;&#23450;&#20041;&#25237;&#26631;&#34920;&#21333;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#25480;&#20104;&ldquo;&#26377;&#38480;&rdquo;&#29992;&#25143;&#35775;&#38382;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#29305;&#23450;&#25237;&#26631;&#23460;&#30340;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#25480;&#20104;&ldquo;&#26377;&#38480;&rdquo;&#29992;&#25143;&#35775;&#38382;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#29305;&#23450;&#25237;&#26631;&#23460;&#30340;&#26435;&#38480;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25163;&#21160;&#28155;&#21152;&#25237;&#26631;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25163;&#21160;&#28155;&#21152;&#25237;&#26631;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#36827;&#34892;&#26368;&#20339;&#21644;&#26368;&#21518;&#19968;&#36718;&#25237;&#26631;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#36827;&#34892;&#26368;&#20339;&#21644;&#26368;&#21518;&#19968;&#36718;&#25237;&#26631;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20849;&#20139;&#23545;&#25237;&#26631;&#23460;&#30340;&#35775;&#38382;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20849;&#20139;&#23545;&#25237;&#26631;&#23460;&#30340;&#35775;&#38382;&#26435;&#38480;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#35299;&#38500;&#25237;&#26631;&#25110;&#21512;&#21516;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#35299;&#38500;&#25237;&#26631;&#25110;&#21512;&#21516;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-bid-approvals-work-in-portfolio-financials" title="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;</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="&#22914;&#20309;&#21521;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#20379;&#24212;&#21830;&#37197;&#32622;&#25991;&#20214;&#28155;&#21152;&#20854;&#20182;&#32852;&#31995;&#20154;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21521;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#20379;&#24212;&#21830;&#37197;&#32622;&#25991;&#20214;&#28155;&#21152;&#20854;&#20182;&#32852;&#31995;&#20154;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20026;&#21512;&#21516;&#21551;&#29992;&#20445;&#30041;&#37329;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20026;&#21512;&#21516;&#21551;&#29992;&#20445;&#30041;&#37329;&#65311;</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="&#25105;&#22914;&#20309;&#30693;&#36947;&#25105;&#22312;&#25237;&#26631;&#23460;&#21457;&#24067;&#30340; RFI &#26159;&#21542;&#24050;&#24471;&#21040;&#31572;&#22797;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#22914;&#20309;&#30693;&#36947;&#25105;&#22312;&#25237;&#26631;&#23460;&#21457;&#24067;&#30340; RFI &#26159;&#21542;&#24050;&#24471;&#21040;&#31572;&#22797;&#65311;</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="&#22914;&#20309;&#23548;&#33322;&#21040;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23548;&#33322;&#21040;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#36816;&#34892;&#23494;&#23553;&#25237;&#26631;&#27969;&#31243;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#36816;&#34892;&#23494;&#23553;&#25237;&#26631;&#27969;&#31243;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25552;&#20132;&#21464;&#26356;&#36890;&#30693;&#21333;&#21644;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25552;&#20132;&#21464;&#26356;&#36890;&#30693;&#21333;&#21644;&#21457;&#31080;&#65311;</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="&#25237;&#26631;&#20154;&#22312;&#25237;&#26631;&#23460;&#30475;&#21040;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#25237;&#26631;&#20154;&#22312;&#25237;&#26631;&#23460;&#30475;&#21040;&#20160;&#20040;&#65311;</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="&ldquo;&#38544;&#34255;&#25237;&#26631;&#20449;&#24687;&rdquo;&#23545;&#25237;&#26631;&#23460;&#22242;&#38431;&#20013;&#30340;&#26576;&#20154;&#24847;&#21619;&#30528;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&ldquo;&#38544;&#34255;&#25237;&#26631;&#20449;&#24687;&rdquo;&#23545;&#25237;&#26631;&#23460;&#22242;&#38431;&#20013;&#30340;&#26576;&#20154;&#24847;&#21619;&#30528;&#20160;&#20040;&#65311;</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="&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#30340;&#25237;&#26631;&#36807;&#31243;&#20013;&#20250;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#30340;&#25237;&#26631;&#36807;&#31243;&#20013;&#20250;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#25237;&#26631;&#23460;&#25237;&#26631;&#34920;&#21333;&#19978;&#30340;&ldquo;&#35843;&#25972;&rdquo;&#37096;&#20998;&#21253;&#25324;&#21738;&#20123;&#20869;&#23481;&#65311;"><span class="mt-icon-article-none"></span>&#25237;&#26631;&#23460;&#25237;&#26631;&#34920;&#21333;&#19978;&#30340;&ldquo;&#35843;&#25972;&rdquo;&#37096;&#20998;&#21253;&#25324;&#21738;&#20123;&#20869;&#23481;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-bid-room-in-portfolio-financials" title="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#26159;&#20160;&#20040;&#65311;</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="&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;</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="&#20160;&#20040;&#26102;&#20505;&#20250;&#25910;&#21040;&#26377;&#20851;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25237;&#26631;&#30340;&#39033;&#30446;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26102;&#20505;&#20250;&#25910;&#21040;&#26377;&#20851;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25237;&#26631;&#30340;&#39033;&#30446;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30475;&#19981;&#21040;&#25237;&#26631;&#23460;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30475;&#19981;&#21040;&#25237;&#26631;&#23460;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#20379;&#24212;&#21830;&#26080;&#27861;&#35775;&#38382;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#20379;&#24212;&#21830;&#26080;&#27861;&#35775;&#38382;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#65311;</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="&#25105;&#21487;&#20197;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#32534;&#36753;&#25105;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#25110;&#21457;&#31080;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#32534;&#36753;&#25105;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#25110;&#21457;&#31080;&#21527;&#65311;</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="&#25105;&#22914;&#20309;&#22788;&#29702;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340; CM &#36153;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#22914;&#20309;&#22788;&#29702;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340; CM &#36153;&#29992;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20849;&#20139;&#23545;&#21512;&#21516;&#23460;&#30340;&#35775;&#38382;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20849;&#20139;&#23545;&#21512;&#21516;&#23460;&#30340;&#35775;&#38382;&#26435;&#38480;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#35299;&#38500;&#25237;&#26631;&#25110;&#21512;&#21516;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#35299;&#38500;&#25237;&#26631;&#25110;&#21512;&#21516;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-contract-approvals-work-in-portfolio-financials" title="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#32534;&#36753;&#21512;&#21516;&#21021;&#22987;&#22870;&#21169;&#37329;&#39069;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#32534;&#36753;&#21512;&#21516;&#21021;&#22987;&#22870;&#21169;&#37329;&#39069;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20026;&#21512;&#21516;&#21551;&#29992;&#20445;&#30041;&#37329;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20026;&#21512;&#21516;&#21551;&#29992;&#20445;&#30041;&#37329;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#36755;&#20837;&#20449;&#29992;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#36755;&#20837;&#20449;&#29992;&#21457;&#31080;&#65311;</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="&#25105;&#22914;&#20309;&#30693;&#36947;&#25105;&#30340;&#21457;&#31080;&#25110;&#21464;&#26356;&#36890;&#30693;&#21333;&#20309;&#26102;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#34987;&#25209;&#20934;&#25110;&#25298;&#32477;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#22914;&#20309;&#30693;&#36947;&#25105;&#30340;&#21457;&#31080;&#25110;&#21464;&#26356;&#36890;&#30693;&#21333;&#20309;&#26102;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#34987;&#25209;&#20934;&#25110;&#25298;&#32477;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-contract-room-in-portfolio-financials" title="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23460;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23460;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&ldquo;&#21457;&#36865;&#21040;&#24212;&#20184;&#20250;&#35745;&rdquo;&#21151;&#33021;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&ldquo;&#21457;&#36865;&#21040;&#24212;&#20184;&#20250;&#35745;&rdquo;&#21151;&#33021;&#26159;&#20160;&#20040;&#65311;</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="&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;</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="&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#24320;&#21457;&#31080;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#24320;&#21457;&#31080;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;</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="&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23460;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23460;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30475;&#19981;&#21040;&#21512;&#21516;&#23460;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30475;&#19981;&#21040;&#21512;&#21516;&#23460;&#65311;</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="&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#39033;&#30446;&#21551;&#29992;&#25104;&#26412;&#20998;&#37197;&#21644;&#32452;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#39033;&#30446;&#21551;&#29992;&#25104;&#26412;&#20998;&#37197;&#21644;&#32452;&#20214;&#65311;</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="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25104;&#26412;&#20998;&#37197;&#21644;&#32452;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25104;&#26412;&#20998;&#37197;&#21644;&#32452;&#20214;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#21019;&#24314;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#21019;&#24314;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#28155;&#21152;&#33258;&#23450;&#20041;&#25104;&#26412;&#36319;&#36394;&#22120;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#28155;&#21152;&#33258;&#23450;&#20041;&#25104;&#26412;&#36319;&#36394;&#22120;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25104;&#26412;&#39033;&#30340;&#21333;&#20010;&#20540;&#32534;&#21046;&#39044;&#31639;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25104;&#26412;&#39033;&#30340;&#21333;&#20010;&#20540;&#32534;&#21046;&#39044;&#31639;&#65311;</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="&#25105;&#22914;&#20309;&#22788;&#29702;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340; CM &#36153;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#22914;&#20309;&#22788;&#29702;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340; CM &#36153;&#29992;&#65311;</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="&#22914;&#20309;&#22312;&#25104;&#26412;&#36319;&#36394;&#22120;&#20013;&#35774;&#32622;&#31199;&#25143;&#26045;&#24037;&#36864;&#27454;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#25104;&#26412;&#36319;&#36394;&#22120;&#20013;&#35774;&#32622;&#31199;&#25143;&#26045;&#24037;&#36864;&#27454;&#65311;</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="&#29616;&#37329;&#27969;&#39044;&#27979;&#21644;&#36164;&#37329;&#35268;&#21010;&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30456;&#20114;&#20316;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#29616;&#37329;&#27969;&#39044;&#27979;&#21644;&#36164;&#37329;&#35268;&#21010;&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30456;&#20114;&#20316;&#29992;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-uncategorized-invoices-in-portfolio-financials" title="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#26410;&#20998;&#31867;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#26410;&#20998;&#31867;&#21457;&#31080;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-project-cost-reporting-in-portfolio-financials" title="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#25104;&#26412;&#25253;&#21578;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#25104;&#26412;&#25253;&#21578;&#65311;</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="&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#39033;&#30446;&#20013;&#30340;&#25991;&#26723;&#35831;&#27714;&#25991;&#20214;&#22841;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#39033;&#30446;&#20013;&#30340;&#25991;&#26723;&#35831;&#27714;&#25991;&#20214;&#22841;&#27169;&#26495;&#65311;</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="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#26410;&#20998;&#31867;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#26410;&#20998;&#31867;&#21457;&#31080;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#37324;&#31243;&#30865;&#26159;&#21542;&#19982;&#25105;&#30340;&#22806;&#37096;&#39033;&#30446;&#36827;&#24230;&#35745;&#21010;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#37324;&#31243;&#30865;&#26159;&#21542;&#19982;&#25105;&#30340;&#22806;&#37096;&#39033;&#30446;&#36827;&#24230;&#35745;&#21010;&#21516;&#27493;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-templates-created-in-portfolio-financials" title="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#21019;&#24314;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#21019;&#24314;&#27169;&#26495;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#37324;&#31243;&#30865;&#20381;&#36182;&#39033;&#26159;&#20160;&#20040;&#65311;&#22914;&#20309;&#36827;&#34892;&#35774;&#32622;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#37324;&#31243;&#30865;&#20381;&#36182;&#39033;&#26159;&#20160;&#20040;&#65311;&#22914;&#20309;&#36827;&#34892;&#35774;&#32622;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#37324;&#31243;&#30865;&#30340;&ldquo;&#22522;&#20934;&rdquo;&#21644;&ldquo;&#39044;&#27979;&#25110;&#23454;&#38469;&rdquo;&#26085;&#26399;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#37324;&#31243;&#30865;&#30340;&ldquo;&#22522;&#20934;&rdquo;&#21644;&ldquo;&#39044;&#27979;&#25110;&#23454;&#38469;&rdquo;&#26085;&#26399;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;</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="&#25237;&#26631;&#23460;&#20013;&#30340;&#26085;&#26399;&#26159;&#21542;&#20250;&#28155;&#21152;&#21040;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#37324;&#31243;&#30865;&#65311;"><span class="mt-icon-article-none"></span>&#25237;&#26631;&#23460;&#20013;&#30340;&#26085;&#26399;&#26159;&#21542;&#20250;&#28155;&#21152;&#21040;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#37324;&#31243;&#30865;&#65311;</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="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#26410;&#20998;&#31867;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#26410;&#20998;&#31867;&#21457;&#31080;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#39033;&#30446;&#39029;&#38754;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#39033;&#30446;&#39029;&#38754;&#26159;&#20160;&#20040;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#22242;&#38431;&#26159;&#20160;&#20040;&#65311;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#26435;&#38480;&#32423;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#22242;&#38431;&#26159;&#20160;&#20040;&#65311;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#26435;&#38480;&#32423;&#21035;&#65311;</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="&#25105;&#33021;&#21542;&#25509;&#25910;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&#27599;&#26085;&#27963;&#21160;&#25688;&#35201;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#25509;&#25910;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&#27599;&#26085;&#27963;&#21160;&#25688;&#35201;&#65311;</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="&#22914;&#20309;&#25480;&#20104;&ldquo;&#26377;&#38480;&rdquo;&#29992;&#25143;&#35775;&#38382;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#29305;&#23450;&#25237;&#26631;&#23460;&#30340;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#25480;&#20104;&ldquo;&#26377;&#38480;&rdquo;&#29992;&#25143;&#35775;&#38382;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#29305;&#23450;&#25237;&#26631;&#23460;&#30340;&#26435;&#38480;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#22242;&#38431;&#25104;&#21592;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#26435;&#38480;&#32423;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#22242;&#38431;&#25104;&#21592;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#26435;&#38480;&#32423;&#21035;&#65311;</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="&ldquo;&#38544;&#34255;&#25237;&#26631;&#20449;&#24687;&rdquo;&#23545;&#25237;&#26631;&#23460;&#22242;&#38431;&#20013;&#30340;&#26576;&#20154;&#24847;&#21619;&#30528;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&ldquo;&#38544;&#34255;&#25237;&#26631;&#20449;&#24687;&rdquo;&#23545;&#25237;&#26631;&#23460;&#22242;&#38431;&#20013;&#30340;&#26576;&#20154;&#24847;&#21619;&#30528;&#20160;&#20040;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#22242;&#38431;&#26159;&#20160;&#20040;&#65311;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#26435;&#38480;&#32423;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#22242;&#38431;&#26159;&#20160;&#20040;&#65311;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#26435;&#38480;&#32423;&#21035;&#65311;</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="&#25105;&#33021;&#21542;&#25509;&#25910;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&#27599;&#26085;&#27963;&#21160;&#25688;&#35201;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#25509;&#25910;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&#27599;&#26085;&#27963;&#21160;&#25688;&#35201;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#22242;&#38431;&#25104;&#21592;&#26080;&#27861;&#26597;&#30475;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#22242;&#38431;&#25104;&#21592;&#26080;&#27861;&#26597;&#30475;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#39033;&#30446;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#20379;&#24212;&#21830;&#26080;&#27861;&#35775;&#38382;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#20379;&#24212;&#21830;&#26080;&#27861;&#35775;&#38382;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#26159;&#21542;&#25552;&#20379;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#26159;&#21542;&#25552;&#20379;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#22914;&#20309;&#21521;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#20379;&#24212;&#21830;&#37197;&#32622;&#25991;&#20214;&#28155;&#21152;&#20854;&#20182;&#32852;&#31995;&#20154;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21521;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#20379;&#24212;&#21830;&#37197;&#32622;&#25991;&#20214;&#28155;&#21152;&#20854;&#20182;&#32852;&#31995;&#20154;&#65311;</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="&#25105;&#21487;&#20197;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#32534;&#36753;&#25105;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#25110;&#21457;&#31080;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#32534;&#36753;&#25105;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#25110;&#21457;&#31080;&#21527;&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#25237;&#26631;&#23460;&#30340;&#25237;&#26631;&#36882;&#20132;&#20013;&#21253;&#21547;&#25187;&#38500;&#39069;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312;&#25237;&#26631;&#23460;&#30340;&#25237;&#26631;&#36882;&#20132;&#20013;&#21253;&#21547;&#25187;&#38500;&#39069;&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#25237;&#26631;&#23460;&#25171;&#21360;&#25110;&#23548;&#20986;&#25105;&#30340;&#25237;&#26631;&#21103;&#26412;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312;&#25237;&#26631;&#23460;&#25171;&#21360;&#25110;&#23548;&#20986;&#25105;&#30340;&#25237;&#26631;&#21103;&#26412;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20849;&#20139;&#23545;&#25237;&#26631;&#23460;&#30340;&#35775;&#38382;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20849;&#20139;&#23545;&#25237;&#26631;&#23460;&#30340;&#35775;&#38382;&#26435;&#38480;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20849;&#20139;&#23545;&#21512;&#21516;&#23460;&#30340;&#35775;&#38382;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20849;&#20139;&#23545;&#21512;&#21516;&#23460;&#30340;&#35775;&#38382;&#26435;&#38480;&#65311;</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="&#25105;&#22914;&#20309;&#30693;&#36947;&#25105;&#22312;&#25237;&#26631;&#23460;&#21457;&#24067;&#30340; RFI &#26159;&#21542;&#24050;&#24471;&#21040;&#31572;&#22797;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#22914;&#20309;&#30693;&#36947;&#25105;&#22312;&#25237;&#26631;&#23460;&#21457;&#24067;&#30340; RFI &#26159;&#21542;&#24050;&#24471;&#21040;&#31572;&#22797;&#65311;</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="&#22914;&#20309;&#30331;&#24405;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#30331;&#24405;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25552;&#20132;&#21464;&#26356;&#36890;&#30693;&#21333;&#21644;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25552;&#20132;&#21464;&#26356;&#36890;&#30693;&#21333;&#21644;&#21457;&#31080;&#65311;</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="&#25105;&#22914;&#20309;&#30693;&#36947;&#25105;&#30340;&#21457;&#31080;&#25110;&#21464;&#26356;&#36890;&#30693;&#21333;&#20309;&#26102;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#34987;&#25209;&#20934;&#25110;&#25298;&#32477;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#22914;&#20309;&#30693;&#36947;&#25105;&#30340;&#21457;&#31080;&#25110;&#21464;&#26356;&#36890;&#30693;&#21333;&#20309;&#26102;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#34987;&#25209;&#20934;&#25110;&#25298;&#32477;&#65311;</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="&#20160;&#20040;&#26102;&#20505;&#20250;&#25910;&#21040;&#26377;&#20851;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25237;&#26631;&#30340;&#39033;&#30446;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26102;&#20505;&#20250;&#25910;&#21040;&#26377;&#20851;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25237;&#26631;&#30340;&#39033;&#30446;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30475;&#19981;&#21040;&#21512;&#21516;&#23460;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30475;&#19981;&#21040;&#21512;&#21516;&#23460;&#65311;</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="&#22914;&#20309;&#23558;&#26469;&#33258; Yardi &#30340;&#21457;&#31080;&#22238;&#22635;&#21040;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#26469;&#33258; Yardi &#30340;&#21457;&#31080;&#22238;&#22635;&#21040;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#65311;</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="&#25105;&#30340;&#20844;&#21496;&#22914;&#20309;&#36890;&#36807; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#25509;&#25910;&#25237;&#26631;&#36992;&#35831;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#30340;&#20844;&#21496;&#22914;&#20309;&#36890;&#36807; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#25509;&#25910;&#25237;&#26631;&#36992;&#35831;&#65311;</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="&#20272;&#31639;&#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#22914;&#20309;&#21019;&#24314;&#39044;&#31639;&#20013;&#30340;&#26126;&#32454;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20272;&#31639;&#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#22914;&#20309;&#21019;&#24314;&#39044;&#31639;&#20013;&#30340;&#26126;&#32454;&#39033;&#65311;</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="&#22914;&#20309;&#23558;&#25237;&#26631;&#38754;&#26495;&#39033;&#30446;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#30446;&#38598;&#21512;&#24037;&#20855;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#25237;&#26631;&#38754;&#26495;&#39033;&#30446;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#30446;&#38598;&#21512;&#24037;&#20855;&#65311;</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="&#20272;&#31639;&#20013;&#26377;&#21738;&#20123;&#23383;&#27573;&#20197;&#21450;&#23427;&#20204;&#26159;&#22914;&#20309;&#35745;&#31639;&#30340;&#65311;"><span class="mt-icon-article-none"></span>&#20272;&#31639;&#20013;&#26377;&#21738;&#20123;&#23383;&#27573;&#20197;&#21450;&#23427;&#20204;&#26159;&#22914;&#20309;&#35745;&#31639;&#30340;&#65311;</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="&#22914;&#20309;&#35753;&#29992;&#25143;&#35775;&#38382;&#36164;&#26684;&#39044;&#23457;&#24037;&#20855;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35753;&#29992;&#25143;&#35775;&#38382;&#36164;&#26684;&#39044;&#23457;&#24037;&#20855;&#65311;</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="&#22914;&#20309;&#35753;&#29992;&#25143;&#35775;&#38382;&#36164;&#26684;&#39044;&#23457;&#24037;&#20855;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35753;&#29992;&#25143;&#35775;&#38382;&#36164;&#26684;&#39044;&#23457;&#24037;&#20855;&#65311;</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="&#20160;&#20040;&#26159; Primavera P6 &#21450;&#20854;&#22914;&#20309;&#19982; Procore &#38598;&#25104;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Primavera P6 &#21450;&#20854;&#22914;&#20309;&#19982; Procore &#38598;&#25104;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#24403;&quot;&#38480;&#21046;&#23545;&#21512;&#21516;&#21644;&#21464;&#26356;&#36890;&#30693;&#21333;&#30340;&#38750;&#33609;&#31295;&#32534;&#36753;&quot;&#21644;&quot;&#21551;&#29992;&#22987;&#32456;&#21487;&#32534;&#36753;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&quot;&#21516;&#26102;&#21551;&#29992;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&quot;&#38480;&#21046;&#23545;&#21512;&#21516;&#21644;&#21464;&#26356;&#36890;&#30693;&#21333;&#30340;&#38750;&#33609;&#31295;&#32534;&#36753;&quot;&#21644;&quot;&#21551;&#29992;&#22987;&#32456;&#21487;&#32534;&#36753;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&quot;&#21516;&#26102;&#21551;&#29992;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;</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="&#24403;&#39033;&#30446;&#26377;&#22810;&#20010;&#20027;&#21512;&#21516;&#26102;&#65292;&#26159;&#21542;&#26377;&#20219;&#20309;&#31995;&#32479;&#38480;&#21046;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#39033;&#30446;&#26377;&#22810;&#20010;&#20027;&#21512;&#21516;&#26102;&#65292;&#26159;&#21542;&#26377;&#20219;&#20309;&#31995;&#32479;&#38480;&#21046;&#65311;</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="&#19978;&#28216;&#21327;&#20316;&#32773;&#21487;&#20197;&#22312;&#21738;&#19968;&#23618;&#25209;&#20934;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;"><span class="mt-icon-article-none"></span>&#19978;&#28216;&#21327;&#20316;&#32773;&#21487;&#20197;&#22312;&#21738;&#19968;&#23618;&#25209;&#20934;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;</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="&#25105;&#21487;&#20197;&#22312;&#19979;&#28216;&#21327;&#20316;&#32773;&#21709;&#24212;&#21464;&#26356;&#20107;&#20214;&#30340; RFQ &#20043;&#21069;&#20026;&#21512;&#21516;&#25110;&#36164;&#37329;&#21019;&#24314;&#21464;&#26356;&#36890;&#30693;&#21333;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312;&#19979;&#28216;&#21327;&#20316;&#32773;&#21709;&#24212;&#21464;&#26356;&#20107;&#20214;&#30340; RFQ &#20043;&#21069;&#20026;&#21512;&#21516;&#25110;&#36164;&#37329;&#21019;&#24314;&#21464;&#26356;&#36890;&#30693;&#21333;&#21527;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-create-a-list-of-overdue-pccos" title="&#25105;&#21487;&#20197;&#21019;&#24314;&#19968;&#20221;&#36926;&#26399;&#20027;&#21512;&#21516;&#21464;&#26356;&#36890;&#30693;&#21333; (PCCO) &#30340;&#28165;&#21333;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#21019;&#24314;&#19968;&#20221;&#36926;&#26399;&#20027;&#21512;&#21516;&#21464;&#26356;&#36890;&#30693;&#21333; (PCCO) &#30340;&#28165;&#21333;&#21527;&#65311;</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="&#22914;&#20309;&#22312; Procore &#39033;&#30446;&#20013;&#20351;&#29992;&#31246;&#21153;&#20195;&#30721;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#39033;&#30446;&#20013;&#20351;&#29992;&#31246;&#21153;&#20195;&#30721;&#65311;</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 &#22914;&#20309;&#33258;&#21160;&#23436;&#25104;&#19994;&#20027; &#21457;&#31080;&#19978;&#30340;&#37329;&#39069;&#65311; &#65288;&#27979;&#35797;&#29256;&#65289;"><span class="mt-icon-article-none"></span>Procore &#22914;&#20309;&#33258;&#21160;&#23436;&#25104;&#19994;&#20027; &#21457;&#31080;&#19978;&#30340;&#37329;&#39069;&#65311; &#65288;&#27979;&#35797;&#29256;&#65289;</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 &#22914;&#20309;&#33258;&#21160;&#23436;&#25104;&#19978;&#28216; &#21457;&#31080;&#19978;&#30340;&#37329;&#39069;&#65311; &#65288;&#26087;&#29256;&#65289;"><span class="mt-icon-article-none"></span>Procore &#22914;&#20309;&#33258;&#21160;&#23436;&#25104;&#19978;&#28216; &#21457;&#31080;&#19978;&#30340;&#37329;&#39069;&#65311; &#65288;&#26087;&#29256;&#65289;</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 &#22914;&#20309;&#35745;&#31639;&#21457;&#31080;&#30340;&ldquo;&#24403;&#21069;&#21040;&#26399;&#24212;&#20184;&#27454;&rdquo;&#37329;&#39069;&#65311;"><span class="mt-icon-article-none"></span>Procore &#22914;&#20309;&#35745;&#31639;&#21457;&#31080;&#30340;&ldquo;&#24403;&#21069;&#21040;&#26399;&#24212;&#20184;&#27454;&rdquo;&#37329;&#39069;&#65311;</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="&#24403;&#25105;&#20844;&#21496; Procore &#36134;&#25143;&#31105;&#29992;&#23458;&#25143;&#21512;&#21516;&#12289;&#36164;&#37329;&#25110;&#20027;&#21512;&#21516;&#24037;&#20855;&#26102;&#65292;&#25105;&#33021;&#22914;&#20309;&#35843;&#25972;&#39044;&#31639;&#35270;&#22270;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#25105;&#20844;&#21496; Procore &#36134;&#25143;&#31105;&#29992;&#23458;&#25143;&#21512;&#21516;&#12289;&#36164;&#37329;&#25110;&#20027;&#21512;&#21516;&#24037;&#20855;&#26102;&#65292;&#25105;&#33021;&#22914;&#20309;&#35843;&#25972;&#39044;&#31639;&#35270;&#22270;&#65311;</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="&#22914;&#20309;&#20026; mailto &#38142;&#25509;&#26356;&#25913;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#30340;&#40664;&#35748;&#30005;&#23376;&#37038;&#20214;&#23458;&#25143;&#31471;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026; mailto &#38142;&#25509;&#26356;&#25913;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#30340;&#40664;&#35748;&#30005;&#23376;&#37038;&#20214;&#23458;&#25143;&#31471;&#65311;</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="&#22914;&#20309;&#35774;&#32622;&#21512;&#21516;&#25110;&#36164;&#37329;&#30340;&#20250;&#35745;&#26041;&#27861;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35774;&#32622;&#21512;&#21516;&#25110;&#36164;&#37329;&#30340;&#20250;&#35745;&#26041;&#27861;&#65311;</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="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</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="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#37096;&#20998;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#37096;&#20998;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-multi-tiered-locations" title="&#20160;&#20040;&#26159;&#22810;&#23618;&#22320;&#28857;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#22810;&#23618;&#22320;&#28857;&#65311;</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 &#30340;&#40664;&#35748;&#21464;&#26356;&#31867;&#22411;&#21644;&#21464;&#26356;&#21407;&#22240;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#40664;&#35748;&#21464;&#26356;&#31867;&#22411;&#21644;&#21464;&#26356;&#21407;&#22240;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-types" title="Procore &#26377;&#21738;&#20123;&#40664;&#35748;&#25104;&#26412;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>Procore &#26377;&#21738;&#20123;&#40664;&#35748;&#25104;&#26412;&#31867;&#22411;&#65311;</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="&#20027;&#21512;&#21516;&#24037;&#20855;&#20013;&#30340;&#40664;&#35748;&#21015;&#26159;&#20160;&#20040;&#21015;&#65311;"><span class="mt-icon-article-none"></span>&#20027;&#21512;&#21516;&#24037;&#20855;&#20013;&#30340;&#40664;&#35748;&#21015;&#26159;&#20160;&#20040;&#21015;&#65311;</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 &#20013;&#21464;&#26356;&#36890;&#30693;&#21333;&#30340;&#40664;&#35748;&#29366;&#24577;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#21464;&#26356;&#36890;&#30693;&#21333;&#30340;&#40664;&#35748;&#29366;&#24577;&#26159;&#20160;&#20040;&#65311;</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 &#21457;&#31080;&#30340;&#40664;&#35748;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#21457;&#31080;&#30340;&#40664;&#35748;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;</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="&#39033;&#30446;&#36130;&#21153;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#23618;&#35774;&#32622;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#36130;&#21153;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#23618;&#35774;&#32622;&#65311;</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 &#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#31867;&#22411;&#30340;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#31867;&#22411;&#30340;&#21457;&#31080;&#65311;</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="&#20160;&#20040;&#26159; DocuSign&reg; &#23383;&#27573;&#65292;&#25105;&#21487;&#20197;&#33258;&#23450;&#20041;&#23427;&#20204;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; DocuSign&reg; &#23383;&#27573;&#65292;&#25105;&#21487;&#20197;&#33258;&#23450;&#20041;&#23427;&#20204;&#21527;&#65311;</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="&#20174; CSV &#23548;&#20837; SOV &#34892;&#39033;&#30446;&#26377;&#21738;&#20123;&#35201;&#27714;&#65311;"><span class="mt-icon-article-none"></span>&#20174; CSV &#23548;&#20837; SOV &#34892;&#39033;&#30446;&#26377;&#21738;&#20123;&#35201;&#27714;&#65311;</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="&#39033;&#30446;&#30340;&#20027;&#21512;&#21516;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#20027;&#21512;&#21516;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#24403;&quot;&#38480;&#21046;&#23545;&#21512;&#21516;&#21644;&#21464;&#26356;&#36890;&#30693;&#21333;&#30340;&#38750;&#33609;&#31295;&#32534;&#36753;&quot;&#21644;&quot;&#21551;&#29992;&#22987;&#32456;&#21487;&#32534;&#36753;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&quot;&#21516;&#26102;&#21551;&#29992;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&quot;&#38480;&#21046;&#23545;&#21512;&#21516;&#21644;&#21464;&#26356;&#36890;&#30693;&#21333;&#30340;&#38750;&#33609;&#31295;&#32534;&#36753;&quot;&#21644;&quot;&#21551;&#29992;&#22987;&#32456;&#21487;&#32534;&#36753;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&quot;&#21516;&#26102;&#21551;&#29992;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;</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 &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-upstream-collaborator" title="&#20160;&#20040;&#26159;&#19978;&#28216;&#21327;&#20316;&#32773;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#19978;&#28216;&#21327;&#20316;&#32773;&#65311;</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 &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#27700;&#24179;&#20998;&#39033;&#21033;&#28070;&#21152;&#25104;&#21644;&#22402;&#30452;&#27719;&#24635;&#21033;&#28070;&#21152;&#25104;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#27700;&#24179;&#20998;&#39033;&#21033;&#28070;&#21152;&#25104;&#21644;&#22402;&#30452;&#27719;&#24635;&#21033;&#28070;&#21152;&#25104;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#20160;&#20040;&#26159;&ldquo;&#21551;&#29992;&#22987;&#32456;&#21487;&#32534;&#36753;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&rdquo;&#35774;&#32622;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&ldquo;&#21551;&#29992;&#22987;&#32456;&#21487;&#32534;&#36753;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&rdquo;&#35774;&#32622;&#65311;</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 &#20013;&#30340;&#21738;&#20123;&#24037;&#20855;&#21517;&#31216;&#21644;&#26415;&#35821;&#23545;&#20110;&#24635;&#25215;&#21253;&#21830;&#12289;&#19994;&#20027;&#21644;&#19987;&#19994;&#25215;&#21253;&#21830;&#26159;&#19981;&#21516;&#30340;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#21738;&#20123;&#24037;&#20855;&#21517;&#31216;&#21644;&#26415;&#35821;&#23545;&#20110;&#24635;&#25215;&#21253;&#21830;&#12289;&#19994;&#20027;&#21644;&#19987;&#19994;&#25215;&#21253;&#21830;&#26159;&#19981;&#21516;&#30340;&#65311;</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="&#20027;&#21512;&#21516;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#20027;&#21512;&#21516;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</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="&#21738;&#20123;&#20027;&#21512;&#21516;&#21644;&#20027;&#21512;&#21516;&#21464;&#26356;&#36890;&#30693;&#21333;&#23383;&#27573;&#19982; Procore &#21644; Viewpoint Spectrum &#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#20027;&#21512;&#21516;&#21644;&#20027;&#21512;&#21516;&#21464;&#26356;&#36890;&#30693;&#21333;&#23383;&#27573;&#19982; Procore &#21644; Viewpoint Spectrum &#21516;&#27493;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-support-the-docusign-integration" title="&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#25903;&#25345; DocuSign&reg; &#38598;&#25104;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#25903;&#25345; DocuSign&reg; &#38598;&#25104;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-work-breakdown-structure" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#65311;</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 &#30340;&#20027;&#21015;&#34920;&#20013;&#21253;&#21547;&#21738;&#20123;&#35745;&#37327;&#21333;&#20301;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#20027;&#21015;&#34920;&#20013;&#21253;&#21547;&#21738;&#20123;&#35745;&#37327;&#21333;&#20301;&#65311;</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="&#22914;&#26524;&#26080;&#27861;&#26597;&#30475;&#20027;&#21512;&#21516;&#65292;&#20026;&#20160;&#20040;&#21487;&#20197;&#35775;&#38382;&#20027;&#21512;&#21516;&#24037;&#20855;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#26080;&#27861;&#26597;&#30475;&#20027;&#21512;&#21516;&#65292;&#20026;&#20160;&#20040;&#21487;&#20197;&#35775;&#38382;&#20027;&#21512;&#21516;&#24037;&#20855;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-a-change-order" title="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#32534;&#36753;&#25110;&#21024;&#38500;&ldquo;&#33719;&#25209;&rdquo;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#32534;&#36753;&#25110;&#21024;&#38500;&ldquo;&#33719;&#25209;&rdquo;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;</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="&#20160;&#20040;&#26159;&#20844;&#21496;&#31649;&#29702;&#21592;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20844;&#21496;&#31649;&#29702;&#21592;&#65311;</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&#22914;&#20309;&#23384;&#20648;&#26085;&#26399;&#65311;"><span class="mt-icon-article-none"></span>Procore Analytics&#22914;&#20309;&#23384;&#20648;&#26085;&#26399;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-get-started-with-procore-analytics" title="&#22914;&#20309;&#24320;&#22987;&#20351;&#29992;Procore Analytics&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#24320;&#22987;&#20351;&#29992;Procore Analytics&#65311;</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="&#22312;&#23884;&#20837;&#24335;&#24212;&#29992;&#31243;&#24207;&#21644; Power BI &#26381;&#21153;&#20013;&#26597;&#30475;Procore Analytics&#25253;&#21578;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#23884;&#20837;&#24335;&#24212;&#29992;&#31243;&#24207;&#21644; Power BI &#26381;&#21153;&#20013;&#26597;&#30475;Procore Analytics&#25253;&#21578;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-procore-analytics-risk-report" title="&#20160;&#20040;&#26159;Procore Analytics&#39118;&#38505;&#25253;&#21578;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;Procore Analytics&#39118;&#38505;&#25253;&#21578;&#65311;</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="&#20026;&#20160;&#20040;&#31227;&#21160;&#24037;&#20855;&#37197;&#32622;&#12289;&#29992;&#25143;&#20351;&#29992;&#24773;&#20917;&#21644;&#25968;&#25454;&#36136;&#37327;&#25253;&#21578;&#39029;&#38754;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#31227;&#21160;&#24037;&#20855;&#37197;&#32622;&#12289;&#29992;&#25143;&#20351;&#29992;&#24773;&#20917;&#21644;&#25968;&#25454;&#36136;&#37327;&#25253;&#21578;&#39029;&#38754;&#65311;</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="&#25991;&#26723;&#24037;&#20855;&#20013;&#30340; 3D &#27169;&#22411;&#26597;&#30475;&#22120;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#25991;&#26723;&#24037;&#20855;&#20013;&#30340; 3D &#27169;&#22411;&#26597;&#30475;&#22120;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#31867;&#22411;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procore-bim" title="&#20160;&#20040;&#26159; Procore BIM&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore BIM&#65311;</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="&#20160;&#20040;&#26159; Procore&#25554;&#20214;&#65292;&#26377;&#20309;&#29992;&#36884;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore&#25554;&#20214;&#65292;&#26377;&#20309;&#29992;&#36884;&#65311;</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="&#22914;&#26524;&#27169;&#22411;&#22826;&#22823;&#32780;&#26080;&#27861;&#22312; Procore &#30340; Web &#24212;&#29992;&#31243;&#24207;&#20013;&#26597;&#30475;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#27169;&#22411;&#22826;&#22823;&#32780;&#26080;&#27861;&#22312; Procore &#30340; Web &#24212;&#29992;&#31243;&#24207;&#20013;&#26597;&#30475;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;</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="&#22914;&#26524;&#25105;&#30340;&#27169;&#22411;&#25991;&#20214;&#22826;&#22823;&#32780;&#26080;&#27861;&#22312;&#25991;&#26723;&#24037;&#20855;&#20013;&#22788;&#29702;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#25105;&#30340;&#27169;&#22411;&#25991;&#20214;&#22826;&#22823;&#32780;&#26080;&#27861;&#22312;&#25991;&#26723;&#24037;&#20855;&#20013;&#22788;&#29702;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#23558;&#25991;&#20214;&#20851;&#32852;&#21040;&#25105;&#30340;&#39033;&#30446;&#21518;&#30475;&#19981;&#21040;&#25105;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#23558;&#25991;&#20214;&#20851;&#32852;&#21040;&#25105;&#30340;&#39033;&#30446;&#21518;&#30475;&#19981;&#21040;&#25105;&#30340;&#38382;&#39064;&#65311;</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="&#20026;&#20160;&#20040;&#22312;&#20351;&#29992;&#26631;&#35760;&#24037;&#20855;&#21518;&#20250;&#21019;&#24314;&#35270;&#28857;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#22312;&#20351;&#29992;&#26631;&#35760;&#24037;&#20855;&#21518;&#20250;&#21019;&#24314;&#35270;&#28857;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312; Navisworks&reg; &#20013;&#20351;&#29992;&#20113;&#32418;&#32447;&#24037;&#20855;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312; Navisworks&reg; &#20013;&#20351;&#29992;&#20113;&#32418;&#32447;&#24037;&#20855;&#65311;</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="&#20026;&#20160;&#20040;&#22312; Procore &#20013;&#26597;&#30475;&#27169;&#22411;&#26102;&#65292;&#27169;&#22411;&#19981;&#26174;&#31034;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#22312; Procore &#20013;&#26597;&#30475;&#27169;&#22411;&#26102;&#65292;&#27169;&#22411;&#19981;&#26174;&#31034;&#65311;</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="&#20026;&#20160;&#20040; Procore &#20013;&#27169;&#22411;&#30340;&#25991;&#20214;&#22823;&#23567;&#20250;&#22686;&#21152;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; Procore &#20013;&#27169;&#22411;&#30340;&#25991;&#20214;&#22823;&#23567;&#20250;&#22686;&#21152;&#65311;</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="&#20225;&#19994;&#22914;&#20309;&#33719;&#25209;&#22312; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#20013;&#19978;&#24066;&#65311;"><span class="mt-icon-article-none"></span>&#20225;&#19994;&#22914;&#20309;&#33719;&#25209;&#22312; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#20013;&#19978;&#24066;&#65311;</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="&#22914;&#20309;&#22788;&#29702;&#30446;&#24405;&#24037;&#20855;&#21644; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#20043;&#38388;&#30340;&#37325;&#22797;&#20844;&#21496;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22788;&#29702;&#30446;&#24405;&#24037;&#20855;&#21644; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#20043;&#38388;&#30340;&#37325;&#22797;&#20844;&#21496;&#65311;</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="&#22914;&#20309;&#21028;&#26029;&#25105;&#26377;&#20813;&#36153;&#36824;&#26159;&#20184;&#36153; Procore &#20844;&#21496;&#36134;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029;&#25105;&#26377;&#20813;&#36153;&#36824;&#26159;&#20184;&#36153; Procore &#20844;&#21496;&#36134;&#25143;&#65311;</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="&#25105;&#30340;&#20844;&#21496;&#22914;&#20309;&#36890;&#36807; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#25509;&#25910;&#25237;&#26631;&#36992;&#35831;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#30340;&#20844;&#21496;&#22914;&#20309;&#36890;&#36807; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#25509;&#25910;&#25237;&#26631;&#36992;&#35831;&#65311;</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="&#22312; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#19978;&#21015;&#20986;&#30340;&#20844;&#21496;&#65292;&#25105;&#21487;&#20197;&#26597;&#30475;&#21738;&#20123;&#27963;&#21160;&#25351;&#26631;&#65311;"><span class="mt-icon-article-none"></span>&#22312; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#19978;&#21015;&#20986;&#30340;&#20844;&#21496;&#65292;&#25105;&#21487;&#20197;&#26597;&#30475;&#21738;&#20123;&#27963;&#21160;&#25351;&#26631;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-changes-when-companies-upgrade-to-paid-accounts" title="&#20844;&#21496;&#21319;&#32423;&#21040;&#20184;&#36153;&#36134;&#25143;&#20250;&#21457;&#29983;&#20160;&#20040;&#21464;&#21270;&#65311;"><span class="mt-icon-article-none"></span>&#20844;&#21496;&#21319;&#32423;&#21040;&#20184;&#36153;&#36134;&#25143;&#20250;&#21457;&#29983;&#20160;&#20040;&#21464;&#21270;&#65311;</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="&#20174; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#20013;&#23558;&#20844;&#21496;&#21644;&#29992;&#25143;&#28155;&#21152;&#21040;&#20844;&#21496;&#30446;&#24405;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20174; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#20013;&#23558;&#20844;&#21496;&#21644;&#29992;&#25143;&#28155;&#21152;&#21040;&#20844;&#21496;&#30446;&#24405;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;</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 &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#19978;&#24050;&#35748;&#39046;&#21644;&#26410;&#35748;&#39046;&#30340;&#20225;&#19994;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#19978;&#24050;&#35748;&#39046;&#21644;&#26410;&#35748;&#39046;&#30340;&#20225;&#19994;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-procore-construction-network" title="&#20160;&#20040;&#26159; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#65311;</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="&#26159;&#20160;&#20040;&#20351;&#20844;&#21496;&#22312; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#30340;&#25628;&#32034;&#32467;&#26524;&#20013;&#26356;&#39640;&#65311;"><span class="mt-icon-article-none"></span>&#26159;&#20160;&#20040;&#20351;&#20844;&#21496;&#22312; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#30340;&#25628;&#32034;&#32467;&#26524;&#20013;&#26356;&#39640;&#65311;</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="&#20851;&#20110;&#22312; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#19978;&#30003;&#35831;&#19994;&#21153;&#65292;&#25105;&#24212;&#35813;&#20102;&#35299;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20851;&#20110;&#22312; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#19978;&#30003;&#35831;&#19994;&#21153;&#65292;&#25105;&#24212;&#35813;&#20102;&#35299;&#20160;&#20040;&#65311;</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="&#22914;&#20309;&#23558;&#22823;&#25991;&#20214;&#19978;&#20256;&#21040;Procore Web&#24212;&#29992;&#31243;&#24207;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#22823;&#25991;&#20214;&#19978;&#20256;&#21040;Procore Web&#24212;&#29992;&#31243;&#24207;&#65311;</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="&#26159;&#21542;&#24212;&#35813;&#23558; Microsoft Project &#36827;&#24230;&#35745;&#21010;&#38598;&#25104;&#21040; Procore Web &#24212;&#29992;&#31243;&#24207;&#25110; Procore Drive&#65311;"><span class="mt-icon-article-none"></span>&#26159;&#21542;&#24212;&#35813;&#23558; Microsoft Project &#36827;&#24230;&#35745;&#21010;&#38598;&#25104;&#21040; Procore Web &#24212;&#29992;&#31243;&#24207;&#25110; Procore Drive&#65311;</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="&#20026;&#20160;&#20040;&#19979;&#36733; Procore Drive &#26102;&#20986;&#38169;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#19979;&#36733; Procore Drive &#26102;&#20986;&#38169;&#65311;</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="&#20026;&#20160;&#20040;&#21024;&#38500;&#25353;&#38062;&#22312; Procore Drive &#30340;&#36827;&#24230;&#35745;&#21010;&#24037;&#20855;&#20013;&#21464;&#26263;&#19988;&#19981;&#21487;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#21024;&#38500;&#25353;&#38062;&#22312; Procore Drive &#30340;&#36827;&#24230;&#35745;&#21010;&#24037;&#20855;&#20013;&#21464;&#26263;&#19988;&#19981;&#21487;&#29992;&#65311;</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="&#20026;&#20160;&#20040; Procore Drive &#26700;&#38754;&#24555;&#25463;&#26041;&#24335;&#19981;&#36215;&#20316;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; Procore Drive &#26700;&#38754;&#24555;&#25463;&#26041;&#24335;&#19981;&#36215;&#20316;&#29992;&#65311;</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="&#25105;&#21487;&#20197;&#22312; Mac &#19978;&#20351;&#29992; Procore Extracts &#24212;&#29992;&#31243;&#24207;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#22312; Mac &#19978;&#20351;&#29992; Procore Extracts &#24212;&#29992;&#31243;&#24207;&#21527;&#65311;</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="&#20174; Procore &#20013;&#25552;&#21462;&#25968;&#25454;&#38656;&#35201;&#22810;&#38271;&#26102;&#38388;&#65311;"><span class="mt-icon-article-none"></span>&#20174; Procore &#20013;&#25552;&#21462;&#25968;&#25454;&#38656;&#35201;&#22810;&#38271;&#26102;&#38388;&#65311;</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="&#25552;&#21462;&#30340;&#39033;&#30446;&#25968;&#25454;&#20013;&#21253;&#21547;&#30340;&ldquo;&#25991;&#20214;&#37325;&#21629;&#21517;&#20449;&#24687; (File Rename Information)&rdquo;&#25991;&#20214;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#25552;&#21462;&#30340;&#39033;&#30446;&#25968;&#25454;&#20013;&#21253;&#21547;&#30340;&ldquo;&#25991;&#20214;&#37325;&#21629;&#21517;&#20449;&#24687; (File Rename Information)&rdquo;&#25991;&#20214;&#26159;&#20160;&#20040;&#65311;</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="&#20351;&#29992; Procore Extracts &#24212;&#29992;&#31243;&#24207;&#21487;&#20197;&#20174;&#21738;&#20123;&#24037;&#20855;&#20013;&#25552;&#21462;&#39033;&#30446;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>&#20351;&#29992; Procore Extracts &#24212;&#29992;&#31243;&#24207;&#21487;&#20197;&#20174;&#21738;&#20123;&#24037;&#20855;&#20013;&#25552;&#21462;&#39033;&#30446;&#25968;&#25454;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#20174; Procore &#19979;&#36733;&#21644;&#25171;&#24320; .ZIP &#25991;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#20174; Procore &#19979;&#36733;&#21644;&#25171;&#24320; .ZIP &#25991;&#20214;&#65311;</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="&#21487;&#20197;&#19968;&#27425;&#23558;&#26435;&#38480;&#27169;&#26495;&#24212;&#29992;&#20110;&#22810;&#20010;&#29992;&#25143;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#19968;&#27425;&#23558;&#26435;&#38480;&#27169;&#26495;&#24212;&#29992;&#20110;&#22810;&#20010;&#29992;&#25143;&#21527;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-segments-and-segment-items" title="&#20160;&#20040;&#26159;&#32454;&#20998;&#21644;&#32454;&#20998;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32454;&#20998;&#21644;&#32454;&#20998;&#39033;&#65311;</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="&#23548;&#20837;&#27169;&#26495;&#20013;&#30340;&#21015;&#26631;&#39064;&#26356;&#26032;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#23548;&#20837;&#27169;&#26495;&#20013;&#30340;&#21015;&#26631;&#39064;&#26356;&#26032;&#26159;&#20160;&#20040;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; Procore Imports &#24212;&#29992;&#31243;&#24207;&#20013;&#25910;&#21040;&#38169;&#35823;&#28040;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; Procore Imports &#24212;&#29992;&#31243;&#24207;&#20013;&#25910;&#21040;&#38169;&#35823;&#28040;&#24687;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-wbs-custom-segments" title="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21019;&#24314; WBS &#33258;&#23450;&#20041;&#32454;&#20998;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21019;&#24314; WBS &#33258;&#23450;&#20041;&#32454;&#20998;&#65311;</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 &#20013;&#30340;&#39033;&#22914;&#20309;&#22312;&#22320;&#22270;&#19978;&#26174;&#31034;&#65311;"><span class="mt-icon-article-reference"></span>Procore &#20013;&#30340;&#39033;&#22914;&#20309;&#22312;&#22320;&#22270;&#19978;&#26174;&#31034;&#65311;</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 &#20013;&#30340;&#22320;&#22270;&#25903;&#25345;&#21738;&#20123;&#24037;&#20855;&#65311;"><span class="mt-icon-article-reference"></span>Procore &#20013;&#30340;&#22320;&#22270;&#25903;&#25345;&#21738;&#20123;&#24037;&#20855;&#65311;</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 &#22320;&#22270;&#26377;&#21738;&#20123;&#21487;&#35265;&#24615;&#35774;&#32622;&#65311;"><span class="mt-icon-article-none"></span>Procore &#22320;&#22270;&#26377;&#21738;&#20123;&#21487;&#35265;&#24615;&#35774;&#32622;&#65311;</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="&#22914;&#20309;&#21028;&#26029;&#25105;&#26377;&#20813;&#36153;&#36824;&#26159;&#20184;&#36153; Procore &#20844;&#21496;&#36134;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029;&#25105;&#26377;&#20813;&#36153;&#36824;&#26159;&#20184;&#36153; Procore &#20844;&#21496;&#36134;&#25143;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-invoice-contact" title="&#20160;&#20040;&#26159;&#21457;&#31080;&#32852;&#31995;&#20154;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21457;&#31080;&#32852;&#31995;&#20154;&#65311;</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="&#21487;&#20197;&#20351;&#29992; Procore Search &#25628;&#32034;&#21040;&#21738;&#20123;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#20351;&#29992; Procore Search &#25628;&#32034;&#21040;&#21738;&#20123;&#20449;&#24687;&#65311;</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="&#21457;&#31080;&#32852;&#31995;&#20154;&#26159;&#21542;&#38656;&#35201;&ldquo;&#32467;&#31639;&#36992;&#35831;&rdquo;&#25165;&#33021;&#25552;&#20132;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>&#21457;&#31080;&#32852;&#31995;&#20154;&#26159;&#21542;&#38656;&#35201;&ldquo;&#32467;&#31639;&#36992;&#35831;&rdquo;&#25165;&#33021;&#25552;&#20132;&#21457;&#31080;&#65311;</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 &#22914;&#20309;&#33258;&#21160;&#23436;&#25104;&#19978;&#28216; &#21457;&#31080;&#19978;&#30340;&#37329;&#39069;&#65311; &#65288;&#26087;&#29256;&#65289;"><span class="mt-icon-article-none"></span>Procore &#22914;&#20309;&#33258;&#21160;&#23436;&#25104;&#19978;&#28216; &#21457;&#31080;&#19978;&#30340;&#37329;&#39069;&#65311; &#65288;&#26087;&#29256;&#65289;</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 &#22914;&#20309;&#35745;&#31639;&#21457;&#31080;&#30340;&ldquo;&#24403;&#21069;&#21040;&#26399;&#24212;&#20184;&#27454;&rdquo;&#37329;&#39069;&#65311;"><span class="mt-icon-article-none"></span>Procore &#22914;&#20309;&#35745;&#31639;&#21457;&#31080;&#30340;&ldquo;&#24403;&#21069;&#21040;&#26399;&#24212;&#20184;&#27454;&rdquo;&#37329;&#39069;&#65311;</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="&#22914;&#20309;&#22312;&#21457;&#31080;&#20013;&#20026;&#24211;&#23384;&#26448;&#26009;&#24320;&#20855;&#36134;&#21333;&#65311; &#65288;&#27979;&#35797;&#29256;&#65289;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#21457;&#31080;&#20013;&#20026;&#24211;&#23384;&#26448;&#26009;&#24320;&#20855;&#36134;&#21333;&#65311; &#65288;&#27979;&#35797;&#29256;&#65289;</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="&#22914;&#20309;&#20026;&#21457;&#31080;&#21019;&#24314;&#32467;&#31639;&#26399;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#21457;&#31080;&#21019;&#24314;&#32467;&#31639;&#26399;&#65311;</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="&#22914;&#20309;&#25552;&#20132; Procore &#21512;&#32422;&#30340;&#20998;&#21253;&#21830;&#20998;&#39033;&#20215;&#26684;&#34920;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#25552;&#20132; Procore &#21512;&#32422;&#30340;&#20998;&#21253;&#21830;&#20998;&#39033;&#20215;&#26684;&#34920;&#65311;</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="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;</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 &#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#31867;&#22411;&#30340;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#31867;&#22411;&#30340;&#21457;&#31080;&#65311;</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 &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-upstream-collaborator" title="&#20160;&#20040;&#26159;&#19978;&#28216;&#21327;&#20316;&#32773;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#19978;&#28216;&#21327;&#20316;&#32773;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-sliding-scale-retention" title="&#20160;&#20040;&#26159;&#28014;&#21160;&#20445;&#30041;&#37329;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#28014;&#21160;&#20445;&#30041;&#37329;&#65311;</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 &#20013;&#30340;&#21738;&#20123;&#24037;&#20855;&#21517;&#31216;&#21644;&#26415;&#35821;&#23545;&#20110;&#24635;&#25215;&#21253;&#21830;&#12289;&#19994;&#20027;&#21644;&#19987;&#19994;&#25215;&#21253;&#21830;&#26159;&#19981;&#21516;&#30340;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#21738;&#20123;&#24037;&#20855;&#21517;&#31216;&#21644;&#26415;&#35821;&#23545;&#20110;&#24635;&#25215;&#21253;&#21830;&#12289;&#19994;&#20027;&#21644;&#19987;&#19994;&#25215;&#21253;&#21830;&#26159;&#19981;&#21516;&#30340;&#65311;</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 &#20309;&#26102;&#21521;&#21457;&#31080;&#32852;&#31995;&#20154;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20309;&#26102;&#21521;&#21457;&#31080;&#32852;&#31995;&#20154;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-support-the-docusign-integration" title="&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#25903;&#25345; DocuSign&reg; &#38598;&#25104;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#25903;&#25345; DocuSign&reg; &#38598;&#25104;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-work-breakdown-structure" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#65311;</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 &#30340;&#20027;&#21015;&#34920;&#20013;&#21253;&#21547;&#21738;&#20123;&#35745;&#37327;&#21333;&#20301;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#20027;&#21015;&#34920;&#20013;&#21253;&#21547;&#21738;&#20123;&#35745;&#37327;&#21333;&#20301;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#26126;&#32454;&#39033;&#22312;&#25105;&#30340;&#20998;&#21253;&#21830;&#21457;&#31080;&#19978;&#37325;&#22797;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#26126;&#32454;&#39033;&#22312;&#25105;&#30340;&#20998;&#21253;&#21830;&#21457;&#31080;&#19978;&#37325;&#22797;&#65311;</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="&#20026;&#20160;&#20040;&#39044;&#31639;&#20013;&#30340;&ldquo;&#24320;&#24037;&#33267;&#20170;&#25104;&#26412;&rdquo;&#21015;&#19982;&#20998;&#21253;&#21830;&#21457;&#31080;&#37329;&#39069;&#19981;&#19968;&#33268;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#39044;&#31639;&#20013;&#30340;&ldquo;&#24320;&#24037;&#33267;&#20170;&#25104;&#26412;&rdquo;&#21015;&#19982;&#20998;&#21253;&#21830;&#21457;&#31080;&#37329;&#39069;&#19981;&#19968;&#33268;&#65311;</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="&#22914;&#20309;&#22312;&#20027;&#39029;&#19978;&#26174;&#31034;&#39033;&#30446;&#26085;&#26399;&#21015;&#34920;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#20027;&#39029;&#19978;&#26174;&#31034;&#39033;&#30446;&#26085;&#26399;&#21015;&#34920;&#65311;</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="&#20160;&#20040;&#26159;&#32454;&#20998;&#21644;&#32454;&#20998;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32454;&#20998;&#21644;&#32454;&#20998;&#39033;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; Procore Imports &#24212;&#29992;&#31243;&#24207;&#20013;&#25910;&#21040;&#38169;&#35823;&#28040;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; Procore Imports &#24212;&#29992;&#31243;&#24207;&#20013;&#25910;&#21040;&#38169;&#35823;&#28040;&#24687;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-wbs-custom-segments" title="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21019;&#24314; WBS &#33258;&#23450;&#20041;&#32454;&#20998;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21019;&#24314; WBS &#33258;&#23450;&#20041;&#32454;&#20998;&#65311;</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="&#22914;&#20309;&#26597;&#25214;&#39033;&#30446; ID&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26597;&#25214;&#39033;&#30446; ID&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-project-administrator" title="&#20160;&#20040;&#26159;&#39033;&#30446;&#31649;&#29702;&#21592;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#39033;&#30446;&#31649;&#29702;&#21592;&#65311;</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="&#21487;&#20197;&#19968;&#27425;&#23558;&#26435;&#38480;&#27169;&#26495;&#24212;&#29992;&#20110;&#22810;&#20010;&#29992;&#25143;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#19968;&#27425;&#23558;&#26435;&#38480;&#27169;&#26495;&#24212;&#29992;&#20110;&#22810;&#20010;&#29992;&#25143;&#21527;&#65311;</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="&#23548;&#20837;&#27169;&#26495;&#20013;&#30340;&#21015;&#26631;&#39064;&#26356;&#26032;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#23548;&#20837;&#27169;&#26495;&#20013;&#30340;&#21015;&#26631;&#39064;&#26356;&#26032;&#26159;&#20160;&#20040;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; Procore Imports &#24212;&#29992;&#31243;&#24207;&#20013;&#25910;&#21040;&#38169;&#35823;&#28040;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; Procore Imports &#24212;&#29992;&#31243;&#24207;&#20013;&#25910;&#21040;&#38169;&#35823;&#28040;&#24687;&#65311;</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="&#22312; Procore &#31227;&#21160;&#24212;&#29992;&#31243;&#24207;&#19978;&#65292;&#30446;&#21069;&#21738;&#20123;&#24037;&#20855;&#25903;&#25345;&ldquo;&#20070;&#31614;&rdquo;&#21151;&#33021;&#65311;"><span class="mt-icon-article-none"></span>&#22312; Procore &#31227;&#21160;&#24212;&#29992;&#31243;&#24207;&#19978;&#65292;&#30446;&#21069;&#21738;&#20123;&#24037;&#20855;&#25903;&#25345;&ldquo;&#20070;&#31614;&rdquo;&#21151;&#33021;&#65311;</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="&#22312; Procore &#31227;&#21160;&#24212;&#29992;&#31243;&#24207;&#19978;&#65292;&#30446;&#21069;&#21738;&#20123;&#24037;&#20855;&#25903;&#25345;&ldquo;&#20070;&#31614;&rdquo;&#21151;&#33021;&#65311;"><span class="mt-icon-article-none"></span>&#22312; Procore &#31227;&#21160;&#24212;&#29992;&#31243;&#24207;&#19978;&#65292;&#30446;&#21069;&#21738;&#20123;&#24037;&#20855;&#25903;&#25345;&ldquo;&#20070;&#31614;&rdquo;&#21151;&#33021;&#65311;</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="&#25237;&#26631;&#20154;&#21487;&#20197;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#25552;&#20132;&#25237;&#26631;&#36824;&#26159;&#24517;&#39035;&#30331;&#24405;&#65311;"><span class="mt-icon-article-none"></span>&#25237;&#26631;&#20154;&#21487;&#20197;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#25552;&#20132;&#25237;&#26631;&#36824;&#26159;&#24517;&#39035;&#30331;&#24405;&#65311;</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="&#25105;&#33021;&#21542;&#21521;&#27599;&#20010;&#20379;&#24212;&#21830;/&#20998;&#21253;&#21830;&#21457;&#36865;&#25237;&#26631;&#26356;&#26032;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#21521;&#27599;&#20010;&#20379;&#24212;&#21830;/&#20998;&#21253;&#21830;&#21457;&#36865;&#25237;&#26631;&#26356;&#26032;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#22914;&#20309;&#25552;&#39640;&#22270;&#32440;&#19978; OCR &#30340;&#20934;&#30830;&#24615;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#25552;&#39640;&#22270;&#32440;&#19978; OCR &#30340;&#20934;&#30830;&#24615;&#65311;</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="&#22914;&#20309;&#25552;&#39640;&#35268;&#33539;&#20998;&#39033;&#35782;&#21035;&#30340;&#20934;&#30830;&#24615;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#25552;&#39640;&#35268;&#33539;&#20998;&#39033;&#35782;&#21035;&#30340;&#20934;&#30830;&#24615;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-keep-track-of-emailed-drawings" title="&#22914;&#20309;&#36319;&#36394;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#21457;&#36865;&#30340;&#22270;&#32440;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#36319;&#36394;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#21457;&#36865;&#30340;&#22270;&#32440;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-keep-track-of-emailed-specifications" title="&#22914;&#20309;&#36319;&#36394;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#21457;&#36865;&#30340;&#35268;&#33539;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#36319;&#36394;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#21457;&#36865;&#30340;&#35268;&#33539;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-find-the-project-id" title="&#22914;&#20309;&#26597;&#25214;&#39033;&#30446; ID&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26597;&#25214;&#39033;&#30446; ID&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-construction-bidding-process" title="&#20160;&#20040;&#26159;&#24314;&#35774;&#24037;&#31243;&#25237;&#26631;&#27969;&#31243;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#24314;&#35774;&#24037;&#31243;&#25237;&#26631;&#27969;&#31243;&#65311;</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="&#25237;&#26631;&#20154;&#38656;&#35201;&#21738;&#20123;&#26435;&#38480;&#25165;&#33021;&#21463;&#36992;&#25237;&#26631;&#21644;&#25552;&#20132;&#25237;&#26631;&#65311;"><span class="mt-icon-article-none"></span>&#25237;&#26631;&#20154;&#38656;&#35201;&#21738;&#20123;&#26435;&#38480;&#25165;&#33021;&#21463;&#36992;&#25237;&#26631;&#21644;&#25552;&#20132;&#25237;&#26631;&#65311;</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="&#19978;&#20256;&#22270;&#32440;&#26102;&#65292;Procore &#21487;&#20197;&#33258;&#21160;&#22635;&#20805;&#21738;&#20123;&#23383;&#27573;&#65311;"><span class="mt-icon-article-none"></span>&#19978;&#20256;&#22270;&#32440;&#26102;&#65292;Procore &#21487;&#20197;&#33258;&#21160;&#22635;&#20805;&#21738;&#20123;&#23383;&#27573;&#65311;</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="&#19978;&#20256;&#35268;&#33539;&#26102;&#65292;Procore &#21487;&#20197;&#33258;&#21160;&#22635;&#20805;&#21738;&#20123;&#23383;&#27573;&#65311;"><span class="mt-icon-article-none"></span>&#19978;&#20256;&#35268;&#33539;&#26102;&#65292;Procore &#21487;&#20197;&#33258;&#21160;&#22635;&#20805;&#21738;&#20123;&#23383;&#27573;&#65311;</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="&#20026;&#20160;&#20040; Planroom &#20013;&#27809;&#26377;&#25105;&#30340;&#25237;&#26631;&#25991;&#20214;&#21253;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; Planroom &#20013;&#27809;&#26377;&#25105;&#30340;&#25237;&#26631;&#25991;&#20214;&#21253;&#65311;</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 &#22320;&#22270;&#26377;&#21738;&#20123;&#21487;&#35265;&#24615;&#35774;&#32622;&#65311;"><span class="mt-icon-article-none"></span>Procore &#22320;&#22270;&#26377;&#21738;&#20123;&#21487;&#35265;&#24615;&#35774;&#32622;&#65311;</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 &#20013;&#30340;&#39033;&#22914;&#20309;&#22312;&#22320;&#22270;&#19978;&#26174;&#31034;&#65311;"><span class="mt-icon-article-reference"></span>Procore &#20013;&#30340;&#39033;&#22914;&#20309;&#22312;&#22320;&#22270;&#19978;&#26174;&#31034;&#65311;</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 &#20013;&#30340;&#22320;&#22270;&#25903;&#25345;&#21738;&#20123;&#24037;&#20855;&#65311;"><span class="mt-icon-article-reference"></span>Procore &#20013;&#30340;&#22320;&#22270;&#25903;&#25345;&#21738;&#20123;&#24037;&#20855;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; Procore Imports &#24212;&#29992;&#31243;&#24207;&#20013;&#25910;&#21040;&#38169;&#35823;&#28040;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; Procore Imports &#24212;&#29992;&#31243;&#24207;&#20013;&#25910;&#21040;&#38169;&#35823;&#28040;&#24687;&#65311;</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="&#25105;&#33021;&#21542;&#36890;&#36807;&#31227;&#21160;&#35774;&#22791;&#23558;&#29031;&#29255;&#28155;&#21152;&#21040;&#23614;&#39033;&#28165;&#21333;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#36890;&#36807;&#31227;&#21160;&#35774;&#22791;&#23558;&#29031;&#29255;&#28155;&#21152;&#21040;&#23614;&#39033;&#28165;&#21333;&#39033;&#30446;&#65311;</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="&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;</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="&#25105;&#24212;&#35813;&#20026; Procore &#20013;&#30340;&#21738;&#20123;&#39033;&#21046;&#20316;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#24212;&#35813;&#20026; Procore &#20013;&#30340;&#21738;&#20123;&#39033;&#21046;&#20316;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#20351;&#29992;&#25163;&#21160;&#36755;&#20837;&#21019;&#24314;&#30340;&#23614;&#39033;&#39033;&#30446;&#21644;&#20351;&#29992; Quick Capture &#21019;&#24314;&#30340;&#23614;&#39033;&#39033;&#30446;&#20043;&#38388;&#30340;&#25968;&#25454;&#36755;&#20837;&#26377;&#20309;&#19981;&#21516;&#65311;"><span class="mt-icon-article-none"></span>&#20351;&#29992;&#25163;&#21160;&#36755;&#20837;&#21019;&#24314;&#30340;&#23614;&#39033;&#39033;&#30446;&#21644;&#20351;&#29992; Quick Capture &#21019;&#24314;&#30340;&#23614;&#39033;&#39033;&#30446;&#20043;&#38388;&#30340;&#25968;&#25454;&#36755;&#20837;&#26377;&#20309;&#19981;&#21516;&#65311;</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="&#23614;&#39033;&#28165;&#21333;&#24037;&#20316;&#27969;&#22914;&#20309;&#24433;&#21709;&#25105;&#29616;&#26377;&#30340;&#23614;&#39033;&#28165;&#21333;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#23614;&#39033;&#28165;&#21333;&#24037;&#20316;&#27969;&#22914;&#20309;&#24433;&#21709;&#25105;&#29616;&#26377;&#30340;&#23614;&#39033;&#28165;&#21333;&#39033;&#65311;</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="&#22914;&#20309;&#20026;&#25105;&#30340;&#39033;&#30446;&#36873;&#25321;&#40664;&#35748;&#23614;&#39033;&#39033;&#30446;&#32463;&#29702;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#25105;&#30340;&#39033;&#30446;&#36873;&#25321;&#40664;&#35748;&#23614;&#39033;&#39033;&#30446;&#32463;&#29702;&#65311;</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="&#25105;&#22914;&#20309;&#25511;&#21046; Procore &#20174;&#23614;&#39033;&#28165;&#21333;&#24037;&#20855;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#22914;&#20309;&#25511;&#21046; Procore &#20174;&#23614;&#39033;&#28165;&#21333;&#24037;&#20855;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#22914;&#20309;&#30830;&#23450;&#26159;&#21542;&#24050;&#21457;&#36865;&#23614;&#39033;&#28165;&#21333;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#30830;&#23450;&#26159;&#21542;&#24050;&#21457;&#36865;&#23614;&#39033;&#28165;&#21333;&#39033;&#30446;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-disable-quick-capture-for-ios" title="&#22914;&#20309;&#31105;&#29992; iOS &#30340; Quick Capture&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#31105;&#29992; iOS &#30340; Quick Capture&#65311;</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="&#22914;&#20309;&#25353;&#22810;&#23618;&#22320;&#28857;&#31579;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#25353;&#22810;&#23618;&#22320;&#28857;&#31579;&#36873;&#39033;&#65311;</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="&#22914;&#20309;&#23558;&#25105;&#30340;&#23614;&#39033;&#28165;&#21333;&#39033;&#30446;&#40664;&#35748;&#35774;&#20026;&#31169;&#23494;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#25105;&#30340;&#23614;&#39033;&#28165;&#21333;&#39033;&#30446;&#40664;&#35748;&#35774;&#20026;&#31169;&#23494;&#65311;</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="&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</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="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-multi-tiered-locations" title="&#20160;&#20040;&#26159;&#22810;&#23618;&#22320;&#28857;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#22810;&#23618;&#22320;&#28857;&#65311;</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="&#22270;&#32440;&#19978;&#30340;&#23614;&#39033;&#39033;&#30446;&#39068;&#33394;&#20195;&#30721;&#26377;&#20160;&#20040;&#21547;&#20041;&#65311;"><span class="mt-icon-article-none"></span>&#22270;&#32440;&#19978;&#30340;&#23614;&#39033;&#39033;&#30446;&#39068;&#33394;&#20195;&#30721;&#26377;&#20160;&#20040;&#21547;&#20041;&#65311;</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="&#39033;&#30446;&#30340;&#23614;&#39033;&#28165;&#21333;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#23614;&#39033;&#28165;&#21333;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-punch-list" title="&#20160;&#20040;&#26159;&#23614;&#39033;&#28165;&#21333;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#23614;&#39033;&#28165;&#21333;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;</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="&#25105;&#30340;&#23614;&#39033;&#28165;&#21333;&#20013;&#30340;&ldquo;&#36890;&#30693;&#26085;&#26399;&rdquo;&#23383;&#27573;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#30340;&#23614;&#39033;&#28165;&#21333;&#20013;&#30340;&ldquo;&#36890;&#30693;&#26085;&#26399;&rdquo;&#23383;&#27573;&#26159;&#20160;&#20040;&#65311;</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 &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-punch-list-work-flow" title="&#20160;&#20040;&#26159;&#23614;&#39033;&#28165;&#21333;&#24037;&#20316;&#27969;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#23614;&#39033;&#28165;&#21333;&#24037;&#20316;&#27969;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-standard-trades-are-available-in-procore" title="Procore &#20013;&#25552;&#20379;&#21738;&#20123;&#26631;&#20934;&#34892;&#19994;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#25552;&#20379;&#21738;&#20123;&#26631;&#20934;&#34892;&#19994;&#65311;</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="&#23614;&#39033;&#28165;&#21333;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#23614;&#39033;&#28165;&#21333;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</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="&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#24403;&#25968;&#25454;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#31561;&#24453;&#39564;&#25910;&#26102;&#65292;&#26159;&#21542;&#20250;&#36890;&#30693;&#20250;&#35745;&#23457;&#25209;&#32773;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#25968;&#25454;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#31561;&#24453;&#39564;&#25910;&#26102;&#65292;&#26159;&#21542;&#20250;&#36890;&#30693;&#20250;&#35745;&#23457;&#25209;&#32773;&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</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="&#26377;&#21738;&#20123;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#20197;&#21450;&#25105;&#20204;&#30340; ERP &#38598;&#25104;&#22914;&#20309;&#25903;&#25345;&#36825;&#20123;&#25104;&#26412;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#26377;&#21738;&#20123;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#20197;&#21450;&#25105;&#20204;&#30340; ERP &#38598;&#25104;&#22914;&#20309;&#25903;&#25345;&#36825;&#20123;&#25104;&#26412;&#31867;&#22411;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-erp-icons-mean" title="ERP &#22270;&#26631;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>ERP &#22270;&#26631;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;</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="&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-category-concept" title="&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#27010;&#24565;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#27010;&#24565;&#65311;</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="&#24403;&#39033;&#34987; ERP &#25298;&#32477;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#39033;&#34987; ERP &#25298;&#32477;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;</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="&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;</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="&#24403;&#25968;&#25454;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#31561;&#24453;&#39564;&#25910;&#26102;&#65292;&#26159;&#21542;&#20250;&#36890;&#30693;&#20250;&#35745;&#23457;&#25209;&#32773;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#25968;&#25454;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#31561;&#24453;&#39564;&#25910;&#26102;&#65292;&#26159;&#21542;&#20250;&#36890;&#30693;&#20250;&#35745;&#23457;&#25209;&#32773;&#65311;</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="&#24453;&#22788;&#29702;&#21512;&#32422;&#26159;&#21542;&#20250;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#33258;&#21160;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#24453;&#22788;&#29702;&#21512;&#32422;&#26159;&#21542;&#20250;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#33258;&#21160;&#21516;&#27493;&#65311;</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="&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;</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="&#21512;&#32422;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#21518;&#65292;&#25105;&#33021;&#21542;&#32534;&#36753;&#25110;&#21024;&#38500;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#21518;&#65292;&#25105;&#33021;&#21542;&#32534;&#36753;&#25110;&#21024;&#38500;&#65311;</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="&#25105;&#21487;&#20197;&#23558; Procore &#39044;&#31639;&#20462;&#25913;&#23548;&#20986;&#21040;&#38598;&#25104; ERP &#31995;&#32479;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#23558; Procore &#39044;&#31639;&#20462;&#25913;&#23548;&#20986;&#21040;&#38598;&#25104; ERP &#31995;&#32479;&#21527;&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#30340;&#39044;&#31639;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#30340;&#39044;&#31639;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</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="&#22914;&#20309;&#20026; Procore + QuickBooks &#35774;&#32622;&#20998;&#21253;&#21830;&#21457;&#31080;&#21644;&#20184;&#27454;&#21151;&#33021;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026; Procore + QuickBooks &#35774;&#32622;&#20998;&#21253;&#21830;&#21457;&#31080;&#21644;&#20184;&#27454;&#21151;&#33021;&#65311;</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="&#22914;&#20309;&#35299;&#20915;&#23548;&#20986;&#21040;ERP&#26102;&#30340;&quot;&#26080;&#27861;&#23436;&#25104;&#27492;&#23548;&#20986;&#65292;&#22240;&#20026;QuickBooks&#20013;&#30340;&#26126;&#32454;&#39033;&#25968;&#37327;&#19982; Procore &#20013;&#30340;&#25968;&#37327;&#19981;&#21305;&#37197;&quot;&#38169;&#35823;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;&#23548;&#20986;&#21040;ERP&#26102;&#30340;&quot;&#26080;&#27861;&#23436;&#25104;&#27492;&#23548;&#20986;&#65292;&#22240;&#20026;QuickBooks&#20013;&#30340;&#26126;&#32454;&#39033;&#25968;&#37327;&#19982; Procore &#20013;&#30340;&#25968;&#37327;&#19981;&#21305;&#37197;&quot;&#38169;&#35823;&#65311;</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="&#22312;&#23548;&#20986;&#21040; ERP &#26102;&#65292;&#22914;&#20309;&#35299;&#20915;&ldquo;&#28155;&#21152;&#12289;&#20462;&#25913;&#25110;&#21024;&#38500; XXXXXX-XXXXXXXXXXX &#26102;&#20986;&#38169;&#65292;&#22240;&#20026;&#24050;&#22312;&#20351;&#29992;&#20013;&#12290;&rdquo;&#38169;&#35823;"><span class="mt-icon-article-none"></span>&#22312;&#23548;&#20986;&#21040; ERP &#26102;&#65292;&#22914;&#20309;&#35299;&#20915;&ldquo;&#28155;&#21152;&#12289;&#20462;&#25913;&#25110;&#21024;&#38500; XXXXXX-XXXXXXXXXXX &#26102;&#20986;&#38169;&#65292;&#22240;&#20026;&#24050;&#22312;&#20351;&#29992;&#20013;&#12290;&rdquo;&#38169;&#35823;</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="&#26377;&#21738;&#20123;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#20197;&#21450;&#25105;&#20204;&#30340; ERP &#38598;&#25104;&#22914;&#20309;&#25903;&#25345;&#36825;&#20123;&#25104;&#26412;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#26377;&#21738;&#20123;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#20197;&#21450;&#25105;&#20204;&#30340; ERP &#38598;&#25104;&#22914;&#20309;&#25903;&#25345;&#36825;&#20123;&#25104;&#26412;&#31867;&#22411;&#65311;</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="&#24403;&#21512;&#32422;&#26410;&#33021;&#20174; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#23548;&#20986;&#26102;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#21512;&#32422;&#26410;&#33021;&#20174; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#23548;&#20986;&#26102;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-erp-icons-mean" title="ERP &#22270;&#26631;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>ERP &#22270;&#26631;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;</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="&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;</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="&#21512;&#32422;&ldquo;&#32534;&#21495; (#)&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&ldquo;&#32534;&#21495; (#)&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#21512;&#32422;&ldquo;&#26631;&#39064;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&ldquo;&#26631;&#39064;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#30446;&#24405;&#24037;&#20855;&#20013;&ldquo;&#20844;&#21496;&#21517;&#31216;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-none"></span>&#30446;&#24405;&#24037;&#20855;&#20013;&ldquo;&#20844;&#21496;&#21517;&#31216;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#25105;&#24212;&#35813;&#23558;&#21738;&#20123;&#39044;&#31639;&#35270;&#22270;&#28155;&#21152;&#21040;&#25105;&#30340; Procore &#39033;&#30446;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#24212;&#35813;&#23558;&#21738;&#20123;&#39044;&#31639;&#35270;&#22270;&#28155;&#21152;&#21040;&#25105;&#30340; Procore &#39033;&#30446;&#20013;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-category-concept" title="&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#27010;&#24565;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#27010;&#24565;&#65311;</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="&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#23376;&#20316;&#19994;&rdquo;&#27010;&#24565;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#23376;&#20316;&#19994;&rdquo;&#27010;&#24565;&#65311;</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="&#22312; QuickBooks&reg; &#20013;&#21551;&#29992;&#21738;&#20010;&#35774;&#32622;&#25165;&#33021;&#20351;&#29992; ERP &#38598;&#25104;&#24037;&#20855;&#23548;&#20986;&#21457;&#31080;&#65311;"><span class="mt-icon-article-none"></span>&#22312; QuickBooks&reg; &#20013;&#21551;&#29992;&#21738;&#20010;&#35774;&#32622;&#25165;&#33021;&#20351;&#29992; ERP &#38598;&#25104;&#24037;&#20855;&#23548;&#20986;&#21457;&#31080;&#65311;</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="&#24403;&#39033;&#34987; ERP &#25298;&#32477;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#39033;&#34987; ERP &#25298;&#32477;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-or-activate-procore-projects" title="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#25110;&#28608;&#27963; Procore &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#25110;&#28608;&#27963; Procore &#39033;&#30446;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&ldquo;&#21516;&#27493;&rdquo;&#25110;&ldquo;&#21047;&#26032;&rdquo;&#25353;&#38062;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&ldquo;&#21516;&#27493;&rdquo;&#25110;&ldquo;&#21047;&#26032;&rdquo;&#25353;&#38062;&#65311;</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="&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;</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="&#20026;&#20160;&#20040;&ldquo;&#21457;&#36865;&#21040; ERP&rdquo;&#25353;&#38062;&#21464;&#26263;&#24182;&#19988;&#22312;&#39033;&#30446;&#21019;&#24314;&#21161;&#25163;&#20013;&#19981;&#21487;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&ldquo;&#21457;&#36865;&#21040; ERP&rdquo;&#25353;&#38062;&#21464;&#26263;&#24182;&#19988;&#22312;&#39033;&#30446;&#21019;&#24314;&#21161;&#25163;&#20013;&#19981;&#21487;&#29992;&#65311;</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="&#25105;&#21487;&#20197;&#21019;&#24314;&#19968;&#20221;&#36926;&#26399;&#20027;&#21512;&#21516;&#21464;&#26356;&#36890;&#30693;&#21333; (PCCO) &#30340;&#28165;&#21333;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#21019;&#24314;&#19968;&#20221;&#36926;&#26399;&#20027;&#21512;&#21516;&#21464;&#26356;&#36890;&#30693;&#21333; (PCCO) &#30340;&#28165;&#21333;&#21527;&#65311;</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="&#26159;&#21542;&#26377;&#21150;&#27861;&#26597;&#30475; Procore &#20013;&#20998;&#37197;&#32473;&#25105;&#30340;&#25152;&#26377;&#26410;&#23436;&#25104;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#26159;&#21542;&#26377;&#21150;&#27861;&#26597;&#30475; Procore &#20013;&#20998;&#37197;&#32473;&#25105;&#30340;&#25152;&#26377;&#26410;&#23436;&#25104;&#39033;&#65311;</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="&#20351;&#29992; 360 &#24230;&#25253;&#21578;&#35775;&#38382;&#21487;&#25253;&#21578;&#25968;&#25454;&#38656;&#35201;&#21738;&#20123;&#39069;&#22806;&#30340;&#29992;&#25143;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#20351;&#29992; 360 &#24230;&#25253;&#21578;&#35775;&#38382;&#21487;&#25253;&#21578;&#25968;&#25454;&#38656;&#35201;&#21738;&#20123;&#39069;&#22806;&#30340;&#29992;&#25143;&#26435;&#38480;&#65311;</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 &#24230;&#25253;&#21578;&#20013;&#26377;&#21738;&#20123;&#36130;&#21153;&#26126;&#32454;&#39033;&#65311;"><span class="mt-icon-article-none"></span>360 &#24230;&#25253;&#21578;&#20013;&#26377;&#21738;&#20123;&#36130;&#21153;&#26126;&#32454;&#39033;&#65311;</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="&#24403;&#25105;&#19982;&#20854;&#20182; Procore &#29992;&#25143;&#20849;&#20139;&#25253;&#21578;&#26102;&#20250;&#24590;&#26679;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#25105;&#19982;&#20854;&#20182; Procore &#29992;&#25143;&#20849;&#20139;&#25253;&#21578;&#26102;&#20250;&#24590;&#26679;&#65311;</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 &#24230;&#25253;&#21578;&#24037;&#20855;&#20013;&#25552;&#20379;&#21738;&#20123;&#25253;&#21578;&#27169;&#26495;&#65311;"><span class="mt-icon-article-none"></span>360 &#24230;&#25253;&#21578;&#24037;&#20855;&#20013;&#25552;&#20379;&#21738;&#20123;&#25253;&#21578;&#27169;&#26495;&#65311;</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="&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#20013;&#21253;&#21547;&#21738;&#20123;&#25968;&#25454;&#21015;&#65311;"><span class="mt-icon-article-none"></span>&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#20013;&#21253;&#21547;&#21738;&#20123;&#25968;&#25454;&#21015;&#65311;</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="&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#20250;&#26356;&#26032;&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#20013;&#30340;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#20250;&#26356;&#26032;&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#20013;&#30340;&#25968;&#25454;&#65311;</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="&#20026;&#20160;&#20040;&#27809;&#26377;&#37197;&#32622;&#20581;&#24247;&#20202;&#34920;&#26495;&#30340;&#36130;&#21153;&#20581;&#24247;&#37096;&#20998;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#27809;&#26377;&#37197;&#32622;&#20581;&#24247;&#20202;&#34920;&#26495;&#30340;&#36130;&#21153;&#20581;&#24247;&#37096;&#20998;&#65311;</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="&#20026;&#20160;&#20040;&quot;&#28155;&#21152;&#35270;&#35273;&#20803;&#32032;&quot;&#25353;&#38062;&#22312;&#21333;&#20010;&#24037;&#20855;&#25253;&#21578;&#19978;&#19981;&#21487;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&quot;&#28155;&#21152;&#35270;&#35273;&#20803;&#32032;&quot;&#25353;&#38062;&#22312;&#21333;&#20010;&#24037;&#20855;&#25253;&#21578;&#19978;&#19981;&#21487;&#29992;&#65311;</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="&#25105;&#33021;&#21542;&#21019;&#24314;&#20855;&#26377;&#37325;&#22797;&#32534;&#21495;&#30340; RFI&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#21019;&#24314;&#20855;&#26377;&#37325;&#22797;&#32534;&#21495;&#30340; RFI&#65311;</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="&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;</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="&#29992;&#25143;&#26159;&#21542;&#38656;&#35201;&#30331;&#24405; Procore &#25165;&#33021;&#31572;&#22797; RFI&#65311;"><span class="mt-icon-article-none"></span>&#29992;&#25143;&#26159;&#21542;&#38656;&#35201;&#30331;&#24405; Procore &#25165;&#33021;&#31572;&#22797; RFI&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-assign-numbers-to-rfis" title="Procore &#22914;&#20309;&#20026; RFI &#20998;&#37197;&#32534;&#21495;&#65311;"><span class="mt-icon-article-none"></span>Procore &#22914;&#20309;&#20026; RFI &#20998;&#37197;&#32534;&#21495;&#65311;</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="&#20316;&#20026;&#20219;&#21153;&#20998;&#37197;&#23545;&#35937;&#65292;&#22914;&#20309;&#35775;&#38382; RFI&#65311;"><span class="mt-icon-article-none"></span>&#20316;&#20026;&#20219;&#21153;&#20998;&#37197;&#23545;&#35937;&#65292;&#22914;&#20309;&#35775;&#38382; RFI&#65311;</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="&#22914;&#20309;&#20026; mailto &#38142;&#25509;&#26356;&#25913;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#30340;&#40664;&#35748;&#30005;&#23376;&#37038;&#20214;&#23458;&#25143;&#31471;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026; mailto &#38142;&#25509;&#26356;&#25913;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#30340;&#40664;&#35748;&#30005;&#23376;&#37038;&#20214;&#23458;&#25143;&#31471;&#65311;</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="&#22914;&#20309;&#25511;&#21046; Procore &#22312; RFI &#36807;&#31243;&#20013;&#21457;&#36865;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#25511;&#21046; Procore &#22312; RFI &#36807;&#31243;&#20013;&#21457;&#36865;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#22914;&#20309;&#25353;&#22810;&#23618;&#22320;&#28857;&#31579;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#25353;&#22810;&#23618;&#22320;&#28857;&#31579;&#36873;&#39033;&#65311;</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="&#22914;&#20309;&#20174;&#33258;&#23450;&#20041; RFI &#25253;&#21578;&#20013;&#31579;&#36873;&#25481;&ldquo;&#24050;&#22238;&#25910;&rdquo;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20174;&#33258;&#23450;&#20041; RFI &#25253;&#21578;&#20013;&#31579;&#36873;&#25481;&ldquo;&#24050;&#22238;&#25910;&rdquo;&#39033;&#65311;</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="&#22914;&#20309;&#23558;&#20219;&#21153;&#20998;&#37197;&#23545;&#35937;&#26631;&#35760;&#20026; RFI &#30340;&#25152;&#38656;&#31572;&#22797;&#32773;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#20219;&#21153;&#20998;&#37197;&#23545;&#35937;&#26631;&#35760;&#20026; RFI &#30340;&#25152;&#38656;&#31572;&#22797;&#32773;&#65311;</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="&#22914;&#26524;&#25105;&#26159; RFI &#32463;&#29702;&#65292;&#22914;&#20309;&#25552;&#20132;&#23545; RFI&ldquo;&#33609;&#31295;&rdquo;&#30340;&#31572;&#22797;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#25105;&#26159; RFI &#32463;&#29702;&#65292;&#22914;&#20309;&#25552;&#20132;&#23545; RFI&ldquo;&#33609;&#31295;&rdquo;&#30340;&#31572;&#22797;&#65311;</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="&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</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="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</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="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#37096;&#20998;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#37096;&#20998;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-multi-tiered-locations" title="&#20160;&#20040;&#26159;&#22810;&#23618;&#22320;&#28857;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#22810;&#23618;&#22320;&#28857;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-fieldset-configurations-are-recommended-for-configurable-fieldsets" title="&#23545;&#20110;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#25512;&#33616;&#20351;&#29992;&#21738;&#20123;&#37197;&#32622;&#65311;"><span class="mt-icon-article-none"></span>&#23545;&#20110;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#25512;&#33616;&#20351;&#29992;&#21738;&#20123;&#37197;&#32622;&#65311;</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="&#39033;&#30446;&#30340; RFI &#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340; RFI &#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-draft-rfi" title="&#20160;&#20040;&#26159; RFI&ldquo;&#33609;&#31295;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; RFI&ldquo;&#33609;&#31295;&rdquo;&#65311;</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 &#20013;&#39640;&#32423;&#25628;&#32034;&#31526;&#21495;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#39640;&#32423;&#25628;&#32034;&#31526;&#21495;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-rfi" title="&#20160;&#20040;&#26159; RFI&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; RFI&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;</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 &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#25991;&#26723;&#31649;&#29702;&#38468;&#20214;&#21644;&#26469;&#33258;&#20854;&#20182;&#24037;&#20855;&#30340;&#38468;&#20214;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#25991;&#26723;&#31649;&#29702;&#38468;&#20214;&#21644;&#26469;&#33258;&#20854;&#20182;&#24037;&#20855;&#30340;&#38468;&#20214;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-rfi-manager-role" title="&#20160;&#20040;&#26159; RFI &#32463;&#29702;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; RFI &#32463;&#29702;&#35282;&#33394;&#65311;</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="&#22312; Procore &#20013;&#20026; RFI &#32534;&#21495;&#26377;&#21738;&#20123;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#22312; Procore &#20013;&#20026; RFI &#32534;&#21495;&#26377;&#21738;&#20123;&#36873;&#39033;&#65311;</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="&#23558;&#20219;&#21153;&#20998;&#37197;&#23545;&#35937;&#28155;&#21152;&#21040; RFI &#21644;&#36716;&#21457; RFI &#20379;&#23457;&#26680;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#23558;&#20219;&#21153;&#20998;&#37197;&#23545;&#35937;&#28155;&#21152;&#21040; RFI &#21644;&#36716;&#21457; RFI &#20379;&#23457;&#26680;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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 &#24037;&#20855;&#20309;&#26102;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>RFI &#24037;&#20855;&#20309;&#26102;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;</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="&quot;&#35268;&#33539;&#20998;&#39033;&quot;&#19979;&#25289;&#21015;&#34920;&#20013;&#30340;&#36873;&#39033;&#20174;&#20309;&#32780;&#26469;&#65311;"><span class="mt-icon-article-none"></span>&quot;&#35268;&#33539;&#20998;&#39033;&quot;&#19979;&#25289;&#21015;&#34920;&#20013;&#30340;&#36873;&#39033;&#20174;&#20309;&#32780;&#26469;&#65311;</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 &#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>RFI &#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</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="&#25105;&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#21019;&#24314;&#21464;&#26356;&#20107;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#21019;&#24314;&#21464;&#26356;&#20107;&#20214;&#65311;</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="&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-tools-can-attach-document-management-files" title="&#21738;&#20123;&#24037;&#20855;&#21487;&#20197;&#28155;&#21152;&#25991;&#26723;&#31649;&#29702;&#25991;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#24037;&#20855;&#21487;&#20197;&#28155;&#21152;&#25991;&#26723;&#31649;&#29702;&#25991;&#20214;&#65311;</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="&#35841;&#21487;&#20197;&#34987;&#25351;&#23450;&#20026; RFI &#30340;&ldquo;&#20219;&#21153;&#20998;&#37197;&#23545;&#35937;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#35841;&#21487;&#20197;&#34987;&#25351;&#23450;&#20026; RFI &#30340;&ldquo;&#20219;&#21153;&#20998;&#37197;&#23545;&#35937;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-can-view-a-draft-rfi" title="&#35841;&#21487;&#20197;&#26597;&#30475; RFI&ldquo;&#33609;&#31295;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#35841;&#21487;&#20197;&#26597;&#30475; RFI&ldquo;&#33609;&#31295;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-delete-items-in-procore" title="&#20026;&#20160;&#20040;&#19981;&#33021;&#22312; Procore &#20013;&#21024;&#38500;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#19981;&#33021;&#22312; Procore &#20013;&#21024;&#38500;&#39033;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#20204;&#39033;&#30446;&#30340;&#26576;&#20123; RFI &#32534;&#21495;&#26377;&#20004;&#20010;&#21069;&#32512;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#20204;&#39033;&#30446;&#30340;&#26576;&#20123; RFI &#32534;&#21495;&#26377;&#20004;&#20010;&#21069;&#32512;&#65311;</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="&#24403;&#25968;&#25454;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#31561;&#24453;&#39564;&#25910;&#26102;&#65292;&#26159;&#21542;&#20250;&#36890;&#30693;&#20250;&#35745;&#23457;&#25209;&#32773;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#25968;&#25454;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#31561;&#24453;&#39564;&#25910;&#26102;&#65292;&#26159;&#21542;&#20250;&#36890;&#30693;&#20250;&#35745;&#23457;&#25209;&#32773;&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#20844;&#21496;&#21516;&#27493;&#21518;&#26356;&#25913;&#36873;&#23450;&#30340;&#20379;&#24212;&#21830;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312;&#20844;&#21496;&#21516;&#27493;&#21518;&#26356;&#25913;&#36873;&#23450;&#30340;&#20379;&#24212;&#21830;&#31867;&#22411;&#65311;</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="&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;</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="&#21512;&#32422;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#21518;&#65292;&#25105;&#33021;&#21542;&#32534;&#36753;&#25110;&#21024;&#38500;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#21518;&#65292;&#25105;&#33021;&#21542;&#32534;&#36753;&#25110;&#21024;&#38500;&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#30340;&#39044;&#31639;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#30340;&#39044;&#31639;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</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="&#22914;&#20309;&#23558;&#25104;&#26412;&#39044;&#27979;&#25968;&#25454;&#20174; Procore &#39044;&#31639;&#23548;&#20986;&#21040; ERP"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#25104;&#26412;&#39044;&#27979;&#25968;&#25454;&#20174; Procore &#39044;&#31639;&#23548;&#20986;&#21040; 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="&#25105;&#21487;&#20197;&#20351;&#29992; Ryvit &#38598;&#25104;&#20197;&#20309;&#31181;&#39057;&#29575;&#21516;&#27493;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#20351;&#29992; Ryvit &#38598;&#25104;&#20197;&#20309;&#31181;&#39057;&#29575;&#21516;&#27493;&#25968;&#25454;&#65311;</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="&#26377;&#21738;&#20123;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#20197;&#21450;&#25105;&#20204;&#30340; ERP &#38598;&#25104;&#22914;&#20309;&#25903;&#25345;&#36825;&#20123;&#25104;&#26412;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#26377;&#21738;&#20123;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#20197;&#21450;&#25105;&#20204;&#30340; ERP &#38598;&#25104;&#22914;&#20309;&#25903;&#25345;&#36825;&#20123;&#25104;&#26412;&#31867;&#22411;&#65311;</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="&#21738;&#20123;&#25968;&#25454;&#19982; Ryvit &#38598;&#25104;&#36830;&#25509;&#22120;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#25968;&#25454;&#19982; Ryvit &#38598;&#25104;&#36830;&#25509;&#22120;&#21516;&#27493;&#65311;</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="&#24403;&#21512;&#32422;&#26410;&#33021;&#20174; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#23548;&#20986;&#26102;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#21512;&#32422;&#26410;&#33021;&#20174; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#23548;&#20986;&#26102;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;</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="&#21512;&#32422;&ldquo;&#32534;&#21495; (#)&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&ldquo;&#32534;&#21495; (#)&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#21512;&#32422;&ldquo;&#26631;&#39064;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&ldquo;&#26631;&#39064;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#30446;&#24405;&#24037;&#20855;&#20013;&ldquo;&#20844;&#21496;&#21517;&#31216;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-none"></span>&#30446;&#24405;&#24037;&#20855;&#20013;&ldquo;&#20844;&#21496;&#21517;&#31216;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#25105;&#24212;&#35813;&#23558;&#21738;&#20123;&#39044;&#31639;&#35270;&#22270;&#28155;&#21152;&#21040;&#25105;&#30340; Procore &#39033;&#30446;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#24212;&#35813;&#23558;&#21738;&#20123;&#39044;&#31639;&#35270;&#22270;&#28155;&#21152;&#21040;&#25105;&#30340; Procore &#39033;&#30446;&#20013;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-category-concept" title="&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#27010;&#24565;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#27010;&#24565;&#65311;</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="&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#23376;&#20316;&#19994;&rdquo;&#27010;&#24565;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#23376;&#20316;&#19994;&rdquo;&#27010;&#24565;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-or-activate-procore-projects" title="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#25110;&#28608;&#27963; Procore &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#25110;&#28608;&#27963; Procore &#39033;&#30446;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-wbs-custom-segments" title="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21019;&#24314; WBS &#33258;&#23450;&#20041;&#32454;&#20998;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21019;&#24314; WBS &#33258;&#23450;&#20041;&#32454;&#20998;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&ldquo;&#21516;&#27493;&rdquo;&#25110;&ldquo;&#21047;&#26032;&rdquo;&#25353;&#38062;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&ldquo;&#21516;&#27493;&rdquo;&#25110;&ldquo;&#21047;&#26032;&rdquo;&#25353;&#38062;&#65311;</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="&#20026;&#20160;&#20040;&ldquo;&#21457;&#36865;&#21040; ERP&rdquo;&#25353;&#38062;&#21464;&#26263;&#24182;&#19988;&#22312;&#39033;&#30446;&#21019;&#24314;&#21161;&#25163;&#20013;&#19981;&#21487;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&ldquo;&#21457;&#36865;&#21040; ERP&rdquo;&#25353;&#38062;&#21464;&#26263;&#24182;&#19988;&#22312;&#39033;&#30446;&#21019;&#24314;&#21161;&#25163;&#20013;&#19981;&#21487;&#29992;&#65311;</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="&#24403;&#25968;&#25454;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#31561;&#24453;&#39564;&#25910;&#26102;&#65292;&#26159;&#21542;&#20250;&#36890;&#30693;&#20250;&#35745;&#23457;&#25209;&#32773;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#25968;&#25454;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#31561;&#24453;&#39564;&#25910;&#26102;&#65292;&#26159;&#21542;&#20250;&#36890;&#30693;&#20250;&#35745;&#23457;&#25209;&#32773;&#65311;</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="&#24453;&#22788;&#29702;&#21512;&#32422;&#26159;&#21542;&#20250;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#33258;&#21160;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#24453;&#22788;&#29702;&#21512;&#32422;&#26159;&#21542;&#20250;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#33258;&#21160;&#21516;&#27493;&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#20844;&#21496;&#21516;&#27493;&#21518;&#26356;&#25913;&#36873;&#23450;&#30340;&#20379;&#24212;&#21830;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312;&#20844;&#21496;&#21516;&#27493;&#21518;&#26356;&#25913;&#36873;&#23450;&#30340;&#20379;&#24212;&#21830;&#31867;&#22411;&#65311;</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="&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;</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="&#21512;&#32422;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#21518;&#65292;&#25105;&#33021;&#21542;&#32534;&#36753;&#25110;&#21024;&#38500;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#21518;&#65292;&#25105;&#33021;&#21542;&#32534;&#36753;&#25110;&#21024;&#38500;&#65311;</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="&#25105;&#21487;&#20197;&#23558; Procore &#39044;&#31639;&#20462;&#25913;&#23548;&#20986;&#21040;&#38598;&#25104; ERP &#31995;&#32479;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#23558; Procore &#39044;&#31639;&#20462;&#25913;&#23548;&#20986;&#21040;&#38598;&#25104; ERP &#31995;&#32479;&#21527;&#65311;</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 &#30340; hh2 &#21516;&#27493;&#36807;&#31243;&#26159;&#21542;&#38656;&#35201;&#32456;&#31471;&#26381;&#21153;&#22120;&#65311;"><span class="mt-icon-article-none"></span>Sage 100 Contractor &#30340; hh2 &#21516;&#27493;&#36807;&#31243;&#26159;&#21542;&#38656;&#35201;&#32456;&#31471;&#26381;&#21153;&#22120;&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#30340;&#39044;&#31639;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#30340;&#39044;&#31639;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</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 &#21516;&#27493;&#23458;&#25143;&#31471;&#22914;&#20309;&#23558; Procore &#36830;&#25509;&#21040; Sage 100 Contractor&#65311;"><span class="mt-icon-article-none"></span>hh2 &#21516;&#27493;&#23458;&#25143;&#31471;&#22914;&#20309;&#23558; Procore &#36830;&#25509;&#21040; Sage 100 Contractor&#65311;</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 &#21516;&#27493;&#23458;&#25143;&#31471;&#22914;&#20309;&#20256;&#36755;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>hh2 &#21516;&#27493;&#23458;&#25143;&#31471;&#22914;&#20309;&#20256;&#36755;&#25968;&#25454;&#65311;</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="&#25105;&#21487;&#22312; Sage 100 Contractor &#21644; Procore &#20043;&#38388;&#20197;&#20309;&#31181;&#39057;&#29575;&#21516;&#27493;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#22312; Sage 100 Contractor &#21644; Procore &#20043;&#38388;&#20197;&#20309;&#31181;&#39057;&#29575;&#21516;&#27493;&#25968;&#25454;&#65311;</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="&#26377;&#21738;&#20123;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#20197;&#21450;&#25105;&#20204;&#30340; ERP &#38598;&#25104;&#22914;&#20309;&#25903;&#25345;&#36825;&#20123;&#25104;&#26412;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#26377;&#21738;&#20123;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#20197;&#21450;&#25105;&#20204;&#30340; ERP &#38598;&#25104;&#22914;&#20309;&#25903;&#25345;&#36825;&#20123;&#25104;&#26412;&#31867;&#22411;&#65311;</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 &#21644; Sage 100 Contractor &#20043;&#38388;&#21516;&#27493;&#21738;&#20123;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>Procore &#21644; Sage 100 Contractor &#20043;&#38388;&#21516;&#27493;&#21738;&#20123;&#25968;&#25454;&#65311;</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="&#24403;&#21512;&#32422;&#26410;&#33021;&#20174; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#23548;&#20986;&#26102;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#21512;&#32422;&#26410;&#33021;&#20174; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#23548;&#20986;&#26102;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-erp-icons-mean" title="ERP &#22270;&#26631;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>ERP &#22270;&#26631;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;</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="&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;</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="&#21512;&#32422;&ldquo;&#32534;&#21495; (#)&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&ldquo;&#32534;&#21495; (#)&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#21512;&#32422;&ldquo;&#26631;&#39064;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&ldquo;&#26631;&#39064;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#30446;&#24405;&#24037;&#20855;&#20013;&ldquo;&#20844;&#21496;&#21517;&#31216;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-none"></span>&#30446;&#24405;&#24037;&#20855;&#20013;&ldquo;&#20844;&#21496;&#21517;&#31216;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#20316;&#19994;&#12289;&#29238;&#20316;&#19994;&#21644;&#23376;&#20316;&#19994;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#20316;&#19994;&#12289;&#29238;&#20316;&#19994;&#21644;&#23376;&#20316;&#19994;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;</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="&#25105;&#24212;&#35813;&#23558;&#21738;&#20123;&#39044;&#31639;&#35270;&#22270;&#28155;&#21152;&#21040;&#25105;&#30340; Procore &#39033;&#30446;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#24212;&#35813;&#23558;&#21738;&#20123;&#39044;&#31639;&#35270;&#22270;&#28155;&#21152;&#21040;&#25105;&#30340; Procore &#39033;&#30446;&#20013;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-category-concept" title="&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#27010;&#24565;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#27010;&#24565;&#65311;</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="&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#23376;&#20316;&#19994;&rdquo;&#27010;&#24565;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#23376;&#20316;&#19994;&rdquo;&#27010;&#24565;&#65311;</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="&#24403;&#39033;&#34987; ERP &#25298;&#32477;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#39033;&#34987; ERP &#25298;&#32477;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-or-activate-procore-projects" title="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#25110;&#28608;&#27963; Procore &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#25110;&#28608;&#27963; Procore &#39033;&#30446;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&ldquo;&#21516;&#27493;&rdquo;&#25110;&ldquo;&#21047;&#26032;&rdquo;&#25353;&#38062;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&ldquo;&#21516;&#27493;&rdquo;&#25110;&ldquo;&#21047;&#26032;&rdquo;&#25353;&#38062;&#65311;</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="&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;</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="&#20026;&#20160;&#20040;&ldquo;&#21457;&#36865;&#21040; ERP&rdquo;&#25353;&#38062;&#21464;&#26263;&#24182;&#19988;&#22312;&#39033;&#30446;&#21019;&#24314;&#21161;&#25163;&#20013;&#19981;&#21487;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&ldquo;&#21457;&#36865;&#21040; ERP&rdquo;&#25353;&#38062;&#21464;&#26263;&#24182;&#19988;&#22312;&#39033;&#30446;&#21019;&#24314;&#21161;&#25163;&#20013;&#19981;&#21487;&#29992;&#65311;</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="&#24403;&#25968;&#25454;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#31561;&#24453;&#39564;&#25910;&#26102;&#65292;&#26159;&#21542;&#20250;&#36890;&#30693;&#20250;&#35745;&#23457;&#25209;&#32773;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#25968;&#25454;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#31561;&#24453;&#39564;&#25910;&#26102;&#65292;&#26159;&#21542;&#20250;&#36890;&#30693;&#20250;&#35745;&#23457;&#25209;&#32773;&#65311;</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="&#24453;&#22788;&#29702;&#21512;&#32422;&#26159;&#21542;&#20250;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#33258;&#21160;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#24453;&#22788;&#29702;&#21512;&#32422;&#26159;&#21542;&#20250;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#33258;&#21160;&#21516;&#27493;&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#20844;&#21496;&#21516;&#27493;&#21518;&#26356;&#25913;&#36873;&#23450;&#30340;&#20379;&#24212;&#21830;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312;&#20844;&#21496;&#21516;&#27493;&#21518;&#26356;&#25913;&#36873;&#23450;&#30340;&#20379;&#24212;&#21830;&#31867;&#22411;&#65311;</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="&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;</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="&#25105;&#21487;&#20197;&#20174; Procore &#20013;&#21024;&#38500; Sage 300 CRE &#25104;&#26412;&#32534;&#21495;&#12289;&#25104;&#26412;&#31867;&#22411;&#25110;&#20379;&#24212;&#21830;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#20174; Procore &#20013;&#21024;&#38500; Sage 300 CRE &#25104;&#26412;&#32534;&#21495;&#12289;&#25104;&#26412;&#31867;&#22411;&#25110;&#20379;&#24212;&#21830;&#21527;&#65311;</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="&#21512;&#32422;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#21518;&#65292;&#25105;&#33021;&#21542;&#32534;&#36753;&#25110;&#21024;&#38500;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#21518;&#65292;&#25105;&#33021;&#21542;&#32534;&#36753;&#25110;&#21024;&#38500;&#65311;</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="&#25105;&#21487;&#20197;&#23558; Procore &#39044;&#31639;&#20462;&#25913;&#23548;&#20986;&#21040;&#38598;&#25104; ERP &#31995;&#32479;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#23558; Procore &#39044;&#31639;&#20462;&#25913;&#23548;&#20986;&#21040;&#38598;&#25104; ERP &#31995;&#32479;&#21527;&#65311;</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 &#30340; hh2 &#21516;&#27493;&#27969;&#31243;&#26159;&#21542;&#38656;&#35201;&#32456;&#31471;&#26381;&#21153;&#22120;&#65311;"><span class="mt-icon-article-none"></span>Sage 300 CRE &#30340; hh2 &#21516;&#27493;&#27969;&#31243;&#26159;&#21542;&#38656;&#35201;&#32456;&#31471;&#26381;&#21153;&#22120;&#65311;</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="&#25105;&#26159;&#21542;&#38656;&#35201;&#22312; Sage 300 CRE &#20013;&#20026; hh2 &#21516;&#27493;&#23458;&#25143;&#31471;&#21019;&#24314;&#19987;&#29992;&#29992;&#25143;&#36134;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#26159;&#21542;&#38656;&#35201;&#22312; Sage 300 CRE &#20013;&#20026; hh2 &#21516;&#27493;&#23458;&#25143;&#31471;&#21019;&#24314;&#19987;&#29992;&#29992;&#25143;&#36134;&#25143;&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#30340;&#39044;&#31639;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#30340;&#39044;&#31639;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</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 &#22914;&#20309;&#36830;&#25509;&#21040; Sage 300 CRE &#26381;&#21153;&#22120;&#65311;"><span class="mt-icon-article-none"></span>hh2 &#22914;&#20309;&#36830;&#25509;&#21040; Sage 300 CRE &#26381;&#21153;&#22120;&#65311;</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 &#21516;&#27493;&#23458;&#25143;&#31471;&#22914;&#20309;&#20256;&#36755;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>hh2 &#21516;&#27493;&#23458;&#25143;&#31471;&#22914;&#20309;&#20256;&#36755;&#25968;&#25454;&#65311;</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="&#22914;&#20309;&#28155;&#21152;&#26032;&#30340; Sage 300 CRE &#25104;&#26412;&#32534;&#21495;&#25110;&#25104;&#26412;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#28155;&#21152;&#26032;&#30340; Sage 300 CRE &#25104;&#26412;&#32534;&#21495;&#25110;&#25104;&#26412;&#31867;&#22411;&#65311;</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="&#22914;&#20309;&#23558;&#39033;&#30446;&#39044;&#31639;&#20174; Procore &#23548;&#20986;&#21040; Sage 300 CRE&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#39033;&#30446;&#39044;&#31639;&#20174; Procore &#23548;&#20986;&#21040; Sage 300 CRE&#65311;</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="&#22914;&#20309;&#23558;&#25104;&#26412;&#39044;&#27979;&#25968;&#25454;&#20174; Procore &#39044;&#31639;&#23548;&#20986;&#21040; ERP"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#25104;&#26412;&#39044;&#27979;&#25968;&#25454;&#20174; Procore &#39044;&#31639;&#23548;&#20986;&#21040; 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="&#25105;&#21487;&#22312; Sage 300 CRE &#21644; Procore &#20043;&#38388;&#20197;&#20309;&#31181;&#39057;&#29575;&#21516;&#27493;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#22312; Sage 300 CRE &#21644; Procore &#20043;&#38388;&#20197;&#20309;&#31181;&#39057;&#29575;&#21516;&#27493;&#25968;&#25454;&#65311;</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="&#23548;&#20986;&#21040; ERP &#26102;&#22914;&#20309;&#35299;&#20915;&ldquo;&#21512;&#32422;&#32534;&#21495;&#24050;&#23384;&#22312;&rdquo;&#38169;&#35823;"><span class="mt-icon-article-none"></span>&#23548;&#20986;&#21040; ERP &#26102;&#22914;&#20309;&#35299;&#20915;&ldquo;&#21512;&#32422;&#32534;&#21495;&#24050;&#23384;&#22312;&rdquo;&#38169;&#35823;</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="&#23548;&#20986;&#21040; ERP &#26102;&#22914;&#20309;&#35299;&#20915;&ldquo;&#23548;&#20837;&#25805;&#20316;&#33457;&#36153;&#30340;&#26102;&#38388;&#36229;&#36807;&#35774;&#32622;&#30340;&#36229;&#26102;&#26102;&#38388;&rdquo;&#38169;&#35823;&#65311;"><span class="mt-icon-article-none"></span>&#23548;&#20986;&#21040; ERP &#26102;&#22914;&#20309;&#35299;&#20915;&ldquo;&#23548;&#20837;&#25805;&#20316;&#33457;&#36153;&#30340;&#26102;&#38388;&#36229;&#36807;&#35774;&#32622;&#30340;&#36229;&#26102;&#26102;&#38388;&rdquo;&#38169;&#35823;&#65311;</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="&#26377;&#21738;&#20123;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#20197;&#21450;&#25105;&#20204;&#30340; ERP &#38598;&#25104;&#22914;&#20309;&#25903;&#25345;&#36825;&#20123;&#25104;&#26412;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#26377;&#21738;&#20123;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#20197;&#21450;&#25105;&#20204;&#30340; ERP &#38598;&#25104;&#22914;&#20309;&#25903;&#25345;&#36825;&#20123;&#25104;&#26412;&#31867;&#22411;&#65311;</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&reg; &#21644; Procore &#20043;&#38388;&#21516;&#27493;&#20102;&#21738;&#20123;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>Sage 300 CRE&reg; &#21644; Procore &#20043;&#38388;&#21516;&#27493;&#20102;&#21738;&#20123;&#25968;&#25454;&#65311;</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="&#24403;&#21512;&#32422;&#26410;&#33021;&#20174; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#23548;&#20986;&#26102;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#21512;&#32422;&#26410;&#33021;&#20174; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#23548;&#20986;&#26102;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-erp-icons-mean" title="ERP &#22270;&#26631;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>ERP &#22270;&#26631;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;</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="&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;</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="&#21512;&#32422;&ldquo;&#32534;&#21495; (#)&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&ldquo;&#32534;&#21495; (#)&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#21512;&#32422;&ldquo;&#26631;&#39064;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&ldquo;&#26631;&#39064;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#30446;&#24405;&#24037;&#20855;&#20013;&ldquo;&#20844;&#21496;&#21517;&#31216;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-none"></span>&#30446;&#24405;&#24037;&#20855;&#20013;&ldquo;&#20844;&#21496;&#21517;&#31216;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#20316;&#19994;&#12289;&#29238;&#20316;&#19994;&#21644;&#23376;&#20316;&#19994;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#20316;&#19994;&#12289;&#29238;&#20316;&#19994;&#21644;&#23376;&#20316;&#19994;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;</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="&#25105;&#24212;&#35813;&#23558;&#21738;&#20123;&#39044;&#31639;&#35270;&#22270;&#28155;&#21152;&#21040;&#25105;&#30340; Procore &#39033;&#30446;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#24212;&#35813;&#23558;&#21738;&#20123;&#39044;&#31639;&#35270;&#22270;&#28155;&#21152;&#21040;&#25105;&#30340; Procore &#39033;&#30446;&#20013;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-cost-code-formats-are-supported-by-erp" title="&#25105;&#30340; ERP &#38598;&#25104;&#25903;&#25345;&#21738;&#20123;&#25104;&#26412;&#32534;&#21495;&#26684;&#24335;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#30340; ERP &#38598;&#25104;&#25903;&#25345;&#21738;&#20123;&#25104;&#26412;&#32534;&#21495;&#26684;&#24335;&#65311;</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 &#20844;&#21496;&#30340;&#21738;&#20123;&#20445;&#38505;&#23383;&#27573;&#19982; Sage 300 CRE &#20379;&#24212;&#21830;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20844;&#21496;&#30340;&#21738;&#20123;&#20445;&#38505;&#23383;&#27573;&#19982; Sage 300 CRE &#20379;&#24212;&#21830;&#21516;&#27493;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-category-concept" title="&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#27010;&#24565;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#27010;&#24565;&#65311;</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="&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#23376;&#20316;&#19994;&rdquo;&#27010;&#24565;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#23376;&#20316;&#19994;&rdquo;&#27010;&#24565;&#65311;</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="&#24403;&#39033;&#34987; ERP &#25298;&#32477;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#39033;&#34987; ERP &#25298;&#32477;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#65311;</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="&#20026;&#20160;&#20040; Procore &#20013;&#32570;&#23569;&#23545; Sage &#25968;&#25454;&#24211;&#30340;&#26368;&#36817;&#26356;&#25913;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; Procore &#20013;&#32570;&#23569;&#23545; Sage &#25968;&#25454;&#24211;&#30340;&#26368;&#36817;&#26356;&#25913;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-or-activate-procore-projects" title="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#25110;&#28608;&#27963; Procore &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#25110;&#28608;&#27963; Procore &#39033;&#30446;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&ldquo;&#21516;&#27493;&rdquo;&#25110;&ldquo;&#21047;&#26032;&rdquo;&#25353;&#38062;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&ldquo;&#21516;&#27493;&rdquo;&#25110;&ldquo;&#21047;&#26032;&rdquo;&#25353;&#38062;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#23581;&#35797;&#23558;&#25968;&#25454;&#23548;&#20986;&#21040; Sage 300 CRE &#26102;&#30475;&#21040;&#38169;&#35823;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#23581;&#35797;&#23558;&#25968;&#25454;&#23548;&#20986;&#21040; Sage 300 CRE &#26102;&#30475;&#21040;&#38169;&#35823;&#65311;</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="&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-sage-data-not-syncing" title="&#20026;&#20160;&#20040;&#25105;&#30340; Sage 300 CRE &#25968;&#25454;&#19981;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340; Sage 300 CRE &#25968;&#25454;&#19981;&#21516;&#27493;&#65311;</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="&#20026;&#20160;&#20040;&ldquo;&#21457;&#36865;&#21040; ERP&rdquo;&#25353;&#38062;&#21464;&#26263;&#24182;&#19988;&#22312;&#39033;&#30446;&#21019;&#24314;&#21161;&#25163;&#20013;&#19981;&#21487;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&ldquo;&#21457;&#36865;&#21040; ERP&rdquo;&#25353;&#38062;&#21464;&#26263;&#24182;&#19988;&#22312;&#39033;&#30446;&#21019;&#24314;&#21161;&#25163;&#20013;&#19981;&#21487;&#29992;&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</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="&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-cost-code-formats-are-supported-by-erp" title="&#25105;&#30340; ERP &#38598;&#25104;&#25903;&#25345;&#21738;&#20123;&#25104;&#26412;&#32534;&#21495;&#26684;&#24335;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#30340; ERP &#38598;&#25104;&#25903;&#25345;&#21738;&#20123;&#25104;&#26412;&#32534;&#21495;&#26684;&#24335;&#65311;</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="&#24403;&#39033;&#34987; ERP &#25298;&#32477;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#39033;&#34987; ERP &#25298;&#32477;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;</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="&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;</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="&#21487;&#20197;&#23548;&#20986;&#23637;&#26395;&#36827;&#24230;&#35745;&#21010;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#23548;&#20986;&#23637;&#26395;&#36827;&#24230;&#35745;&#21010;&#21527;&#65311;</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="&#25105;&#33021;&#21542;&#26356;&#26032; Procore Web &#24212;&#29992;&#31243;&#24207;&#19978;&#30340;&ldquo;&#23436;&#25104;&#30334;&#20998;&#27604;&rdquo;&#23383;&#27573;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#26356;&#26032; Procore Web &#24212;&#29992;&#31243;&#24207;&#19978;&#30340;&ldquo;&#23436;&#25104;&#30334;&#20998;&#27604;&rdquo;&#23383;&#27573;&#65311;</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="&#23545;&#23637;&#26395;&#36827;&#24230;&#35745;&#21010;&#36827;&#34892;&#26356;&#25913;&#26102;&#65292;&#20027;&#36827;&#24230;&#35745;&#21010;&#26159;&#21542;&#20250;&#26356;&#26032;&#65311;"><span class="mt-icon-article-none"></span>&#23545;&#23637;&#26395;&#36827;&#24230;&#35745;&#21010;&#36827;&#34892;&#26356;&#25913;&#26102;&#65292;&#20027;&#36827;&#24230;&#35745;&#21010;&#26159;&#21542;&#20250;&#26356;&#26032;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#22914;&#20309;&#22312; Procore &#20013;&#32534;&#36753;&#39033;&#30446;&#36827;&#24230;&#35745;&#21010;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#20013;&#32534;&#36753;&#39033;&#30446;&#36827;&#24230;&#35745;&#21010;&#65311;</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="&#22914;&#20309;&#22312;&#26412;&#22320;&#36827;&#24230;&#35745;&#21010;&#25991;&#20214;&#20013;&#26356;&#26032;&#23436;&#25104;&#30334;&#20998;&#27604;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#26412;&#22320;&#36827;&#24230;&#35745;&#21010;&#25991;&#20214;&#20013;&#26356;&#26032;&#23436;&#25104;&#30334;&#20998;&#27604;&#65311;</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="&#26159;&#21542;&#24212;&#35813;&#23558; Microsoft Project &#36827;&#24230;&#35745;&#21010;&#38598;&#25104;&#21040; Procore Web &#24212;&#29992;&#31243;&#24207;&#25110; Procore Drive&#65311;"><span class="mt-icon-article-none"></span>&#26159;&#21542;&#24212;&#35813;&#23558; Microsoft Project &#36827;&#24230;&#35745;&#21010;&#38598;&#25104;&#21040; Procore Web &#24212;&#29992;&#31243;&#24207;&#25110; Procore Drive&#65311;</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="&#39033;&#30446;&#32423;&#21035;&#36827;&#24230;&#35745;&#21010;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#32423;&#21035;&#36827;&#24230;&#35745;&#21010;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-construction-projects-schedule" title="&#20160;&#20040;&#26159;&#24314;&#35774;&#24037;&#31243;&#39033;&#30446;&#30340;&#36827;&#24230;&#35745;&#21010;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#24314;&#35774;&#24037;&#31243;&#39033;&#30446;&#30340;&#36827;&#24230;&#35745;&#21010;&#65311;</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="&#39033;&#30446;&#32423;&#21035;&#36827;&#24230;&#35745;&#21010;&#24037;&#20855;&#20013;&#30340;&#29976;&#29305;&#22270;&#35270;&#22270;&#26377;&#21738;&#20123;&#21487;&#29992;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#32423;&#21035;&#36827;&#24230;&#35745;&#21010;&#24037;&#20855;&#20013;&#30340;&#29976;&#29305;&#22270;&#35270;&#22270;&#26377;&#21738;&#20123;&#21487;&#29992;&#36873;&#39033;&#65311;</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 &#20013;&#26356;&#26032;&#30340;&#20837;&#31449;&#30005;&#23376;&#37038;&#20214;&#36890;&#20449;&#35774;&#32622;&#20250;&#24433;&#21709;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#26356;&#26032;&#30340;&#20837;&#31449;&#30005;&#23376;&#37038;&#20214;&#36890;&#20449;&#35774;&#32622;&#20250;&#24433;&#21709;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;</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 &#25903;&#25345;&#21738;&#20123;&#29256;&#26412;&#30340; Microsoft Project&#65311;"><span class="mt-icon-article-none"></span>Procore &#25903;&#25345;&#21738;&#20123;&#29256;&#26412;&#30340; Microsoft Project&#65311;</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="&#20026;&#20160;&#20040;&#21024;&#38500;&#25353;&#38062;&#22312; Procore Drive &#30340;&#36827;&#24230;&#35745;&#21010;&#24037;&#20855;&#20013;&#21464;&#26263;&#19988;&#19981;&#21487;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#21024;&#38500;&#25353;&#38062;&#22312; Procore Drive &#30340;&#36827;&#24230;&#35745;&#21010;&#24037;&#20855;&#20013;&#21464;&#26263;&#19988;&#19981;&#21487;&#29992;&#65311;</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="&#22914;&#20309;&#22788;&#29702;&#31532;&#19977;&#26041;&#24212;&#29992;&#31243;&#24207;&#30340;&#23433;&#20840;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22788;&#29702;&#31532;&#19977;&#26041;&#24212;&#29992;&#31243;&#24207;&#30340;&#23433;&#20840;&#38382;&#39064;&#65311;</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 &#20351;&#29992;&#20160;&#20040;&#21152;&#23494;&#26631;&#20934;&#26469;&#20445;&#25252;&#29992;&#25143;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20351;&#29992;&#20160;&#20040;&#21152;&#23494;&#26631;&#20934;&#26469;&#20445;&#25252;&#29992;&#25143;&#25968;&#25454;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-data-backup-strategy" title="Procore &#30340;&#25968;&#25454;&#22791;&#20221;&#31574;&#30053;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#25968;&#25454;&#22791;&#20221;&#31574;&#30053;&#26159;&#20160;&#20040;&#65311;</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 &#22312;&#21738;&#37324;&#20197;&#21450;&#22914;&#20309;&#23384;&#20648;&#23458;&#25143;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>Procore &#22312;&#21738;&#37324;&#20197;&#21450;&#22914;&#20309;&#23384;&#20648;&#23458;&#25143;&#20449;&#24687;&#65311;</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="&#35841;&#21487;&#20197;&#26597;&#30475;&#39033;&#30446;&#30446;&#24405;&#20013;&#21015;&#20986;&#30340;&#29992;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#35841;&#21487;&#20197;&#26597;&#30475;&#39033;&#30446;&#30446;&#24405;&#20013;&#21015;&#20986;&#30340;&#29992;&#25143;&#65311;</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="&#25105;&#21487;&#20197;&#23558;&#25105;&#30340; LMS &#19982; Procore &#35748;&#35777;&#38598;&#25104;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#23558;&#25105;&#30340; LMS &#19982; Procore &#35748;&#35777;&#38598;&#25104;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#20174;&#25105;&#30340;&#31227;&#21160;&#35774;&#22791;&#35266;&#30475; Procore &#35748;&#35777;&#21644;&#25104;&#20154;&#25945;&#32946;&#35838;&#31243;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#20174;&#25105;&#30340;&#31227;&#21160;&#35774;&#22791;&#35266;&#30475; Procore &#35748;&#35777;&#21644;&#25104;&#20154;&#25945;&#32946;&#35838;&#31243;&#21527;&#65311;</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="&#22914;&#20309;&#26356;&#25913;&#25105;&#22312; Procore &#35748;&#35777;&#20013;&#30340;&#22995;&#21517;&#25110;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26356;&#25913;&#25105;&#22312; Procore &#35748;&#35777;&#20013;&#30340;&#22995;&#21517;&#25110;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&#65311;</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="&#22914;&#20309;&#26597;&#30475;&#25105;&#30340; Procore &#36134;&#25143;&#20013;&#21253;&#21547;&#21738;&#20123; Procore &#24037;&#20855;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26597;&#30475;&#25105;&#30340; Procore &#36134;&#25143;&#20013;&#21253;&#21547;&#21738;&#20123; Procore &#24037;&#20855;&#65311;</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="&#22914;&#26524;&#25105;&#27809;&#26377; Procore &#30331;&#24405;&#20973;&#35777;&#65292;&#35813;&#22914;&#20309;&#27880;&#20876; Procore &#35748;&#35777;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#25105;&#27809;&#26377; Procore &#30331;&#24405;&#20973;&#35777;&#65292;&#35813;&#22914;&#20309;&#27880;&#20876; Procore &#35748;&#35777;&#65311;</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="&#25105;&#22914;&#20309;&#26597;&#30475;&#26410;&#23436;&#25104;&#30340;&#35748;&#35777;&#25110;&#25104;&#20154;&#25945;&#32946;&#35838;&#31243;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#22914;&#20309;&#26597;&#30475;&#26410;&#23436;&#25104;&#30340;&#35748;&#35777;&#25110;&#25104;&#20154;&#25945;&#32946;&#35838;&#31243;&#65311;</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 &#35748;&#35777;&#27979;&#39564;&#26159;&#21542;&#26377;&#26368;&#20302;&#21450;&#26684;&#20998;&#25968;&#65311;"><span class="mt-icon-article-none"></span>Procore &#35748;&#35777;&#27979;&#39564;&#26159;&#21542;&#26377;&#26368;&#20302;&#21450;&#26684;&#20998;&#25968;&#65311;</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="&#27491;&#22312;&#23547;&#25214;&#30340; Procore &#35748;&#35777;&#35838;&#31243;&#22312;&#21738;&#37324;&#65311;"><span class="mt-icon-article-none"></span>&#27491;&#22312;&#23547;&#25214;&#30340; Procore &#35748;&#35777;&#35838;&#31243;&#22312;&#21738;&#37324;&#65311;</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="&#20026;&#20160;&#20040;&#22312;&#26597;&#30475;&#35748;&#35777;&#35838;&#31243;&#26102;&#20250;&#25910;&#21040;&ldquo;&#32570;&#23569;&#36523;&#20221;&#39564;&#35777; Cookie&rdquo;&#38169;&#35823;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#22312;&#26597;&#30475;&#35748;&#35777;&#35838;&#31243;&#26102;&#20250;&#25910;&#21040;&ldquo;&#32570;&#23569;&#36523;&#20221;&#39564;&#35777; Cookie&rdquo;&#38169;&#35823;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-having-problems-playing-training-videos" title="&#20026;&#20160;&#20040;&#25105;&#22312;&#25773;&#25918;&#22521;&#35757;&#35270;&#39057;&#26102;&#36935;&#21040;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#25773;&#25918;&#22521;&#35757;&#35270;&#39057;&#26102;&#36935;&#21040;&#38382;&#39064;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#30331;&#24405; Procore &#35748;&#35777;&#32593;&#31449;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#30331;&#24405; Procore &#35748;&#35777;&#32593;&#31449;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#35838;&#31243;&#26410;&#26174;&#31034;&#22312; Procore &#35748;&#35777;&#36164;&#26009;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#35838;&#31243;&#26410;&#26174;&#31034;&#22312; Procore &#35748;&#35777;&#36164;&#26009;&#20013;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-training-courses-missing" title="&#20026;&#20160;&#20040;&#25105;&#30340;&#22521;&#35757;&#35838;&#31243;&#19981;&#35265;&#20102;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#22521;&#35757;&#35838;&#31243;&#19981;&#35265;&#20102;&#65311;</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="&#20026;&#20160;&#20040;&#26080;&#27861;&#30331;&#24405;&#35748;&#35777;&#20998;&#26512;&#20202;&#34920;&#26495;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#26080;&#27861;&#30331;&#24405;&#35748;&#35777;&#20998;&#26512;&#20202;&#34920;&#26495;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-procore-certified-certificate-missing" title="&#20026;&#20160;&#20040;&#25105;&#30340; Procore &#35748;&#35777;&#35777;&#20070;&#32570;&#22833;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340; Procore &#35748;&#35777;&#35777;&#20070;&#32570;&#22833;&#65311;</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="&#20026;&#20160;&#20040; Procore &#35748;&#35777;&#35838;&#31243;&#30340;&#23436;&#25104;&#30334;&#20998;&#27604;&#20302;&#20110; 100%&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; Procore &#35748;&#35777;&#35838;&#31243;&#30340;&#23436;&#25104;&#30334;&#20998;&#27604;&#20302;&#20110; 100%&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-was-the-procore-fundamentals-training-course-deprecated" title="&#20026;&#20160;&#20040;&ldquo;Procore &#22522;&#30784;&#30693;&#35782;&rdquo;&#22521;&#35757;&#35838;&#31243;&#34987;&#24323;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&ldquo;Procore &#22522;&#30784;&#30693;&#35782;&rdquo;&#22521;&#35757;&#35838;&#31243;&#34987;&#24323;&#29992;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-were-the-deep-dive-training-courses-deprecated" title="&#20026;&#20160;&#20040;&ldquo;&#28145;&#20837;&#30740;&#31350;&#22521;&#35757;&rdquo;&#35838;&#31243;&#34987;&#24323;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&ldquo;&#28145;&#20837;&#30740;&#31350;&#22521;&#35757;&rdquo;&#35838;&#31243;&#34987;&#24323;&#29992;&#65311;</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="&#22914;&#20309;&#25552;&#39640;&#35268;&#33539;&#20998;&#39033;&#35782;&#21035;&#30340;&#20934;&#30830;&#24615;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#25552;&#39640;&#35268;&#33539;&#20998;&#39033;&#35782;&#21035;&#30340;&#20934;&#30830;&#24615;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-keep-track-of-emailed-specifications" title="&#22914;&#20309;&#36319;&#36394;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#21457;&#36865;&#30340;&#35268;&#33539;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#36319;&#36394;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#21457;&#36865;&#30340;&#35268;&#33539;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#25105;&#24212;&#35813;&#22312;&#39033;&#30446;&#20013;&#21551;&#29992;&#35268;&#33539;&#24037;&#20855;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#24212;&#35813;&#22312;&#39033;&#30446;&#20013;&#21551;&#29992;&#35268;&#33539;&#24037;&#20855;&#21527;&#65311;</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="&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</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="&#22914;&#26524;&#35268;&#33539;&#20998;&#39033;&#25110;&#20998;&#37096;&#20174;&#39029;&#38754;&#20013;&#38388;&#24320;&#22987;&#24590;&#20040;&#21150;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#35268;&#33539;&#20998;&#39033;&#25110;&#20998;&#37096;&#20174;&#39029;&#38754;&#20013;&#38388;&#24320;&#22987;&#24590;&#20040;&#21150;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-specification-set" title="&#20160;&#20040;&#26159;&#35268;&#33539;&#38598;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#35268;&#33539;&#38598;&#65311;</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 &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&quot;&#35268;&#33539;&#20998;&#39033;&quot;&#19979;&#25289;&#21015;&#34920;&#20013;&#30340;&#36873;&#39033;&#20174;&#20309;&#32780;&#26469;&#65311;"><span class="mt-icon-article-none"></span>&quot;&#35268;&#33539;&#20998;&#39033;&quot;&#19979;&#25289;&#21015;&#34920;&#20013;&#30340;&#36873;&#39033;&#20174;&#20309;&#32780;&#26469;&#65311;</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="&#19978;&#20256;&#35268;&#33539;&#26102;&#65292;Procore &#21487;&#20197;&#33258;&#21160;&#22635;&#20805;&#21738;&#20123;&#23383;&#27573;&#65311;"><span class="mt-icon-article-none"></span>&#19978;&#20256;&#35268;&#33539;&#26102;&#65292;Procore &#21487;&#20197;&#33258;&#21160;&#22635;&#20805;&#21738;&#20123;&#23383;&#27573;&#65311;</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="&#35268;&#33539;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#35268;&#33539;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-specification-uploads-failing" title="&#20026;&#20160;&#20040;&#25105;&#30340;&#35268;&#33539;&#19978;&#20256;&#22833;&#36133;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#35268;&#33539;&#19978;&#20256;&#22833;&#36133;&#65311;</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="&#24403;&#25968;&#25454;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#31561;&#24453;&#39564;&#25910;&#26102;&#65292;&#26159;&#21542;&#20250;&#36890;&#30693;&#20250;&#35745;&#23457;&#25209;&#32773;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#25968;&#25454;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#31561;&#24453;&#39564;&#25910;&#26102;&#65292;&#26159;&#21542;&#20250;&#36890;&#30693;&#20250;&#35745;&#23457;&#25209;&#32773;&#65311;</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="&#24453;&#22788;&#29702;&#21512;&#32422;&#26159;&#21542;&#20250;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#33258;&#21160;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#24453;&#22788;&#29702;&#21512;&#32422;&#26159;&#21542;&#20250;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#33258;&#21160;&#21516;&#27493;&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#20844;&#21496;&#21516;&#27493;&#21518;&#26356;&#25913;&#36873;&#23450;&#30340;&#20379;&#24212;&#21830;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312;&#20844;&#21496;&#21516;&#27493;&#21518;&#26356;&#25913;&#36873;&#23450;&#30340;&#20379;&#24212;&#21830;&#31867;&#22411;&#65311;</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="&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;</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="&#21512;&#32422;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#21518;&#65292;&#25105;&#33021;&#21542;&#32534;&#36753;&#25110;&#21024;&#38500;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#21518;&#65292;&#25105;&#33021;&#21542;&#32534;&#36753;&#25110;&#21024;&#38500;&#65311;</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="&#25105;&#21487;&#20197;&#23558; Procore &#39044;&#31639;&#20462;&#25913;&#23548;&#20986;&#21040;&#38598;&#25104; ERP &#31995;&#32479;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#23558; Procore &#39044;&#31639;&#20462;&#25913;&#23548;&#20986;&#21040;&#38598;&#25104; ERP &#31995;&#32479;&#21527;&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#30340;&#39044;&#31639;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#30340;&#39044;&#31639;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</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="&#25105;&#22810;&#20037;&#21487;&#20197;&#22312; Procore &#21644; Viewpoint&reg; Spectrum&reg; &#20043;&#38388;&#21516;&#27493;&#25968;&#25454;&#19968;&#27425;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#22810;&#20037;&#21487;&#20197;&#22312; Procore &#21644; Viewpoint&reg; Spectrum&reg; &#20043;&#38388;&#21516;&#27493;&#25968;&#25454;&#19968;&#27425;&#65311;</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="&#25105;&#35813;&#36873;&#25321;&#21738;&#20123; Viewpoint&reg; Spectrum&reg; &#20316;&#19994;&#20986;&#29616;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#30340;&ldquo;&#36873;&#25321;&#20316;&#19994;&#27169;&#26495;&rdquo;&#21015;&#34920;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#35813;&#36873;&#25321;&#21738;&#20123; Viewpoint&reg; Spectrum&reg; &#20316;&#19994;&#20986;&#29616;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#30340;&ldquo;&#36873;&#25321;&#20316;&#19994;&#27169;&#26495;&rdquo;&#21015;&#34920;&#20013;&#65311;</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="&#26377;&#21738;&#20123;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#20197;&#21450;&#25105;&#20204;&#30340; ERP &#38598;&#25104;&#22914;&#20309;&#25903;&#25345;&#36825;&#20123;&#25104;&#26412;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#26377;&#21738;&#20123;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#20197;&#21450;&#25105;&#20204;&#30340; ERP &#38598;&#25104;&#22914;&#20309;&#25903;&#25345;&#36825;&#20123;&#25104;&#26412;&#31867;&#22411;&#65311;</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="&#24403;&#21512;&#32422;&#26410;&#33021;&#20174; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#23548;&#20986;&#26102;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#21512;&#32422;&#26410;&#33021;&#20174; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#23548;&#20986;&#26102;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-erp-icons-mean" title="ERP &#22270;&#26631;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>ERP &#22270;&#26631;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;</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="&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;</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="&#21512;&#32422;&ldquo;&#32534;&#21495; (#)&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&ldquo;&#32534;&#21495; (#)&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#21512;&#32422;&ldquo;&#26631;&#39064;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&ldquo;&#26631;&#39064;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#30446;&#24405;&#24037;&#20855;&#20013;&ldquo;&#20844;&#21496;&#21517;&#31216;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-none"></span>&#30446;&#24405;&#24037;&#20855;&#20013;&ldquo;&#20844;&#21496;&#21517;&#31216;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#25105;&#24212;&#35813;&#23558;&#21738;&#20123;&#39044;&#31639;&#35270;&#22270;&#28155;&#21152;&#21040;&#25105;&#30340; Procore &#39033;&#30446;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#24212;&#35813;&#23558;&#21738;&#20123;&#39044;&#31639;&#35270;&#22270;&#28155;&#21152;&#21040;&#25105;&#30340; Procore &#39033;&#30446;&#20013;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-category-concept" title="&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#27010;&#24565;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#27010;&#24565;&#65311;</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="&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#23376;&#20316;&#19994;&rdquo;&#27010;&#24565;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#23376;&#20316;&#19994;&rdquo;&#27010;&#24565;&#65311;</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="&#21738;&#20123;&#20027;&#21512;&#21516;&#21644;&#20027;&#21512;&#21516;&#21464;&#26356;&#36890;&#30693;&#21333;&#23383;&#27573;&#19982; Procore &#21644; Viewpoint Spectrum &#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#20027;&#21512;&#21516;&#21644;&#20027;&#21512;&#21516;&#21464;&#26356;&#36890;&#30693;&#21333;&#23383;&#27573;&#19982; Procore &#21644; Viewpoint Spectrum &#21516;&#27493;&#65311;</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="&#24403;&#39033;&#34987; ERP &#25298;&#32477;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#39033;&#34987; ERP &#25298;&#32477;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-or-activate-procore-projects" title="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#25110;&#28608;&#27963; Procore &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#25110;&#28608;&#27963; Procore &#39033;&#30446;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&ldquo;&#21516;&#27493;&rdquo;&#25110;&ldquo;&#21047;&#26032;&rdquo;&#25353;&#38062;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&ldquo;&#21516;&#27493;&rdquo;&#25110;&ldquo;&#21047;&#26032;&rdquo;&#25353;&#38062;&#65311;</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="&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;</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="&#20026;&#20160;&#20040;&ldquo;&#21457;&#36865;&#21040; ERP&rdquo;&#25353;&#38062;&#21464;&#26263;&#24182;&#19988;&#22312;&#39033;&#30446;&#21019;&#24314;&#21161;&#25163;&#20013;&#19981;&#21487;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&ldquo;&#21457;&#36865;&#21040; ERP&rdquo;&#25353;&#38062;&#21464;&#26263;&#24182;&#19988;&#22312;&#39033;&#30446;&#21019;&#24314;&#21161;&#25163;&#20013;&#19981;&#21487;&#29992;&#65311;</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="&#22914;&#26524;&#25105;&#30340;&#20844;&#21496;&#24050;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#21487;&#20197;&#30452;&#25509;&#30331;&#24405; Procore Web &#24212;&#29992;&#31243;&#24207;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#25105;&#30340;&#20844;&#21496;&#24050;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#21487;&#20197;&#30452;&#25509;&#30331;&#24405; Procore Web &#24212;&#29992;&#31243;&#24207;&#21527;&#65311;</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="&#22914;&#26524;&#25105;&#20204;&#20844;&#21496;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#26159;&#21542;&#38656;&#35201;&#21019;&#24314; Procore &#29992;&#25143;&#36134;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524;&#25105;&#20204;&#20844;&#21496;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#26159;&#21542;&#38656;&#35201;&#21019;&#24314; Procore &#29992;&#25143;&#36134;&#25143;&#65311;</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 &#30340;&#21333;&#28857;&#30331;&#24405;&#38598;&#25104;&#25903;&#25345;&#21333;&#20010;&#22495;&#36824;&#26159;&#22810;&#20010;&#22495;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#21333;&#28857;&#30331;&#24405;&#38598;&#25104;&#25903;&#25345;&#21333;&#20010;&#22495;&#36824;&#26159;&#22810;&#20010;&#22495;&#65311;</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="&#22312;&#25105;&#30340; Procore &#20844;&#21496;&#36134;&#25143;&#20013;&#23454;&#26045; SSO &#20043;&#21069;&#65292;&#22914;&#20309;&#22312;&#27801;&#31665;&#29615;&#22659;&#20013;&#37197;&#32622; SSO &#20197;&#36827;&#34892;&#27979;&#35797;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#25105;&#30340; Procore &#20844;&#21496;&#36134;&#25143;&#20013;&#23454;&#26045; SSO &#20043;&#21069;&#65292;&#22914;&#20309;&#22312;&#27801;&#31665;&#29615;&#22659;&#20013;&#37197;&#32622; SSO &#20197;&#36827;&#34892;&#27979;&#35797;&#65311;</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="&#22914;&#20309;&#20351;&#29992;Microsoft Azure AD &#65288;Entra ID&#65289;&#21333;&#28857;&#30331;&#24405;&#26469;&#30331;&#24405; Procore&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20351;&#29992;Microsoft Azure AD &#65288;Entra ID&#65289;&#21333;&#28857;&#30331;&#24405;&#26469;&#30331;&#24405; Procore&#65311;</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="&#22914;&#20309;&#20026; Procore &#37197;&#32622; Okta &#21333;&#28857;&#30331;&#24405; (SAML 2.0)&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026; Procore &#37197;&#32622; Okta &#21333;&#28857;&#30331;&#24405; (SAML 2.0)&#65311;</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="&#22914;&#20309;&#20351;&#29992; Procore &#35774;&#32622;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20351;&#29992; Procore &#35774;&#32622;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;</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="&#22914;&#20309;&#22312;&#20844;&#21496;&#30340; Procore &#21333;&#28857;&#30331;&#24405;&#37197;&#32622;&#35774;&#32622;&#20013;&#26356;&#26032;&#21363;&#23558;&#21040;&#26399;&#30340; x509 &#35777;&#20070;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#20844;&#21496;&#30340; Procore &#21333;&#28857;&#30331;&#24405;&#37197;&#32622;&#35774;&#32622;&#20013;&#26356;&#26032;&#21363;&#23558;&#21040;&#26399;&#30340; x509 &#35777;&#20070;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-single-sign-on-sso" title="&#20160;&#20040;&#26159;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;</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 &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#21644; IdP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>SP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#21644; IdP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-platforms-support-azure-ad-sso" title="&#21738;&#20123; Procore &#24179;&#21488;&#25903;&#25345;Azure AD &#65288;Entra ID&#65289;&#21333;&#28857;&#30331;&#24405;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24179;&#21488;&#25903;&#25345;Azure AD &#65288;Entra ID&#65289;&#21333;&#28857;&#30331;&#24405;&#65311;</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 &#25903;&#25345;&#21738;&#20123;&#21333;&#28857;&#30331;&#24405;&#36523;&#20221;&#25552;&#20379;&#21830;&#65311;"><span class="mt-icon-article-none"></span>Procore &#25903;&#25345;&#21738;&#20123;&#21333;&#28857;&#30331;&#24405;&#36523;&#20221;&#25552;&#20379;&#21830;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#20351;&#29992; SSO &#30331;&#24405;&#26102;&#25910;&#21040;&ldquo;&#26410;&#21457;&#29616;&#26377;&#29992;&#25143;&#20351;&#29992;&#32473;&#23450;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&rdquo;&#38169;&#35823;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#20351;&#29992; SSO &#30331;&#24405;&#26102;&#25910;&#21040;&ldquo;&#26410;&#21457;&#29616;&#26377;&#29992;&#25143;&#20351;&#29992;&#32473;&#23450;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&rdquo;&#38169;&#35823;&#65311;</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="&#22810;&#20010;&#29992;&#25143;&#26159;&#21542;&#21487;&#20197;&#22312;&#20272;&#31639;&#24037;&#20855;&#20013;&#21516;&#26102;&#36827;&#34892;&#20272;&#31639;&#21644;&#25187;&#20943;&#65311;"><span class="mt-icon-article-none"></span>&#22810;&#20010;&#29992;&#25143;&#26159;&#21542;&#21487;&#20197;&#22312;&#20272;&#31639;&#24037;&#20855;&#20013;&#21516;&#26102;&#36827;&#34892;&#20272;&#31639;&#21644;&#25187;&#20943;&#65311;</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="&#25104;&#26412;&#30446;&#24405;&#39033;&#31867;&#22411;&#19982; Procore &#20013;&#30340;&#25104;&#26412;&#31867;&#22411;&#26377;&#20309;&#20851;&#31995;&#65311;"><span class="mt-icon-article-none"></span>&#25104;&#26412;&#30446;&#24405;&#39033;&#31867;&#22411;&#19982; Procore &#20013;&#30340;&#25104;&#26412;&#31867;&#22411;&#26377;&#20309;&#20851;&#31995;&#65311;</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="&#22914;&#20309;&#22312; Procore &#20013;&#23436;&#25104;&#20197;&#21069;&#22312;&#29420;&#31435; Procore Estimating &#24212;&#29992;&#31243;&#24207;&#20013;&#23436;&#25104;&#30340;&#20219;&#21153;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312; Procore &#20013;&#23436;&#25104;&#20197;&#21069;&#22312;&#29420;&#31435; Procore Estimating &#24212;&#29992;&#31243;&#24207;&#20013;&#23436;&#25104;&#30340;&#20219;&#21153;&#65311;</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 &#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&ldquo;&#29992;&#25143;&#35282;&#33394;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>Procore Estimating &#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&ldquo;&#29992;&#25143;&#35282;&#33394;&rdquo;&#65311;</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="&#29992;&#20110;&#20272;&#31639;&#30340;&#25104;&#26412;&#30446;&#24405;&#20013;&#30340;&#30446;&#24405;&#12289;&#31867;&#21035;&#21644;&#39033;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#29992;&#20110;&#20272;&#31639;&#30340;&#25104;&#26412;&#30446;&#24405;&#20013;&#30340;&#30446;&#24405;&#12289;&#31867;&#21035;&#21644;&#39033;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#40664;&#35748;&#24773;&#20917;&#19979;&#21512;&#32422;&#26159;&#31169;&#23494;&#30340;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#40664;&#35748;&#24773;&#20917;&#19979;&#21512;&#32422;&#26159;&#31169;&#23494;&#30340;&#21527;&#65311;</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="&#33021;&#21542;&#20174;&#25237;&#26631;&#20013;&#31227;&#38500;&#26126;&#32454;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#33021;&#21542;&#20174;&#25237;&#26631;&#20013;&#31227;&#38500;&#26126;&#32454;&#39033;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-submittal" title="&#20160;&#20040;&#26159;&#36865;&#23457;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#36865;&#23457;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-submittal-package" title="&#20160;&#20040;&#26159;&#36865;&#23457;&#27719;&#24635;&#21253;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#36865;&#23457;&#27719;&#24635;&#21253;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-construction-bidding-process" title="&#20160;&#20040;&#26159;&#24314;&#35774;&#24037;&#31243;&#25237;&#26631;&#27969;&#31243;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#24314;&#35774;&#24037;&#31243;&#25237;&#26631;&#27969;&#31243;&#65311;</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="&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;</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="&#19978;&#20256;&#21040;&#36865;&#23457;&#24037;&#20855;&#30340; PDF &#22914;&#20309;&#21463;&#25991;&#20214;&#38480;&#21046;&#24433;&#21709;&#65311;"><span class="mt-icon-article-none"></span>&#19978;&#20256;&#21040;&#36865;&#23457;&#24037;&#20855;&#30340; PDF &#22914;&#20309;&#21463;&#25991;&#20214;&#38480;&#21046;&#24433;&#21709;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-submittals-numbered-in-procore" title="Procore &#20013;&#30340;&#36865;&#23457;&#22914;&#20309;&#32534;&#21495;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#36865;&#23457;&#22914;&#20309;&#32534;&#21495;&#65311;</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="&#36865;&#23457;&#33258;&#23450;&#20041;&#25253;&#21578;&#20013;&#30340;&#26085;&#26399;&#21015;&#26159;&#22914;&#20309;&#35745;&#31639;&#30340;&#65311;"><span class="mt-icon-article-none"></span>&#36865;&#23457;&#33258;&#23450;&#20041;&#25253;&#21578;&#20013;&#30340;&#26085;&#26399;&#21015;&#26159;&#22914;&#20309;&#35745;&#31639;&#30340;&#65311;</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="&#25105;&#22914;&#20309;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#21457;&#36865;&#36865;&#23457;&#65292;&#20197;&#20415;&#20154;&#20204;&#21487;&#20197;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#22238;&#22797;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#22914;&#20309;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#21457;&#36865;&#36865;&#23457;&#65292;&#20197;&#20415;&#20154;&#20204;&#21487;&#20197;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#22238;&#22797;&#65311;</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="&#22914;&#20309;&#22312;&#36865;&#23457;&#24037;&#20855;&#20013;&#20462;&#22797; PDF &#25991;&#20214;&#38169;&#35823;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#36865;&#23457;&#24037;&#20855;&#20013;&#20462;&#22797; PDF &#25991;&#20214;&#38169;&#35823;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#22914;&#20309;&#23558;&#20154;&#21592;&#28155;&#21152;&#21040;&#36865;&#23457;&#24037;&#20316;&#27969;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#20154;&#21592;&#28155;&#21152;&#21040;&#36865;&#23457;&#24037;&#20316;&#27969;&#65311;</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="&#22914;&#20309;&#20026; mailto &#38142;&#25509;&#26356;&#25913;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#30340;&#40664;&#35748;&#30005;&#23376;&#37038;&#20214;&#23458;&#25143;&#31471;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026; mailto &#38142;&#25509;&#26356;&#25913;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#30340;&#40664;&#35748;&#30005;&#23376;&#37038;&#20214;&#23458;&#25143;&#31471;&#65311;</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="&#22914;&#20309;&#26356;&#25913;&#36865;&#23457;&#30340;&ldquo;&#36131;&#20219;&#25215;&#21253;&#21830;&rdquo;&#23383;&#27573;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26356;&#25913;&#36865;&#23457;&#30340;&ldquo;&#36131;&#20219;&#25215;&#21253;&#21830;&rdquo;&#23383;&#27573;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-customize-submittal-responses" title="&#22914;&#20309;&#33258;&#23450;&#20041;&#36865;&#23457;&#31572;&#22797;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#33258;&#23450;&#20041;&#36865;&#23457;&#31572;&#22797;&#65311;</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="&#22914;&#20309;&#25353;&#22810;&#23618;&#22320;&#28857;&#31579;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#25353;&#22810;&#23618;&#22320;&#28857;&#31579;&#36873;&#39033;&#65311;</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="&#22312;&#23457;&#25209;&#27969;&#31243;&#20013;&#65292;&#22914;&#20309;&#20174;&#36865;&#23457;&#24037;&#20316;&#27969;&#20013;&#31227;&#38500;&#36865;&#23457;&#32773;&#25110;&#23457;&#25209;&#32773;&#65311;"><span class="mt-icon-article-none"></span>&#22312;&#23457;&#25209;&#27969;&#31243;&#20013;&#65292;&#22914;&#20309;&#20174;&#36865;&#23457;&#24037;&#20316;&#27969;&#20013;&#31227;&#38500;&#36865;&#23457;&#32773;&#25110;&#23457;&#25209;&#32773;&#65311;</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="&#26159;&#21542;&#21487;&#20197;&#25209;&#37327;&#26367;&#25442;&#39033;&#30446;&#36865;&#23457;&#20013;&#30340;&#23457;&#25209;&#32773;&#12289;&#36865;&#23457;&#32773;&#25110;&#23457;&#26680;&#20154;&#65311;"><span class="mt-icon-article-none"></span>&#26159;&#21542;&#21487;&#20197;&#25209;&#37327;&#26367;&#25442;&#39033;&#30446;&#36865;&#23457;&#20013;&#30340;&#23457;&#25209;&#32773;&#12289;&#36865;&#23457;&#32773;&#25110;&#23457;&#26680;&#20154;&#65311;</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="&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</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="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</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="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#37096;&#20998;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#37096;&#20998;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-dynamic-approver-due-dates" title="&#20160;&#20040;&#26159;&#21160;&#24577;&#35745;&#31639;&#23457;&#25209;&#32773;&#25130;&#27490;&#26085;&#26399;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21160;&#24577;&#35745;&#31639;&#23457;&#25209;&#32773;&#25130;&#27490;&#26085;&#26399;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-multi-tiered-locations" title="&#20160;&#20040;&#26159;&#22810;&#23618;&#22320;&#28857;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#22810;&#23618;&#22320;&#28857;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-specifications" title="&#20160;&#20040;&#26159;&#35268;&#33539;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#35268;&#33539;&#65311;</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 &#20013;&#30340;&#40664;&#35748;&#36865;&#23457;&#31572;&#22797;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#40664;&#35748;&#36865;&#23457;&#31572;&#22797;&#26377;&#21738;&#20123;&#65311;</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 &#20013;&#30340;&#40664;&#35748;&#36865;&#23457;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#40664;&#35748;&#36865;&#23457;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;</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="&#36865;&#23457;&#24037;&#20855;&#20013;&#30340;&#29992;&#25143;&#35282;&#33394;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#36865;&#23457;&#24037;&#20855;&#20013;&#30340;&#29992;&#25143;&#35282;&#33394;&#26159;&#20160;&#20040;&#65311;</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="&ldquo;&#36865;&#23457;&#26085;&#24535;&rdquo;&#20013;&#30340;&#27599;&#19968;&#21015;&#20195;&#34920;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&ldquo;&#36865;&#23457;&#26085;&#24535;&rdquo;&#20013;&#30340;&#27599;&#19968;&#21015;&#20195;&#34920;&#20160;&#20040;&#65311;</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="&#32479;&#19968;&#38468;&#20214;&#26597;&#30475;&#22120;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#31867;&#22411;&#21644;&#26684;&#24335;&#65311;"><span class="mt-icon-article-none"></span>&#32479;&#19968;&#38468;&#20214;&#26597;&#30475;&#22120;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#31867;&#22411;&#21644;&#26684;&#24335;&#65311;</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="&#39033;&#30446;&#30340;&#36865;&#23457;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#36865;&#23457;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#21551;&#29992;&ldquo;&#21160;&#24577;&#35745;&#31639;&#23457;&#25209;&#32773;&#25130;&#27490;&#26085;&#26399;&rdquo;&#21518;&#65292;&#29616;&#26377;&#36865;&#23457;&#26377;&#20160;&#20040;&#21464;&#21270;&#65311;"><span class="mt-icon-article-none"></span>&#21551;&#29992;&ldquo;&#21160;&#24577;&#35745;&#31639;&#23457;&#25209;&#32773;&#25130;&#27490;&#26085;&#26399;&rdquo;&#21518;&#65292;&#29616;&#26377;&#36865;&#23457;&#26377;&#20160;&#20040;&#21464;&#21270;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-draft-submittal" title="&#20160;&#20040;&#26159;&#36865;&#23457;&ldquo;&#33609;&#31295;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#36865;&#23457;&ldquo;&#33609;&#31295;&rdquo;&#65311;</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 &#20013;&#39640;&#32423;&#25628;&#32034;&#31526;&#21495;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#39640;&#32423;&#25628;&#32034;&#31526;&#21495;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-submittal" title="&#20160;&#20040;&#26159;&#36865;&#23457;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#36865;&#23457;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-submittal-package" title="&#20160;&#20040;&#26159;&#36865;&#23457;&#27719;&#24635;&#21253;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#36865;&#23457;&#27719;&#24635;&#21253;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-submittal-revision" title="&#20160;&#20040;&#26159;&#36865;&#23457;&#20462;&#35746;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#36865;&#23457;&#20462;&#35746;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-bluebeam-studio" title="&#20160;&#20040;&#26159; Bluebeam Studio&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Bluebeam Studio&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;</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 &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#36865;&#23457;&#20013;&#30340;&#36865;&#23457;&#32773;&#21644;&#23457;&#25209;&#32773;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#36865;&#23457;&#20013;&#30340;&#36865;&#23457;&#32773;&#21644;&#23457;&#25209;&#32773;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-submittal-manager-role" title="&#20160;&#20040;&#26159;&ldquo;&#36865;&#23457;&#32463;&#29702;&rdquo;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&ldquo;&#36865;&#23457;&#32463;&#29702;&rdquo;&#35282;&#33394;&#65311;</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="&#20316;&#19994;&#12289;&#29238;&#20316;&#19994;&#21644;&#23376;&#20316;&#19994;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#20316;&#19994;&#12289;&#29238;&#20316;&#19994;&#21644;&#23376;&#20316;&#19994;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;</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="&#36865;&#23457;&#24037;&#20316;&#27969;&#20013;&#30340;&#20381;&#24207;&#23457;&#25209;&#21644;&#24179;&#34892;&#23457;&#25209;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#36865;&#23457;&#24037;&#20316;&#27969;&#20013;&#30340;&#20381;&#24207;&#23457;&#25209;&#21644;&#24179;&#34892;&#23457;&#25209;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#36865;&#23457;&#38468;&#20214;&#20309;&#26102;&#22312;&ldquo;&#36865;&#23457;&#24037;&#20316;&#27969;&rdquo;&#34920;&#20013;&#26631;&#35760;&#20026;&ldquo;&#24403;&#21069;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#36865;&#23457;&#38468;&#20214;&#20309;&#26102;&#22312;&ldquo;&#36865;&#23457;&#24037;&#20316;&#27969;&rdquo;&#34920;&#20013;&#26631;&#35760;&#20026;&ldquo;&#24403;&#21069;&rdquo;&#65311;</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="&quot;&#35268;&#33539;&#20998;&#39033;&quot;&#19979;&#25289;&#21015;&#34920;&#20013;&#30340;&#36873;&#39033;&#20174;&#20309;&#32780;&#26469;&#65311;"><span class="mt-icon-article-none"></span>&quot;&#35268;&#33539;&#20998;&#39033;&quot;&#19979;&#25289;&#21015;&#34920;&#20013;&#30340;&#36873;&#39033;&#20174;&#20309;&#32780;&#26469;&#65311;</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="&#21487;&#20197;&#23558;&#21738;&#20123;&#25968;&#25454;&#21015;&#28155;&#21152;&#21040;&#33258;&#23450;&#20041;&#36865;&#23457;&#25253;&#21578;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#23558;&#21738;&#20123;&#25968;&#25454;&#21015;&#28155;&#21152;&#21040;&#33258;&#23450;&#20041;&#36865;&#23457;&#25253;&#21578;&#20013;&#65311;</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="&#36865;&#23457;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#36865;&#23457;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#23548;&#20986;&#39033;&#30446;&#30340;&#36865;&#23457;&#26448;&#26009;&#26102;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#26684;&#24335;&#65311;"><span class="mt-icon-article-none"></span>&#23548;&#20986;&#39033;&#30446;&#30340;&#36865;&#23457;&#26448;&#26009;&#26102;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#26684;&#24335;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</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="&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#21019;&#24314;&#25110;&#26356;&#26032;&#36865;&#23457;&#26102;&#35841;&#20250;&#25910;&#21040;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#21019;&#24314;&#25110;&#26356;&#26032;&#36865;&#23457;&#26102;&#35841;&#20250;&#25910;&#21040;&#30005;&#23376;&#37038;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-delete-items-in-procore" title="&#20026;&#20160;&#20040;&#19981;&#33021;&#22312; Procore &#20013;&#21024;&#38500;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#19981;&#33021;&#22312; Procore &#20013;&#21024;&#38500;&#39033;&#65311;</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="&#20026;&#20160;&#20040;&#26080;&#27861;&#20851;&#38381;&#20174;&#36865;&#23457;&#24037;&#20855;&#21457;&#36865;&#30340;&ldquo;&#24453;&#21150;&#20107;&#39033;&rdquo;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#26080;&#27861;&#20851;&#38381;&#20174;&#36865;&#23457;&#24037;&#20855;&#21457;&#36865;&#30340;&ldquo;&#24453;&#21150;&#20107;&#39033;&rdquo;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#27809;&#26377;&#25910;&#21040;&#36865;&#23457;&#30340;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#27809;&#26377;&#25910;&#21040;&#36865;&#23457;&#30340;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;</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="&#25105;&#33021;&#21542;&#36890;&#36807;&#31227;&#21160;&#35774;&#22791;&#23558;&#29031;&#29255;&#28155;&#21152;&#21040;&#23614;&#39033;&#28165;&#21333;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#36890;&#36807;&#31227;&#21160;&#35774;&#22791;&#23558;&#29031;&#29255;&#28155;&#21152;&#21040;&#23614;&#39033;&#28165;&#21333;&#39033;&#30446;&#65311;</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="&#25105;&#21487;&#20197;&#36890;&#36807;&#30005;&#35805;&#25110;&#30005;&#23376;&#37038;&#20214;&#25509;&#25910;&#22825;&#27668;&#23548;&#33268;&#30340;&#24310;&#35823;&#35686;&#25253;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#36890;&#36807;&#30005;&#35805;&#25110;&#30005;&#23376;&#37038;&#20214;&#25509;&#25910;&#22825;&#27668;&#23548;&#33268;&#30340;&#24310;&#35823;&#35686;&#25253;&#21527;&#65311;</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="&#22914;&#20309;&#26597;&#30475;&#21333;&#20010;&#26085;&#24535;&#25110;&#26085;&#24535;&#20013;&#26576;&#20154;&#30340;&#25253;&#21578;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26597;&#30475;&#21333;&#20010;&#26085;&#24535;&#25110;&#26085;&#24535;&#20013;&#26576;&#20154;&#30340;&#25253;&#21578;&#65311;</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="&#22914;&#20309;&#26597;&#30475;&#22810;&#22825;&#30340;&#24037;&#20316;&#26085;&#24535;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26597;&#30475;&#22810;&#22825;&#30340;&#24037;&#20316;&#26085;&#24535;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-daily-log" title="&#20160;&#20040;&#26159;&#24037;&#20316;&#26085;&#24535;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#24037;&#20316;&#26085;&#24535;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#24037;&#20316;&#26085;&#24535;&#22825;&#27668;&#26085;&#24535;&#20013;&#19981;&#26174;&#31034;&#22825;&#27668;&#26465;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#24037;&#20316;&#26085;&#24535;&#22825;&#27668;&#26085;&#24535;&#20013;&#19981;&#26174;&#31034;&#22825;&#27668;&#26465;&#20214;&#65311;</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="&#20026;&#20160;&#20040;&#19981;&#33021;&#26356;&#25913;&#22825;&#27668;&#23548;&#33268;&#30340;&#24310;&#35823;&#25110;&#35813;&#34892;&#19978;&#30340;&#20219;&#20309;&#26694;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#19981;&#33021;&#26356;&#25913;&#22825;&#27668;&#23548;&#33268;&#30340;&#24310;&#35823;&#25110;&#35813;&#34892;&#19978;&#30340;&#20219;&#20309;&#26694;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-does-the-tasks-tool-send-email-notifications" title="&#20219;&#21153;&#24037;&#20855;&#20309;&#26102;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#20219;&#21153;&#24037;&#20855;&#20309;&#26102;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</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="&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-can-i-assign-a-task-to" title="&#25105;&#21487;&#20197;&#23558;&#20219;&#21153;&#20998;&#37197;&#32473;&#35841;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#23558;&#20219;&#21153;&#20998;&#37197;&#32473;&#35841;&#65311;</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="&#25105;&#20204;&#33021;&#21542;&#23548;&#20837;&#31532;&#19977;&#26041;&#32771;&#21220;&#21345;&#26465;&#30446;&#20197;&#19982; Procore &#39044;&#31639;&#24037;&#20855;&#20013;&#30340;&ldquo;&#32771;&#21220;&#34920;&#24037;&#26102;&rdquo;&#21015;&#37197;&#21512;&#20351;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#20204;&#33021;&#21542;&#23548;&#20837;&#31532;&#19977;&#26041;&#32771;&#21220;&#21345;&#26465;&#30446;&#20197;&#19982; Procore &#39044;&#31639;&#24037;&#20855;&#20013;&#30340;&ldquo;&#32771;&#21220;&#34920;&#24037;&#26102;&rdquo;&#21015;&#37197;&#21512;&#20351;&#29992;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#22914;&#20309;&#20026;&#24102;&#35745;&#26102;&#30340;&#22810;&#23618;&#23457;&#25209;&#37197;&#32622;&#29992;&#25143;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#24102;&#35745;&#26102;&#30340;&#22810;&#23618;&#23457;&#25209;&#37197;&#32622;&#29992;&#25143;&#26435;&#38480;&#65311;</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="&#22914;&#20309;&#20026;&#23454;&#26102;&#20154;&#24037;&#29983;&#20135;&#21147;&#35774;&#32622;&#39044;&#31639;&#35270;&#22270;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#23454;&#26102;&#20154;&#24037;&#29983;&#20135;&#21147;&#35774;&#32622;&#39044;&#31639;&#35270;&#22270;&#65311;</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="&#22914;&#20309;&#22312;&#32771;&#21220;&#34920;&#20013;&#20351;&#29992;&#20197;&#21069;&#30340;&#32771;&#21220;&#21345;&#26465;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32771;&#21220;&#34920;&#20013;&#20351;&#29992;&#20197;&#21069;&#30340;&#32771;&#21220;&#21345;&#26465;&#30446;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-production-quantities" title="&#20160;&#20040;&#26159;&ldquo;&#29983;&#20135;&#25968;&#37327;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&ldquo;&#29983;&#20135;&#25968;&#37327;&rdquo;&#65311;</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="&#20160;&#20040;&#26159;&ldquo;&#31169;&#23494;&rdquo;&#32771;&#21220;&#21345;&#20197;&#21450;&#21738;&#20123;&#32771;&#21220;&#21345;&#21487;&#20197;&#35774;&#32622;&#20026;&#31169;&#23494;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&ldquo;&#31169;&#23494;&rdquo;&#32771;&#21220;&#21345;&#20197;&#21450;&#21738;&#20123;&#32771;&#21220;&#21345;&#21487;&#20197;&#35774;&#32622;&#20026;&#31169;&#23494;&#65311;</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="&#39044;&#31639;&#32534;&#21495;&#21644;&#20219;&#21153;&#32534;&#21495;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#39044;&#31639;&#32534;&#21495;&#21644;&#20219;&#21153;&#32534;&#21495;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#20154;&#24037;&#29983;&#20135;&#21147;&#39044;&#31639;&#35270;&#22270;&#21644;&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#20154;&#24037;&#29983;&#20135;&#21147;&#39044;&#31639;&#35270;&#22270;&#21644;&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-classifications" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&ldquo;&#24037;&#31181;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&ldquo;&#24037;&#31181;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-wbs-custom-segments" title="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21019;&#24314; WBS &#33258;&#23450;&#20041;&#32454;&#20998;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21019;&#24314; WBS &#33258;&#23450;&#20041;&#32454;&#20998;&#65311;</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="&#21019;&#24314;&#32771;&#21220;&#34920;&#26465;&#30446;&#26102;&#65292;&#21487;&#20197;&#38480;&#21046;&#21487;&#20379;&#36873;&#25321;&#30340;&#25104;&#26412;&#32534;&#21495;&#25968;&#37327;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#21019;&#24314;&#32771;&#21220;&#34920;&#26465;&#30446;&#26102;&#65292;&#21487;&#20197;&#38480;&#21046;&#21487;&#20379;&#36873;&#25321;&#30340;&#25104;&#26412;&#32534;&#21495;&#25968;&#37327;&#21527;&#65311;</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="&#25105;&#20204;&#33021;&#21542;&#23548;&#20837;&#31532;&#19977;&#26041;&#32771;&#21220;&#21345;&#26465;&#30446;&#20197;&#19982; Procore &#39044;&#31639;&#24037;&#20855;&#20013;&#30340;&ldquo;&#32771;&#21220;&#34920;&#24037;&#26102;&rdquo;&#21015;&#37197;&#21512;&#20351;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#20204;&#33021;&#21542;&#23548;&#20837;&#31532;&#19977;&#26041;&#32771;&#21220;&#21345;&#26465;&#30446;&#20197;&#19982; Procore &#39044;&#31639;&#24037;&#20855;&#20013;&#30340;&ldquo;&#32771;&#21220;&#34920;&#24037;&#26102;&rdquo;&#21015;&#37197;&#21512;&#20351;&#29992;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-task-codes-configured-for-time-entry" title="&#22914;&#20309;&#20026;&#24037;&#26102;&#26465;&#30446;&#37197;&#32622;&#20219;&#21153;&#32534;&#21495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#24037;&#26102;&#26465;&#30446;&#37197;&#32622;&#20219;&#21153;&#32534;&#21495;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#22914;&#20309;&#23558;&ldquo;&#32771;&#21220;&#34920;&#24037;&#26102;&rdquo;&#21015;&#28155;&#21152;&#21040;&#39044;&#31639;&#35270;&#22270;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&ldquo;&#32771;&#21220;&#34920;&#24037;&#26102;&rdquo;&#21015;&#28155;&#21152;&#21040;&#39044;&#31639;&#35270;&#22270;&#65311;</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="&#22914;&#20309;&#20026;&#24102;&#35745;&#26102;&#30340;&#22810;&#23618;&#23457;&#25209;&#37197;&#32622;&#29992;&#25143;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#24102;&#35745;&#26102;&#30340;&#22810;&#23618;&#23457;&#25209;&#37197;&#32622;&#29992;&#25143;&#26435;&#38480;&#65311;</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="&#22914;&#20309;&#30830;&#23450;&#22320;&#22336;&#30340;&#32428;&#24230;&#21644;&#32463;&#24230;&#20540;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#30830;&#23450;&#22320;&#22336;&#30340;&#32428;&#24230;&#21644;&#32463;&#24230;&#20540;&#65311;</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="&#22914;&#20309;&#20026;&#23454;&#26102;&#20154;&#24037;&#29983;&#20135;&#21147;&#35774;&#32622;&#39044;&#31639;&#35270;&#22270;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026;&#23454;&#26102;&#20154;&#24037;&#29983;&#20135;&#21147;&#35774;&#32622;&#39044;&#31639;&#35270;&#22270;&#65311;</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="&#22914;&#20309;&#36319;&#36394;&#22312;&#20316;&#19994;&#29616;&#22330;&#25509;&#25910;&#21644;&#23433;&#35013;&#30340;&#23454;&#38469;&#26448;&#26009;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#36319;&#36394;&#22312;&#20316;&#19994;&#29616;&#22330;&#25509;&#25910;&#21644;&#23433;&#35013;&#30340;&#23454;&#38469;&#26448;&#26009;&#65311;</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="&#22914;&#20309;&#22312;&#32771;&#21220;&#34920;&#20013;&#20351;&#29992;&#20197;&#21069;&#30340;&#32771;&#21220;&#21345;&#26465;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#32771;&#21220;&#34920;&#20013;&#20351;&#29992;&#20197;&#21069;&#30340;&#32771;&#21220;&#21345;&#26465;&#30446;&#65311;</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="&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</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="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-multi-tiered-locations" title="&#20160;&#20040;&#26159;&#22810;&#23618;&#22320;&#28857;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#22810;&#23618;&#22320;&#28857;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-production-quantities" title="&#20160;&#20040;&#26159;&ldquo;&#29983;&#20135;&#25968;&#37327;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&ldquo;&#29983;&#20135;&#25968;&#37327;&rdquo;&#65311;</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 &#30340;&#24037;&#26102;&#27169;&#22359;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#24037;&#26102;&#27169;&#22359;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#32771;&#21220;&#34920;&#24037;&#20855;&#26102;&#38388;&#26465;&#30446;&#30340;&#40664;&#35748;&#29366;&#24577;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#32771;&#21220;&#34920;&#24037;&#20855;&#26102;&#38388;&#26465;&#30446;&#30340;&#40664;&#35748;&#29366;&#24577;&#26159;&#20160;&#20040;&#65311;</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="&#39033;&#30446;&#32423;&#21035;&#32771;&#21220;&#34920;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#32423;&#21035;&#32771;&#21220;&#34920;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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 &#20013;&#30340;&ldquo;&#32852;&#31995;&#20154;&rdquo;&#26159;&#20160;&#20040;&#65311;&#21738;&#20123;&#39033;&#30446;&#24037;&#20855;&#25903;&#25345;&#27492;&#27010;&#24565;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&ldquo;&#32852;&#31995;&#20154;&rdquo;&#26159;&#20160;&#20040;&#65311;&#21738;&#20123;&#39033;&#30446;&#24037;&#20855;&#25903;&#25345;&#27492;&#27010;&#24565;&#65311;</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="&#20160;&#20040;&#26159;&ldquo;&#31169;&#23494;&rdquo;&#32771;&#21220;&#21345;&#20197;&#21450;&#21738;&#20123;&#32771;&#21220;&#21345;&#21487;&#20197;&#35774;&#32622;&#20026;&#31169;&#23494;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&ldquo;&#31169;&#23494;&rdquo;&#32771;&#21220;&#21345;&#20197;&#21450;&#21738;&#20123;&#32771;&#21220;&#21345;&#21487;&#20197;&#35774;&#32622;&#20026;&#31169;&#23494;&#65311;</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="&#39044;&#31639;&#32534;&#21495;&#21644;&#20219;&#21153;&#32534;&#21495;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#39044;&#31639;&#32534;&#21495;&#21644;&#20219;&#21153;&#32534;&#21495;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#20154;&#24037;&#29983;&#20135;&#21147;&#39044;&#31639;&#35270;&#22270;&#21644;&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#20154;&#24037;&#29983;&#20135;&#21147;&#39044;&#31639;&#35270;&#22270;&#21644;&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&quot;&#36164;&#28304;&#36319;&#36394;&quot;&#21644;&quot;&#36164;&#28304;&#31649;&#29702;&quot;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&quot;&#36164;&#28304;&#36319;&#36394;&quot;&#21644;&quot;&#36164;&#28304;&#31649;&#29702;&quot;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#32771;&#21220;&#34920;&#21644;&#25105;&#30340;&#24037;&#26102;&#24037;&#20855;&#23383;&#27573;&#38598;&#19978;&#30340;&#32534;&#21495;&#27169;&#26495;&#20174;&#20309;&#32780;&#26469;&#65311;"><span class="mt-icon-article-none"></span>&#32771;&#21220;&#34920;&#21644;&#25105;&#30340;&#24037;&#26102;&#24037;&#20855;&#23383;&#27573;&#38598;&#19978;&#30340;&#32534;&#21495;&#27169;&#26495;&#20174;&#20309;&#32780;&#26469;&#65311;</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="&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#20013;&#21253;&#21547;&#21738;&#20123;&#25968;&#25454;&#21015;&#65311;"><span class="mt-icon-article-none"></span>&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#20013;&#21253;&#21547;&#21738;&#20123;&#25968;&#25454;&#21015;&#65311;</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="&#32771;&#21220;&#34920;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#32771;&#21220;&#34920;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#20250;&#26356;&#26032;&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#20013;&#30340;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#20250;&#26356;&#26032;&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#20013;&#30340;&#25968;&#25454;&#65311;</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="&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#23558;&#29983;&#20135;&#25968;&#37327;&#28155;&#21152;&#21040;&#25105;&#30340;&#39033;&#30446;&#39044;&#31639;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#23558;&#29983;&#20135;&#25968;&#37327;&#28155;&#21152;&#21040;&#25105;&#30340;&#39033;&#30446;&#39044;&#31639;&#20013;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-classifications" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&ldquo;&#24037;&#31181;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&ldquo;&#24037;&#31181;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-wbs-custom-segments" title="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21019;&#24314; WBS &#33258;&#23450;&#20041;&#32454;&#20998;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21019;&#24314; WBS &#33258;&#23450;&#20041;&#32454;&#20998;&#65311;</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="&#20026;&#20160;&#20040;&#39033;&#30446;&#30340;&#39044;&#31639;&#35270;&#22270;&#27809;&#26377;&#21453;&#26144;&#32771;&#21220;&#21345;&#26465;&#30446;&#20013;&#30340;&#20154;&#24037;&#25104;&#26412;&#21644;&#29983;&#20135;&#25968;&#37327;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#39033;&#30446;&#30340;&#39044;&#31639;&#35270;&#22270;&#27809;&#26377;&#21453;&#26144;&#32771;&#21220;&#21345;&#26465;&#30446;&#20013;&#30340;&#20154;&#24037;&#25104;&#26412;&#21644;&#29983;&#20135;&#25968;&#37327;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-statuses-for-tm-tickets" title="&#24037;&#26102;&#21644;&#26448;&#26009;&#21333;&#30340;&#40664;&#35748;&#29366;&#24577;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#24037;&#26102;&#21644;&#26448;&#26009;&#21333;&#30340;&#40664;&#35748;&#29366;&#24577;&#26159;&#20160;&#20040;&#65311;</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 &#20013;&#30340;&ldquo;&#32852;&#31995;&#20154;&rdquo;&#26159;&#20160;&#20040;&#65311;&#21738;&#20123;&#39033;&#30446;&#24037;&#20855;&#25903;&#25345;&#27492;&#27010;&#24565;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&ldquo;&#32852;&#31995;&#20154;&rdquo;&#26159;&#20160;&#20040;&#65311;&#21738;&#20123;&#39033;&#30446;&#24037;&#20855;&#25903;&#25345;&#27492;&#27010;&#24565;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-tm-ticket" title="&#20160;&#20040;&#26159;&#24037;&#26102;&#21644;&#26448;&#26009;&#21333;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#24037;&#26102;&#21644;&#26448;&#26009;&#21333;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;</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="&quot;&#36164;&#28304;&#36319;&#36394;&quot;&#21644;&quot;&#36164;&#28304;&#31649;&#29702;&quot;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&quot;&#36164;&#28304;&#36319;&#36394;&quot;&#21644;&quot;&#36164;&#28304;&#31649;&#29702;&quot;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#24037;&#26102;&#21644;&#26448;&#26009;&#21333;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-none"></span>&#24037;&#26102;&#21644;&#26448;&#26009;&#21333;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-classifications" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&ldquo;&#24037;&#31181;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&ldquo;&#24037;&#31181;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-wbs-custom-segments" title="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21019;&#24314; WBS &#33258;&#23450;&#20041;&#32454;&#20998;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21019;&#24314; WBS &#33258;&#23450;&#20041;&#32454;&#20998;&#65311;</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="&#22914;&#20309;&#35775;&#38382;&#25105;&#20844;&#21496;&#30340;&#22521;&#35757;&#20013;&#24515;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35775;&#38382;&#25105;&#20844;&#21496;&#30340;&#22521;&#35757;&#20013;&#24515;&#65311;</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="&#22914;&#20309;&#30331;&#24405; Procore &#25903;&#25345;&#32593;&#31449;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#30331;&#24405; Procore &#25903;&#25345;&#32593;&#31449;&#65311;</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="&#22914;&#20309;&#35831;&#27714;&#35775;&#38382;&#33258;&#23450;&#20041;&#22521;&#35757;&#20013;&#24515;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35831;&#27714;&#35775;&#38382;&#33258;&#23450;&#20041;&#22521;&#35757;&#20013;&#24515;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-training-center" title="&#20160;&#20040;&#26159;&#22521;&#35757;&#20013;&#24515;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#22521;&#35757;&#20013;&#24515;&#65311;</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="&#25105;&#22312; Procore &#25903;&#25345;&#32593;&#31449;&#19978;&#30340;&#29992;&#25143;&#20250;&#35805;&#20309;&#26102;&#36807;&#26399;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#22312; Procore &#25903;&#25345;&#32593;&#31449;&#19978;&#30340;&#29992;&#25143;&#20250;&#35805;&#20309;&#26102;&#36807;&#26399;&#65311;</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="&#25105;&#20026;&#20160;&#20040;&#27809;&#26377;&#26597;&#30475;&#27492;&#32593;&#39029;&#30340;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#20026;&#20160;&#20040;&#27809;&#26377;&#26597;&#30475;&#27492;&#32593;&#39029;&#30340;&#26435;&#38480;&#65311;</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="&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#22914;&#20309;&#19968;&#27425;&#23558;&#22810;&#20010;&#25991;&#20214;&#28155;&#21152;&#21040;&#20256;&#36755;&#35760;&#24405;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#19968;&#27425;&#23558;&#22810;&#20010;&#25991;&#20214;&#28155;&#21152;&#21040;&#20256;&#36755;&#35760;&#24405;&#20013;&#65311;</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="&#22914;&#20309;&#20026; mailto &#38142;&#25509;&#26356;&#25913;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#30340;&#40664;&#35748;&#30005;&#23376;&#37038;&#20214;&#23458;&#25143;&#31471;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20026; mailto &#38142;&#25509;&#26356;&#25913;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#30340;&#40664;&#35748;&#30005;&#23376;&#37038;&#20214;&#23458;&#25143;&#31471;&#65311;</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="&#22914;&#20309;&#25353;&#22810;&#23618;&#22320;&#28857;&#31579;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#25353;&#22810;&#23618;&#22320;&#28857;&#31579;&#36873;&#39033;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;</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="&#39033;&#30446;&#30340;&#20256;&#36755;&#35760;&#24405;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#39033;&#30446;&#30340;&#20256;&#36755;&#35760;&#24405;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-transmittal-in-procore" title="&#20160;&#20040;&#26159; Procore &#20013;&#30340;&#20256;&#36755;&#35760;&#24405;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#20013;&#30340;&#20256;&#36755;&#35760;&#24405;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;</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 &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#34920;&#21333;&#20013;&#24378;&#21046;&#25191;&#34892;&#24517;&#22635;&#23383;&#27573;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312;&#34920;&#21333;&#20013;&#24378;&#21046;&#25191;&#34892;&#24517;&#22635;&#23383;&#27573;&#65311;</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="&#22914;&#20309;&#20801;&#35768;&ldquo;&#26631;&#20934;&rdquo;&#29992;&#25143;&#28155;&#21152;&#21040;&#39033;&#30446;&#30446;&#24405;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#20801;&#35768;&ldquo;&#26631;&#20934;&rdquo;&#29992;&#25143;&#28155;&#21152;&#21040;&#39033;&#30446;&#30446;&#24405;&#65311;</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="&#22914;&#20309;&#38450;&#27490;&#25110;&#20801;&#35768;&#20998;&#21253;&#21830;&#21457;&#31080;&#36229;&#39069; &#35745;&#36153;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#38450;&#27490;&#25110;&#20801;&#35768;&#20998;&#21253;&#21830;&#21457;&#31080;&#36229;&#39069; &#35745;&#36153;&#65311;</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="&#23558;&#29992;&#25143;&#28155;&#21152;&#21040; Procore &#39033;&#30446;&#38656;&#35201;&#20160;&#20040;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#23558;&#29992;&#25143;&#28155;&#21152;&#21040; Procore &#39033;&#30446;&#38656;&#35201;&#20160;&#20040;&#26435;&#38480;&#65311;</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="&#22914;&#20309;&#22312;&#20844;&#21496;&#32423;&#21035;&#24037;&#20316;&#27969;&#24037;&#20855;&#20013;&#26356;&#26032;&#29256;&#26412;&#21495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#20844;&#21496;&#32423;&#21035;&#24037;&#20316;&#27969;&#24037;&#20855;&#20013;&#26356;&#26032;&#29256;&#26412;&#21495;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-roles-associated-with-workflows" title="&#19982;&#24037;&#20316;&#27969;&#20851;&#32852;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#19982;&#24037;&#20316;&#27969;&#20851;&#32852;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#35282;&#33394;&#65311;</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="&#24037;&#20316;&#27969;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#31867;&#22411;&#30340;&#27493;&#39588;&#65311;"><span class="mt-icon-article-none"></span>&#24037;&#20316;&#27969;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#31867;&#22411;&#30340;&#27493;&#39588;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-workflows" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#27969;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#27969;&#65311;</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="&#24453;&#22788;&#29702;&#21512;&#32422;&#26159;&#21542;&#20250;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#33258;&#21160;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#24453;&#22788;&#29702;&#21512;&#32422;&#26159;&#21542;&#20250;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#33258;&#21160;&#21516;&#27493;&#65311;</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="&#21512;&#32422;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#21518;&#65292;&#25105;&#33021;&#21542;&#32534;&#36753;&#25110;&#21024;&#38500;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#21518;&#65292;&#25105;&#33021;&#21542;&#32534;&#36753;&#25110;&#21024;&#38500;&#65311;</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="&#25105;&#21487;&#20197;&#23558; Procore &#39044;&#31639;&#20462;&#25913;&#23548;&#20986;&#21040;&#38598;&#25104; ERP &#31995;&#32479;&#21527;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#23558; Procore &#39044;&#31639;&#20462;&#25913;&#23548;&#20986;&#21040;&#38598;&#25104; ERP &#31995;&#32479;&#21527;&#65311;</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 &#38598;&#25104;&#22914;&#20309;&#36830;&#25509; Procore &#19982; Viewpoint&reg; Vista&trade;&#65311;"><span class="mt-icon-article-none"></span>Ryvit &#38598;&#25104;&#22914;&#20309;&#36830;&#25509; Procore &#19982; Viewpoint&reg; Vista&trade;&#65311;</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="&#25105;&#21487;&#20197;&#20351;&#29992; Ryvit &#38598;&#25104;&#20197;&#20309;&#31181;&#39057;&#29575;&#21516;&#27493;&#25968;&#25454;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#21487;&#20197;&#20351;&#29992; Ryvit &#38598;&#25104;&#20197;&#20309;&#31181;&#39057;&#29575;&#21516;&#27493;&#25968;&#25454;&#65311;</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="&#26377;&#21738;&#20123;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#20197;&#21450;&#25105;&#20204;&#30340; ERP &#38598;&#25104;&#22914;&#20309;&#25903;&#25345;&#36825;&#20123;&#25104;&#26412;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#26377;&#21738;&#20123;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#20197;&#21450;&#25105;&#20204;&#30340; ERP &#38598;&#25104;&#22914;&#20309;&#25903;&#25345;&#36825;&#20123;&#25104;&#26412;&#31867;&#22411;&#65311;</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="&#21738;&#20123;&#25968;&#25454;&#19982; Ryvit &#38598;&#25104;&#36830;&#25509;&#22120;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#25968;&#25454;&#19982; Ryvit &#38598;&#25104;&#36830;&#25509;&#22120;&#21516;&#27493;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-erp-icons-mean" title="ERP &#22270;&#26631;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>ERP &#22270;&#26631;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;</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="&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;</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="&#30446;&#24405;&#24037;&#20855;&#20013;&ldquo;&#20844;&#21496;&#21517;&#31216;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-none"></span>&#30446;&#24405;&#24037;&#20855;&#20013;&ldquo;&#20844;&#21496;&#21517;&#31216;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#24403;&#39033;&#34987; ERP &#25298;&#32477;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#39033;&#34987; ERP &#25298;&#32477;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-or-activate-procore-projects" title="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#25110;&#28608;&#27963; Procore &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#25110;&#28608;&#27963; Procore &#39033;&#30446;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&ldquo;&#21516;&#27493;&rdquo;&#25110;&ldquo;&#21047;&#26032;&rdquo;&#25353;&#38062;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&ldquo;&#21516;&#27493;&rdquo;&#25110;&ldquo;&#21047;&#26032;&rdquo;&#25353;&#38062;&#65311;</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="&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;</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="&#26159;&#21542;&#21487;&#20197;&#23558;&#33258;&#23450;&#20041;&#32454;&#20998;&#24212;&#29992;&#20110;&#29616;&#26377;&#30340;&#38750; WBS &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#26159;&#21542;&#21487;&#20197;&#23558;&#33258;&#23450;&#20041;&#32454;&#20998;&#24212;&#29992;&#20110;&#29616;&#26377;&#30340;&#38750; WBS &#39033;&#30446;&#65311;</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="&#22914;&#20309;&#36328;&#21464;&#26356;&#23545;&#35937;&#26356;&#26032;&#36130;&#21153;&#26126;&#32454;&#39033;&#21644;&#39044;&#31639;&#32534;&#21495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#36328;&#21464;&#26356;&#23545;&#35937;&#26356;&#26032;&#36130;&#21153;&#26126;&#32454;&#39033;&#21644;&#39044;&#31639;&#32534;&#21495;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-none"></span>Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-segments-and-segment-items" title="&#20160;&#20040;&#26159;&#32454;&#20998;&#21644;&#32454;&#20998;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#32454;&#20998;&#21644;&#32454;&#20998;&#39033;&#65311;</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="&#25105;&#20204;&#24212;&#35813;&#20026;&#20844;&#21496;&#30340;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#21019;&#24314;&#21738;&#20123;&#33258;&#23450;&#20041;&#32454;&#20998;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#20204;&#24212;&#35813;&#20026;&#20844;&#21496;&#30340;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#21019;&#24314;&#21738;&#20123;&#33258;&#23450;&#20041;&#32454;&#20998;&#65311;</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 &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#26159;&#20160;&#20040;&#65311;</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 &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#32467;&#26500;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#32467;&#26500;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#20013;&#30340;&#40664;&#35748;&#32454;&#20998;&#21644;&#33258;&#23450;&#20041;&#32454;&#20998;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#20013;&#30340;&#40664;&#35748;&#32454;&#20998;&#21644;&#33258;&#23450;&#20041;&#32454;&#20998;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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 &#30340;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#20013;&#30340;&#24179;&#38754;&#32454;&#20998;&#21644;&#20998;&#23618;&#32454;&#20998;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#20013;&#30340;&#24179;&#38754;&#32454;&#20998;&#21644;&#20998;&#23618;&#32454;&#20998;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-work-breakdown-structure-wbs" title="&#20160;&#20040;&#26159;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500; (WBS)&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500; (WBS)&#65311;</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 &#30340; WBS &#20013;&ldquo;&#25104;&#26412;&#32534;&#21495;&rdquo;&#32454;&#20998;&#20013;&#30340;&ldquo;&#20998;&#37096;&rdquo;&#22312;&#21738;&#37324;&#65311;"><span class="mt-icon-article-none"></span>Procore &#30340; WBS &#20013;&ldquo;&#25104;&#26412;&#32534;&#21495;&rdquo;&#32454;&#20998;&#20013;&#30340;&ldquo;&#20998;&#37096;&rdquo;&#22312;&#21738;&#37324;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-work-breakdown-structure" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-wbs-custom-segments" title="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21019;&#24314; WBS &#33258;&#23450;&#20041;&#32454;&#20998;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21019;&#24314; WBS &#33258;&#23450;&#20041;&#32454;&#20998;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312; WBS &#20013;&#20572;&#29992;&#25104;&#26412;&#31867;&#22411;&#12289;&#25104;&#26412;&#32534;&#21495;&#25110;&#23376;&#20316;&#19994;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312; WBS &#20013;&#20572;&#29992;&#25104;&#26412;&#31867;&#22411;&#12289;&#25104;&#26412;&#32534;&#21495;&#25110;&#23376;&#20316;&#19994;&#65311;</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="&#24403;&#25968;&#25454;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#31561;&#24453;&#39564;&#25910;&#26102;&#65292;&#26159;&#21542;&#20250;&#36890;&#30693;&#20250;&#35745;&#23457;&#25209;&#32773;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#25968;&#25454;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#31561;&#24453;&#39564;&#25910;&#26102;&#65292;&#26159;&#21542;&#20250;&#36890;&#30693;&#20250;&#35745;&#23457;&#25209;&#32773;&#65311;</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="&#24453;&#22788;&#29702;&#21512;&#32422;&#26159;&#21542;&#20250;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#33258;&#21160;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#24453;&#22788;&#29702;&#21512;&#32422;&#26159;&#21542;&#20250;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#33258;&#21160;&#21516;&#27493;&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#20844;&#21496;&#21516;&#27493;&#21518;&#26356;&#25913;&#36873;&#23450;&#30340;&#20379;&#24212;&#21830;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312;&#20844;&#21496;&#21516;&#27493;&#21518;&#26356;&#25913;&#36873;&#23450;&#30340;&#20379;&#24212;&#21830;&#31867;&#22411;&#65311;</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="&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;</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="&#21512;&#32422;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#21518;&#65292;&#25105;&#33021;&#21542;&#32534;&#36753;&#25110;&#21024;&#38500;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#21518;&#65292;&#25105;&#33021;&#21542;&#32534;&#36753;&#25110;&#21024;&#38500;&#65311;</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="&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</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="&#24403;&#21512;&#32422;&#26410;&#33021;&#20174; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#23548;&#20986;&#26102;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#21512;&#32422;&#26410;&#33021;&#20174; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#23548;&#20986;&#26102;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-erp-icons-mean" title="ERP &#22270;&#26631;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>ERP &#22270;&#26631;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;</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="&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#26126;&#32454;&#39033;&#22312;&#25105;&#30340;&#20998;&#21253;&#21830;&#21457;&#31080;&#19978;&#37325;&#22797;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#26126;&#32454;&#39033;&#22312;&#25105;&#30340;&#20998;&#21253;&#21830;&#21457;&#31080;&#19978;&#37325;&#22797;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&ldquo;&#21516;&#27493;&rdquo;&#25110;&ldquo;&#21047;&#26032;&rdquo;&#25353;&#38062;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&ldquo;&#21516;&#27493;&rdquo;&#25110;&ldquo;&#21047;&#26032;&rdquo;&#25353;&#38062;&#65311;</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="&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;</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="&#20026;&#20160;&#20040;&ldquo;&#21457;&#36865;&#21040; ERP&rdquo;&#25353;&#38062;&#21464;&#26263;&#24182;&#19988;&#22312;&#39033;&#30446;&#21019;&#24314;&#21161;&#25163;&#20013;&#19981;&#21487;&#29992;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&ldquo;&#21457;&#36865;&#21040; ERP&rdquo;&#25353;&#38062;&#21464;&#26263;&#24182;&#19988;&#22312;&#39033;&#30446;&#21019;&#24314;&#21161;&#25163;&#20013;&#19981;&#21487;&#29992;&#65311;</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="&#22914;&#20309;&#22312;&#20844;&#21496;&#32423;&#21035;&#24037;&#20316;&#27969;&#24037;&#20855;&#20013;&#26356;&#26032;&#29256;&#26412;&#21495;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#20844;&#21496;&#32423;&#21035;&#24037;&#20316;&#27969;&#24037;&#20855;&#20013;&#26356;&#26032;&#29256;&#26412;&#21495;&#65311;</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="&#26087;&#29256;&#24037;&#20316;&#27969;&#21644;&#33258;&#21161;&#24335;&#24037;&#20316;&#27969;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-none"></span>&#26087;&#29256;&#24037;&#20316;&#27969;&#21644;&#33258;&#21161;&#24335;&#24037;&#20316;&#27969;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-roles-associated-with-workflows" title="&#19982;&#24037;&#20316;&#27969;&#20851;&#32852;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#19982;&#24037;&#20316;&#27969;&#20851;&#32852;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#35282;&#33394;&#65311;</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="&#24037;&#20316;&#27969;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#31867;&#22411;&#30340;&#27493;&#39588;&#65311;"><span class="mt-icon-article-none"></span>&#24037;&#20316;&#27969;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#31867;&#22411;&#30340;&#27493;&#39588;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-commitments-workflows" title="&#21512;&#32422;&#24037;&#20316;&#27969;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&#24037;&#20316;&#27969;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#25991;&#26723;&#31649;&#29702;&#24037;&#20316;&#27969;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#25991;&#26723;&#31649;&#29702;&#24037;&#20316;&#27969;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-are-email-notifications-sent-from-workflows" title="&#24037;&#20316;&#27969;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#24037;&#20316;&#27969;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-workflows" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#27969;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#27969;&#65311;</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="&#22914;&#20309;&#22312;&#36164;&#28304;&#35268;&#21010;&#20013;&#20351;&#29992;&#24037;&#36164;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#36164;&#28304;&#35268;&#21010;&#20013;&#20351;&#29992;&#24037;&#36164;&#65311;</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="&#19982;&#36164;&#28304;&#35268;&#21010;&#21516;&#27493;&#25968;&#25454;&#26102;&#22914;&#20309;&#38450;&#27490;&#37325;&#22797;&#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#19982;&#36164;&#28304;&#35268;&#21010;&#21516;&#27493;&#25968;&#25454;&#26102;&#22914;&#20309;&#38450;&#27490;&#37325;&#22797;&#39033;&#30446;&#65311;</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="&#22914;&#20309;&#22312;&#36164;&#28304;&#35268;&#21010;&#20013;&#35774;&#32622;&#25105;&#30340;&#36134;&#25143;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#36164;&#28304;&#35268;&#21010;&#20013;&#35774;&#32622;&#25105;&#30340;&#36134;&#25143;&#65311;</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="&#22914;&#20309;&#22312;&#36164;&#28304;&#35268;&#21010;&#20013;&#20351;&#29992;&#24102;&#26377;&#21040;&#26399;&#26085;&#26399;&#30340;&#26631;&#35760;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#22312;&#36164;&#28304;&#35268;&#21010;&#20013;&#20351;&#29992;&#24102;&#26377;&#21040;&#26399;&#26085;&#26399;&#30340;&#26631;&#35760;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-I-view-resource-allocation-percentage" title="&#22914;&#20309;&#26597;&#30475;&#36164;&#28304;&#20998;&#37197;&#30334;&#20998;&#27604;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#26597;&#30475;&#36164;&#28304;&#20998;&#37197;&#30334;&#20998;&#27604;&#65311;</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="&#20851;&#20110;&#36164;&#28304;&#35268;&#21010;&#30340;&#36523;&#20221;&#39564;&#35777;&#26356;&#26032;&#65292;&#25105;&#38656;&#35201;&#20102;&#35299;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>&#20851;&#20110;&#36164;&#28304;&#35268;&#21010;&#30340;&#36523;&#20221;&#39564;&#35777;&#26356;&#26032;&#65292;&#25105;&#38656;&#35201;&#20102;&#35299;&#20160;&#20040;&#65311;</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="&#20844;&#21496;&#30340;&#36164;&#28304;&#35268;&#21010;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-none"></span>&#20844;&#21496;&#30340;&#36164;&#28304;&#35268;&#21010;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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 &#20013;&#30340;&ldquo;&#32852;&#31995;&#20154;&rdquo;&#26159;&#20160;&#20040;&#65311;&#21738;&#20123;&#39033;&#30446;&#24037;&#20855;&#25903;&#25345;&#27492;&#27010;&#24565;&#65311;"><span class="mt-icon-article-none"></span>Procore &#20013;&#30340;&ldquo;&#32852;&#31995;&#20154;&rdquo;&#26159;&#20160;&#20040;&#65311;&#21738;&#20123;&#39033;&#30446;&#24037;&#20855;&#25903;&#25345;&#27492;&#27010;&#24565;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-assignment-alert-in-resource-planning" title="&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;&#20013;&#30340;&#20998;&#37197;&#35686;&#25253;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;&#20013;&#30340;&#20998;&#37197;&#35686;&#25253;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-resource-allocation-type" title="&#20160;&#20040;&#26159;&#36164;&#28304;&#20998;&#37197;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#36164;&#28304;&#20998;&#37197;&#31867;&#22411;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-sensitive-field-in-resource-planning" title="&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;&#20013;&#30340;&quot;&#25935;&#24863;&#23383;&#27573;&quot;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;&#20013;&#30340;&quot;&#25935;&#24863;&#23383;&#27573;&quot;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-data-syncing-for-resource-planning" title="&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;&#30340;&#25968;&#25454;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;&#30340;&#25968;&#25454;&#21516;&#27493;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-laborchart-app" title="&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;/ LaborChart&#24212;&#29992;&#31243;&#24207;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;/ LaborChart&#24212;&#29992;&#31243;&#24207;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-resource-bench-in-resource-planning" title="&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;&#20013;&#30340;&quot;&#36164;&#28304;&#21488;&quot;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;&#20013;&#30340;&quot;&#36164;&#28304;&#21488;&quot;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-workforce-planning-laborchart-web-application" title="&#20160;&#20040;&#26159;&#21171;&#21160;&#21147;&#35268;&#21010;/ LaborChart Web &#24212;&#29992;&#31243;&#24207;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#21171;&#21160;&#21147;&#35268;&#21010;/ LaborChart Web &#24212;&#29992;&#31243;&#24207;&#65311;</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="&#20154;&#21592;&#21487;&#20197;&#22312;&#36164;&#28304;&#35268;&#21010;&#20013;&#31572;&#22797;&#21738;&#20123;&#28040;&#24687;&#21644;&#35686;&#25253;&#65311;"><span class="mt-icon-article-none"></span>&#20154;&#21592;&#21487;&#20197;&#22312;&#36164;&#28304;&#35268;&#21010;&#20013;&#31572;&#22797;&#21738;&#20123;&#28040;&#24687;&#21644;&#35686;&#25253;&#65311;</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="&#36164;&#28304;&#35268;&#21010;&#21644; Procore &#20844;&#21496;&#30446;&#24405;&#20043;&#38388;&#21516;&#27493;&#20102;&#21738;&#20123;&#20154;&#21592;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#36164;&#28304;&#35268;&#21010;&#21644; Procore &#20844;&#21496;&#30446;&#24405;&#20043;&#38388;&#21516;&#27493;&#20102;&#21738;&#20123;&#20154;&#21592;&#20449;&#24687;&#65311;</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="&#36164;&#28304;&#35268;&#21010;&#21644; Procore &#39033;&#30446;&#20043;&#38388;&#21516;&#27493;&#20102;&#21738;&#20123;&#39033;&#30446;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#36164;&#28304;&#35268;&#21010;&#21644; Procore &#39033;&#30446;&#20043;&#38388;&#21516;&#27493;&#20102;&#21738;&#20123;&#39033;&#30446;&#20449;&#24687;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#33021;&#22312;&#21171;&#21160;&#21147;&#35268;&#21010;&#20013;&#30475;&#21040;&#20154;&#21592;&#65292;&#22312; Procore &#20013;&#21364;&#19981;&#33021;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#33021;&#22312;&#21171;&#21160;&#21147;&#35268;&#21010;&#20013;&#30475;&#21040;&#20154;&#21592;&#65292;&#22312; Procore &#20013;&#21364;&#19981;&#33021;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#26080;&#26435;&#26597;&#30475;&#36164;&#28304;&#35268;&#21010;&#24037;&#20855;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#26435;&#26597;&#30475;&#36164;&#28304;&#35268;&#21010;&#24037;&#20855;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-wont-the-resource-planning-tool-load" title="&#20026;&#20160;&#20040;&#36164;&#28304;&#35268;&#21010;&#24037;&#20855;&#19981;&#21152;&#36733;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#36164;&#28304;&#35268;&#21010;&#24037;&#20855;&#19981;&#21152;&#36733;&#65311;</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="&#24403;&#25968;&#25454;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#31561;&#24453;&#39564;&#25910;&#26102;&#65292;&#26159;&#21542;&#20250;&#36890;&#30693;&#20250;&#35745;&#23457;&#25209;&#32773;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#25968;&#25454;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#31561;&#24453;&#39564;&#25910;&#26102;&#65292;&#26159;&#21542;&#20250;&#36890;&#30693;&#20250;&#35745;&#23457;&#25209;&#32773;&#65311;</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="&#24453;&#22788;&#29702;&#21512;&#32422;&#26159;&#21542;&#20250;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#33258;&#21160;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#24453;&#22788;&#29702;&#21512;&#32422;&#26159;&#21542;&#20250;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#33258;&#21160;&#21516;&#27493;&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#20844;&#21496;&#21516;&#27493;&#21518;&#26356;&#25913;&#36873;&#23450;&#30340;&#20379;&#24212;&#21830;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312;&#20844;&#21496;&#21516;&#27493;&#21518;&#26356;&#25913;&#36873;&#23450;&#30340;&#20379;&#24212;&#21830;&#31867;&#22411;&#65311;</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="&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</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="&#26377;&#21738;&#20123;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#20197;&#21450;&#25105;&#20204;&#30340; ERP &#38598;&#25104;&#22914;&#20309;&#25903;&#25345;&#36825;&#20123;&#25104;&#26412;&#31867;&#22411;&#65311;"><span class="mt-icon-article-none"></span>&#26377;&#21738;&#20123;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#20197;&#21450;&#25105;&#20204;&#30340; ERP &#38598;&#25104;&#22914;&#20309;&#25903;&#25345;&#36825;&#20123;&#25104;&#26412;&#31867;&#22411;&#65311;</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="&#24403;&#21512;&#32422;&#26410;&#33021;&#20174; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#23548;&#20986;&#26102;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#21512;&#32422;&#26410;&#33021;&#20174; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#23548;&#20986;&#26102;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-erp-icons-mean" title="ERP &#22270;&#26631;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>ERP &#22270;&#26631;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;</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="&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;</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="&#21512;&#32422;&ldquo;&#32534;&#21495; (#)&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&ldquo;&#32534;&#21495; (#)&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#21512;&#32422;&ldquo;&#26631;&#39064;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&ldquo;&#26631;&#39064;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#30446;&#24405;&#24037;&#20855;&#20013;&ldquo;&#20844;&#21496;&#21517;&#31216;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-none"></span>&#30446;&#24405;&#24037;&#20855;&#20013;&ldquo;&#20844;&#21496;&#21517;&#31216;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#23376;&#20316;&#19994;&rdquo;&#27010;&#24565;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#23376;&#20316;&#19994;&rdquo;&#27010;&#24565;&#65311;</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="&#24403;&#39033;&#34987; ERP &#25298;&#32477;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#39033;&#34987; ERP &#25298;&#32477;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-or-activate-procore-projects" title="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#25110;&#28608;&#27963; Procore &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#25110;&#28608;&#27963; Procore &#39033;&#30446;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;</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="&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;</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="&#24403;&#25968;&#25454;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#31561;&#24453;&#39564;&#25910;&#26102;&#65292;&#26159;&#21542;&#20250;&#36890;&#30693;&#20250;&#35745;&#23457;&#25209;&#32773;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#25968;&#25454;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#31561;&#24453;&#39564;&#25910;&#26102;&#65292;&#26159;&#21542;&#20250;&#36890;&#30693;&#20250;&#35745;&#23457;&#25209;&#32773;&#65311;</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="&#24453;&#22788;&#29702;&#21512;&#32422;&#26159;&#21542;&#20250;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#33258;&#21160;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#24453;&#22788;&#29702;&#21512;&#32422;&#26159;&#21542;&#20250;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#33258;&#21160;&#21516;&#27493;&#65311;</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="&#21512;&#32422;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#21518;&#65292;&#25105;&#33021;&#21542;&#32534;&#36753;&#25110;&#21024;&#38500;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#21518;&#65292;&#25105;&#33021;&#21542;&#32534;&#36753;&#25110;&#21024;&#38500;&#65311;</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="&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;</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="&#22914;&#20309;&#23558;&#25104;&#26412;&#32534;&#21495;&#28155;&#21152;&#21040;&#19982; Yardi Voyager&reg; &#21516;&#27493;&#30340;&#39033;&#30446;&#20013;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#23558;&#25104;&#26412;&#32534;&#21495;&#28155;&#21152;&#21040;&#19982; Yardi Voyager&reg; &#21516;&#27493;&#30340;&#39033;&#30446;&#20013;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#30340;&#39044;&#31639;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#30340;&#39044;&#31639;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</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="&#24403;&#21512;&#32422;&#26410;&#33021;&#20174; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#23548;&#20986;&#26102;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;"><span class="mt-icon-article-none"></span>&#24403;&#21512;&#32422;&#26410;&#33021;&#20174; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#23548;&#20986;&#26102;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-do-the-erp-icons-mean" title="ERP &#22270;&#26631;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-none"></span>ERP &#22270;&#26631;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;</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="&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;"><span class="mt-icon-article-none"></span>&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;"><span class="mt-icon-article-none"></span>&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;</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="&#21512;&#32422;&ldquo;&#32534;&#21495; (#)&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&ldquo;&#32534;&#21495; (#)&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#21512;&#32422;&ldquo;&#26631;&#39064;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-none"></span>&#21512;&#32422;&ldquo;&#26631;&#39064;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#25105;&#24212;&#35813;&#23558;&#21738;&#20123;&#39044;&#31639;&#35270;&#22270;&#28155;&#21152;&#21040;&#25105;&#30340; Procore &#39033;&#30446;&#20013;&#65311;"><span class="mt-icon-article-none"></span>&#25105;&#24212;&#35813;&#23558;&#21738;&#20123;&#39044;&#31639;&#35270;&#22270;&#28155;&#21152;&#21040;&#25105;&#30340; Procore &#39033;&#30446;&#20013;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-category-concept" title="&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#27010;&#24565;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#27010;&#24565;&#65311;</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="&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#23376;&#20316;&#19994;&rdquo;&#27010;&#24565;&#65311;"><span class="mt-icon-article-none"></span>&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#23376;&#20316;&#19994;&rdquo;&#27010;&#24565;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&ldquo;&#21516;&#27493;&rdquo;&#25110;&ldquo;&#21047;&#26032;&rdquo;&#25353;&#38062;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&ldquo;&#21516;&#27493;&rdquo;&#25110;&ldquo;&#21047;&#26032;&rdquo;&#25353;&#38062;&#65311;</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="&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;"><span class="mt-icon-article-none"></span>&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;</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="&quot;&#35268;&#33539;&#20998;&#39033;&quot;&#19979;&#25289;&#21015;&#34920;&#20013;&#30340;&#36873;&#39033;&#20174;&#20309;&#32780;&#26469;&#65311;"><span class="mt-icon-article-faq"></span>&quot;&#35268;&#33539;&#20998;&#39033;&quot;&#19979;&#25289;&#21015;&#34920;&#20013;&#30340;&#36873;&#39033;&#20174;&#20309;&#32780;&#26469;&#65311;</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="&quot;&#36164;&#28304;&#36319;&#36394;&quot;&#21644;&quot;&#36164;&#28304;&#31649;&#29702;&quot;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>&quot;&#36164;&#28304;&#36319;&#36394;&quot;&#21644;&quot;&#36164;&#28304;&#31649;&#29702;&quot;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&ldquo;&#25353;&#26085;&#26399;&#30340;&#23454;&#38469;&#20540;&rdquo;&#31579;&#36873;&#22120;&#22914;&#20309;&#22312;&#39044;&#31639;&#35270;&#22270;&#20013;&#24037;&#20316;&#65311;"><span class="mt-icon-article-faq"></span>&ldquo;&#25353;&#26085;&#26399;&#30340;&#23454;&#38469;&#20540;&rdquo;&#31579;&#36873;&#22120;&#22914;&#20309;&#22312;&#39044;&#31639;&#35270;&#22270;&#20013;&#24037;&#20316;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/plug-icon-missing-marketplace-nav-how-to" title="&ldquo;&#25554;&#22836;&rdquo;&#22270;&#26631;&#24050;&#31227;&#38500;&#65292;&#25105;&#22914;&#20309;&#23548;&#33322;&#21040;&#24212;&#29992;&#21830;&#24215;&#65311;"><span class="mt-icon-article-faq"></span>&ldquo;&#25554;&#22836;&rdquo;&#22270;&#26631;&#24050;&#31227;&#38500;&#65292;&#25105;&#22914;&#20309;&#23548;&#33322;&#21040;&#24212;&#29992;&#21830;&#24215;&#65311;</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="&ldquo;&#36865;&#23457;&#26085;&#24535;&rdquo;&#20013;&#30340;&#27599;&#19968;&#21015;&#20195;&#34920;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&ldquo;&#36865;&#23457;&#26085;&#24535;&rdquo;&#20013;&#30340;&#27599;&#19968;&#21015;&#20195;&#34920;&#20160;&#20040;&#65311;</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="&ldquo;&#38544;&#34255;&#25237;&#26631;&#20449;&#24687;&rdquo;&#23545;&#25237;&#26631;&#23460;&#22242;&#38431;&#20013;&#30340;&#26576;&#20154;&#24847;&#21619;&#30528;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&ldquo;&#38544;&#34255;&#25237;&#26631;&#20449;&#24687;&rdquo;&#23545;&#25237;&#26631;&#23460;&#22242;&#38431;&#20013;&#30340;&#26576;&#20154;&#24847;&#21619;&#30528;&#20160;&#20040;&#65311;</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 &#24230;&#25253;&#21578;&#20013;&#26377;&#21738;&#20123;&#36130;&#21153;&#26126;&#32454;&#39033;&#65311;"><span class="mt-icon-article-faq"></span>360 &#24230;&#25253;&#21578;&#20013;&#26377;&#21738;&#20123;&#36130;&#21153;&#26126;&#32454;&#39033;&#65311;</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 &#24230;&#25253;&#21578;&#24037;&#20855;&#20013;&#25552;&#20379;&#21738;&#20123;&#25253;&#21578;&#27169;&#26495;&#65311;"><span class="mt-icon-article-faq"></span>360 &#24230;&#25253;&#21578;&#24037;&#20855;&#20013;&#25552;&#20379;&#21738;&#20123;&#25253;&#21578;&#27169;&#26495;&#65311;</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 &#19968;&#33324;&#24120;&#35265;&#38382;&#39064;"><span class="mt-icon-article-faq"></span>Analytics 2.0 &#19968;&#33324;&#24120;&#35265;&#38382;&#39064;</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 &#30340;&#26435;&#38480;&#22914;&#20309;&#24037;&#20316;&#65311;"><span class="mt-icon-article-faq"></span>Analytics 2.0 &#30340;&#26435;&#38480;&#22914;&#20309;&#24037;&#20316;&#65311;</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&reg; &#38598;&#25104;&#23545;&#38468;&#20214;&#25110;&#20449;&#23553;&#26159;&#21542;&#26377;&#20219;&#20309;&#25991;&#20214;&#22823;&#23567;&#38480;&#21046;&#65311;"><span class="mt-icon-article-faq"></span>DocuSign&reg; &#38598;&#25104;&#23545;&#38468;&#20214;&#25110;&#20449;&#23553;&#26159;&#21542;&#26377;&#20219;&#20309;&#25991;&#20214;&#22823;&#23567;&#38480;&#21046;&#65311;</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 &#22270;&#26631;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>ERP &#22270;&#26631;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;</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 &#21516;&#27493;&#23458;&#25143;&#31471;&#22914;&#20309;&#20256;&#36755;&#25968;&#25454;&#65311;"><span class="mt-icon-article-faq"></span>hh2 &#21516;&#27493;&#23458;&#25143;&#31471;&#22914;&#20309;&#20256;&#36755;&#25968;&#25454;&#65311;</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 &#21516;&#27493;&#23458;&#25143;&#31471;&#22914;&#20309;&#23558; Procore &#36830;&#25509;&#21040; Sage 100 Contractor&#65311;"><span class="mt-icon-article-faq"></span>hh2 &#21516;&#27493;&#23458;&#25143;&#31471;&#22914;&#20309;&#23558; Procore &#36830;&#25509;&#21040; Sage 100 Contractor&#65311;</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 &#22914;&#20309;&#36830;&#25509;&#21040; Sage 300 CRE &#26381;&#21153;&#22120;&#65311;"><span class="mt-icon-article-faq"></span>hh2 &#22914;&#20309;&#36830;&#25509;&#21040; Sage 300 CRE &#26381;&#21153;&#22120;&#65311;</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 &#20013;&#30340;&#26629;&#26684;&#21644;&#30690;&#37327;&#20869;&#23481;&#26377;&#20309;&#21306;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>PDF &#20013;&#30340;&#26629;&#26684;&#21644;&#30690;&#37327;&#20869;&#23481;&#26377;&#20309;&#21306;&#21035;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-analytics-store-dates" title="Procore Analytics&#22914;&#20309;&#23384;&#20648;&#26085;&#26399;&#65311;"><span class="mt-icon-article-faq"></span>Procore Analytics&#22914;&#20309;&#23384;&#20648;&#26085;&#26399;&#65311;</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 &#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&ldquo;&#29992;&#25143;&#35282;&#33394;&rdquo;&#65311;"><span class="mt-icon-article-faq"></span>Procore Estimating &#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&ldquo;&#29992;&#25143;&#35282;&#33394;&rdquo;&#65311;</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 &#20013;&#19981;&#21516;&#30340; DocuSign&reg; &#27178;&#24133;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#20013;&#19981;&#21516;&#30340; DocuSign&reg; &#27178;&#24133;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;</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 &#20013;&#21464;&#26356;&#20107;&#20214;&#30340;&#40664;&#35748;&ldquo;&#33539;&#22260;&rdquo;&#36873;&#39033;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#20013;&#21464;&#26356;&#20107;&#20214;&#30340;&#40664;&#35748;&ldquo;&#33539;&#22260;&rdquo;&#36873;&#39033;&#26377;&#21738;&#20123;&#65311;</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 &#20013;&#21464;&#26356;&#20107;&#20214;&#30340;&#40664;&#35748;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#20013;&#21464;&#26356;&#20107;&#20214;&#30340;&#40664;&#35748;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;</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 &#20013;&#21464;&#26356;&#36890;&#30693;&#21333;&#30340;&#40664;&#35748;&#29366;&#24577;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#20013;&#21464;&#26356;&#36890;&#30693;&#21333;&#30340;&#40664;&#35748;&#29366;&#24577;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-standard-trades-are-available-in-procore" title="Procore &#20013;&#25552;&#20379;&#21738;&#20123;&#26631;&#20934;&#34892;&#19994;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#20013;&#25552;&#20379;&#21738;&#20123;&#26631;&#20934;&#34892;&#19994;&#65311;</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 &#20013;&#26356;&#26032;&#30340;&#20837;&#31449;&#30005;&#23376;&#37038;&#20214;&#36890;&#20449;&#35774;&#32622;&#20250;&#24433;&#21709;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#20013;&#26356;&#26032;&#30340;&#20837;&#31449;&#30005;&#23376;&#37038;&#20214;&#36890;&#20449;&#35774;&#32622;&#20250;&#24433;&#21709;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#65311;</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 &#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#31867;&#22411;&#30340;&#21457;&#31080;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#31867;&#22411;&#30340;&#21457;&#31080;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-settings-are-available-in-procore" title="Procore &#20013;&#26377;&#21738;&#20123;&#35774;&#32622;&#21487;&#29992;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#20013;&#26377;&#21738;&#20123;&#35774;&#32622;&#21487;&#29992;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-languages-are-available-in-procore" title="Procore &#20013;&#26377;&#21738;&#20123;&#35821;&#35328;&#21487;&#29992;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#20013;&#26377;&#21738;&#20123;&#35821;&#35328;&#21487;&#29992;&#65311;</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 &#20013;&#30340;&ldquo;&#25991;&#26723;&rdquo;&#21644;&ldquo;&#25991;&#26723;&#31649;&#29702;&rdquo;&#24037;&#20855;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#20013;&#30340;&ldquo;&#25991;&#26723;&rdquo;&#21644;&ldquo;&#25991;&#26723;&#31649;&#29702;&rdquo;&#24037;&#20855;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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 &#20013;&#30340;&ldquo;&#32852;&#31995;&#20154;&rdquo;&#26159;&#20160;&#20040;&#65311;&#21738;&#20123;&#39033;&#30446;&#24037;&#20855;&#25903;&#25345;&#27492;&#27010;&#24565;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#20013;&#30340;&ldquo;&#32852;&#31995;&#20154;&rdquo;&#26159;&#20160;&#20040;&#65311;&#21738;&#20123;&#39033;&#30446;&#24037;&#20855;&#25903;&#25345;&#27492;&#27010;&#24565;&#65311;</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 &#20013;&#30340;&#21738;&#20123;&#24037;&#20855;&#21517;&#31216;&#21644;&#26415;&#35821;&#23545;&#20110;&#24635;&#25215;&#21253;&#21830;&#12289;&#19994;&#20027;&#21644;&#19987;&#19994;&#25215;&#21253;&#21830;&#26159;&#19981;&#21516;&#30340;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#20013;&#30340;&#21738;&#20123;&#24037;&#20855;&#21517;&#31216;&#21644;&#26415;&#35821;&#23545;&#20110;&#24635;&#25215;&#21253;&#21830;&#12289;&#19994;&#20027;&#21644;&#19987;&#19994;&#25215;&#21253;&#21830;&#26159;&#19981;&#21516;&#30340;&#65311;</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 &#20013;&#30340;&#22320;&#22270;&#25903;&#25345;&#21738;&#20123;&#24037;&#20855;&#65311;"><span class="mt-icon-article-reference"></span>Procore &#20013;&#30340;&#22320;&#22270;&#25903;&#25345;&#21738;&#20123;&#24037;&#20855;&#65311;</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 &#20013;&#30340;&#23545;&#35805;&#24037;&#20855;&#30340;&#36890;&#30693;&#22914;&#20309;&#24037;&#20316;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#20013;&#30340;&#23545;&#35805;&#24037;&#20855;&#30340;&#36890;&#30693;&#22914;&#20309;&#24037;&#20316;&#65311;</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 &#20013;&#30340;&#36136;&#37327;&#21644;&#23433;&#20840;&#21435;&#21738;&#37324;&#20102;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#20013;&#30340;&#36136;&#37327;&#21644;&#23433;&#20840;&#21435;&#21738;&#37324;&#20102;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-submittals-numbered-in-procore" title="Procore &#20013;&#30340;&#36865;&#23457;&#22914;&#20309;&#32534;&#21495;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#20013;&#30340;&#36865;&#23457;&#22914;&#20309;&#32534;&#21495;&#65311;</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 &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#20013;&#30340;&#36890;&#35759;&#32452;&#21644;&#36890;&#35759;&#21517;&#21333;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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 &#20013;&#30340;&#39033;&#22914;&#20309;&#22312;&#22320;&#22270;&#19978;&#26174;&#31034;&#65311;"><span class="mt-icon-article-reference"></span>Procore &#20013;&#30340;&#39033;&#22914;&#20309;&#22312;&#22320;&#22270;&#19978;&#26174;&#31034;&#65311;</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 &#20013;&#30340;&#39033;&#30446;&#24037;&#20855;&#26377;&#21738;&#20123;&#35774;&#32622;&#21487;&#29992;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#20013;&#30340;&#39033;&#30446;&#24037;&#20855;&#26377;&#21738;&#20123;&#35774;&#32622;&#21487;&#29992;&#65311;</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 &#20013;&#30340;&#40664;&#35748;&#21512;&#32422;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#20013;&#30340;&#40664;&#35748;&#21512;&#32422;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;</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 &#20013;&#30340;&#40664;&#35748;&#26435;&#38480;&#32423;&#21035;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#20013;&#30340;&#40664;&#35748;&#26435;&#38480;&#32423;&#21035;&#26377;&#21738;&#20123;&#65311;</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 &#20013;&#30340;&#40664;&#35748;&#36865;&#23457;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#20013;&#30340;&#40664;&#35748;&#36865;&#23457;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;</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 &#20013;&#30340;&#40664;&#35748;&#36865;&#23457;&#31572;&#22797;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#20013;&#30340;&#40664;&#35748;&#36865;&#23457;&#31572;&#22797;&#26377;&#21738;&#20123;&#65311;</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 &#20013;&#30340;&#40664;&#35748;&#39033;&#30446;&#38454;&#27573;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#20013;&#30340;&#40664;&#35748;&#39033;&#30446;&#38454;&#27573;&#26159;&#20160;&#20040;&#65311;</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 &#20013;&#39640;&#32423;&#25628;&#32034;&#31526;&#21495;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#20013;&#39640;&#32423;&#25628;&#32034;&#31526;&#21495;&#26159;&#20160;&#20040;&#65311;</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 &#20250;&#23558;&#25105;&#30340;&#19981;&#21487;&#22635;&#20889; PDF &#36716;&#25442;&#20026;&#21487;&#22635;&#20889; PDF &#21527;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#20250;&#23558;&#25105;&#30340;&#19981;&#21487;&#22635;&#20889; PDF &#36716;&#25442;&#20026;&#21487;&#22635;&#20889; PDF &#21527;&#65311;</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 &#20309;&#26102;&#21521;&#21457;&#31080;&#32852;&#31995;&#20154;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#20309;&#26102;&#21521;&#21457;&#31080;&#32852;&#31995;&#20154;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;</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 &#20351;&#29992;&#20160;&#20040;&#21152;&#23494;&#26631;&#20934;&#26469;&#20445;&#25252;&#29992;&#25143;&#25968;&#25454;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#20351;&#29992;&#20160;&#20040;&#21152;&#23494;&#26631;&#20934;&#26469;&#20445;&#25252;&#29992;&#25143;&#25968;&#25454;&#65311;</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 &#20844;&#21496;&#30340;&#21738;&#20123;&#20445;&#38505;&#23383;&#27573;&#19982; Sage 300 CRE &#20379;&#24212;&#21830;&#21516;&#27493;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#20844;&#21496;&#30340;&#21738;&#20123;&#20445;&#38505;&#23383;&#27573;&#19982; Sage 300 CRE &#20379;&#24212;&#21830;&#21516;&#27493;&#65311;</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 &#21453;&#39304;&#35770;&#22363;&#19978;&#30340;&#19981;&#21516;&#29366;&#24577;&#24847;&#21619;&#30528;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#21453;&#39304;&#35770;&#22363;&#19978;&#30340;&#19981;&#21516;&#29366;&#24577;&#24847;&#21619;&#30528;&#20160;&#20040;&#65311;</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 &#21457;&#31080;&#30340;&#40664;&#35748;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#21457;&#31080;&#30340;&#40664;&#35748;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;</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 &#21457;&#36865;&#30340;&#30005;&#23376;&#37038;&#20214;&#20013;&#26377;&#20160;&#20040;&#20869;&#23481;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#21457;&#36865;&#30340;&#30005;&#23376;&#37038;&#20214;&#20013;&#26377;&#20160;&#20040;&#20869;&#23481;&#65311;</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 &#21644; Sage 100 Contractor &#20043;&#38388;&#21516;&#27493;&#21738;&#20123;&#25968;&#25454;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#21644; Sage 100 Contractor &#20043;&#38388;&#21516;&#27493;&#21738;&#20123;&#25968;&#25454;&#65311;</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 &#22312;&#21738;&#37324;&#20197;&#21450;&#22914;&#20309;&#23384;&#20648;&#23458;&#25143;&#20449;&#24687;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#22312;&#21738;&#37324;&#20197;&#21450;&#22914;&#20309;&#23384;&#20648;&#23458;&#25143;&#20449;&#24687;&#65311;</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 &#22320;&#22270;&#26377;&#21738;&#20123;&#21487;&#35265;&#24615;&#35774;&#32622;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#22320;&#22270;&#26377;&#21738;&#20123;&#21487;&#35265;&#24615;&#35774;&#32622;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-procore-assign-numbers-to-rfis" title="Procore &#22914;&#20309;&#20026; RFI &#20998;&#37197;&#32534;&#21495;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#22914;&#20309;&#20026; RFI &#20998;&#37197;&#32534;&#21495;&#65311;</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 &#22914;&#20309;&#30830;&#23450;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#30340;&#26368;&#26032;&#25991;&#26723;&#29256;&#26412;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#22914;&#20309;&#30830;&#23450;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#30340;&#26368;&#26032;&#25991;&#26723;&#29256;&#26412;&#65311;</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 &#22914;&#20309;&#33258;&#21160;&#23436;&#25104;&#19978;&#28216; &#21457;&#31080;&#19978;&#30340;&#37329;&#39069;&#65311; &#65288;&#26087;&#29256;&#65289;"><span class="mt-icon-article-faq"></span>Procore &#22914;&#20309;&#33258;&#21160;&#23436;&#25104;&#19978;&#28216; &#21457;&#31080;&#19978;&#30340;&#37329;&#39069;&#65311; &#65288;&#26087;&#29256;&#65289;</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 &#22914;&#20309;&#33258;&#21160;&#23436;&#25104;&#19994;&#20027; &#21457;&#31080;&#19978;&#30340;&#37329;&#39069;&#65311; &#65288;&#27979;&#35797;&#29256;&#65289;"><span class="mt-icon-article-faq"></span>Procore &#22914;&#20309;&#33258;&#21160;&#23436;&#25104;&#19994;&#20027; &#21457;&#31080;&#19978;&#30340;&#37329;&#39069;&#65311; &#65288;&#27979;&#35797;&#29256;&#65289;</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 &#22914;&#20309;&#35745;&#31639;&#21457;&#31080;&#30340;&ldquo;&#24403;&#21069;&#21040;&#26399;&#24212;&#20184;&#27454;&rdquo;&#37329;&#39069;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#22914;&#20309;&#35745;&#31639;&#21457;&#31080;&#30340;&ldquo;&#24403;&#21069;&#21040;&#26399;&#24212;&#20184;&#27454;&rdquo;&#37329;&#39069;&#65311;</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 &#22914;&#20309;&#35745;&#31639;&#21464;&#26356;&#20107;&#20214;&#20013;&#30340;&#36229;&#25903;/&#32467;&#20313;&#20540;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#22914;&#20309;&#35745;&#31639;&#21464;&#26356;&#20107;&#20214;&#20013;&#30340;&#36229;&#25903;/&#32467;&#20313;&#20540;&#65311;</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 &#24037;&#20855;&#20013;&#30340;&#33258;&#23450;&#20041;&#23383;&#27573;&#26377;&#21738;&#20123;&#23383;&#27573;&#31867;&#22411;&#21487;&#29992;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#24037;&#20855;&#20013;&#30340;&#33258;&#23450;&#20041;&#23383;&#27573;&#26377;&#21738;&#20123;&#23383;&#27573;&#31867;&#22411;&#21487;&#29992;&#65311;</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 &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#19978;&#24050;&#35748;&#39046;&#21644;&#26410;&#35748;&#39046;&#30340;&#20225;&#19994;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#19978;&#24050;&#35748;&#39046;&#21644;&#26410;&#35748;&#39046;&#30340;&#20225;&#19994;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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 &#25903;&#25345;&#21738;&#20123; Asta Powerproject &#25991;&#20214;&#26684;&#24335;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#25903;&#25345;&#21738;&#20123; Asta Powerproject &#25991;&#20214;&#26684;&#24335;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-web-browsers-are-supported-by-procore" title="Procore &#25903;&#25345;&#21738;&#20123; Web &#27983;&#35272;&#22120;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#25903;&#25345;&#21738;&#20123; Web &#27983;&#35272;&#22120;&#65311;</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 &#25903;&#25345;&#21738;&#20123;&#21333;&#28857;&#30331;&#24405;&#36523;&#20221;&#25552;&#20379;&#21830;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#25903;&#25345;&#21738;&#20123;&#21333;&#28857;&#30331;&#24405;&#36523;&#20221;&#25552;&#20379;&#21830;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-weather-providers-are-supported-by-procore" title="Procore &#25903;&#25345;&#21738;&#20123;&#22825;&#27668;&#39044;&#25253;&#25552;&#20379;&#21830;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#25903;&#25345;&#21738;&#20123;&#22825;&#27668;&#39044;&#25253;&#25552;&#20379;&#21830;&#65311;</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 &#25903;&#25345;&#21738;&#20123;&#29256;&#26412;&#30340; Microsoft Project&#65311;"><span class="mt-icon-article-faq"></span>Procore &#25903;&#25345;&#21738;&#20123;&#29256;&#26412;&#30340; Microsoft Project&#65311;</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 &#25991;&#26723;&#24037;&#20855;&#20013;&#30340; Office 365 &#38598;&#25104;&#22914;&#20309;&#36816;&#34892;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#25991;&#26723;&#24037;&#20855;&#20013;&#30340; Office 365 &#38598;&#25104;&#22914;&#20309;&#36816;&#34892;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-types" title="Procore &#26377;&#21738;&#20123;&#40664;&#35748;&#25104;&#26412;&#31867;&#22411;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#26377;&#21738;&#20123;&#40664;&#35748;&#25104;&#26412;&#31867;&#22411;&#65311;</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 &#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340; WBS &#20013;&ldquo;&#25104;&#26412;&#32534;&#21495;&rdquo;&#32454;&#20998;&#20013;&#30340;&ldquo;&#20998;&#37096;&rdquo;&#22312;&#21738;&#37324;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340; WBS &#20013;&ldquo;&#25104;&#26412;&#32534;&#21495;&rdquo;&#32454;&#20998;&#20013;&#30340;&ldquo;&#20998;&#37096;&rdquo;&#22312;&#21738;&#37324;&#65311;</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 &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#26159;&#20160;&#20040;&#65311;</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 &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#32467;&#26500;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#32467;&#26500;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#19968;&#33324;&#36890;&#20449;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340;&ldquo;&#19968;&#33324;&#36890;&#20449;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#20256;&#36755;&#35760;&#24405;&rdquo;&#27169;&#26495;&#36890;&#20449; &#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340;&ldquo;&#20256;&#36755;&#35760;&#24405;&rdquo;&#27169;&#26495;&#36890;&#20449; &#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#20449;&#20989;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340;&ldquo;&#20449;&#20989;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#20844;&#21578;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340;&ldquo;&#20844;&#21578;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#21464;&#26356;&#35831;&#27714;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340;&ldquo;&#21464;&#26356;&#35831;&#27714;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#23458;&#25143;&#25351;&#31034;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340;&ldquo;&#23458;&#25143;&#25351;&#31034;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#24310;&#26399;&#30003;&#35831;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340;&ldquo;&#24310;&#26399;&#30003;&#35831;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#24310;&#36831;&#36890;&#30693;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340;&ldquo;&#24310;&#36831;&#36890;&#30693;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#24320;&#24037;&#36890;&#30693;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340;&ldquo;&#24320;&#24037;&#36890;&#30693;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#24847;&#21521;&#20070;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340;&ldquo;&#24847;&#21521;&#20070;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#25187;&#27454;&#36890;&#30693;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340;&ldquo;&#25187;&#27454;&#36890;&#30693;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#25552;&#26089;&#35686;&#21578;&#36890;&#30693;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340;&ldquo;&#25552;&#26089;&#35686;&#21578;&#36890;&#30693;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#26448;&#26009;&#35831;&#27714;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340;&ldquo;&#26448;&#26009;&#35831;&#27714;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#29616;&#22330;&#25351;&#31034;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340;&ldquo;&#29616;&#22330;&#25351;&#31034;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#32422;&#26463;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340;&ldquo;&#32422;&#26463;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#32463;&#39564;&#25945;&#35757;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340;&ldquo;&#32463;&#39564;&#25945;&#35757;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#32531;&#35299;&#35745;&#21010;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340;&ldquo;&#32531;&#35299;&#35745;&#21010;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#35768;&#21487;&#35831;&#27714;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340;&ldquo;&#35768;&#21487;&#35831;&#27714;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#38468;&#24405;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340;&ldquo;&#38468;&#24405;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#39033;&#30446;&#35831;&#27714;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340;&ldquo;&#39033;&#30446;&#35831;&#27714;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&ldquo;&#39118;&#38505;&#35782;&#21035;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340;&ldquo;&#39118;&#38505;&#35782;&#21035;&rdquo;&#27169;&#26495;&#36890;&#20449;&#31867;&#22411;&#30340;&#40664;&#35748;&#23383;&#27573;&#38598;&#37197;&#32622;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&#20027;&#21015;&#34920;&#20013;&#21253;&#21547;&#21738;&#20123;&#35745;&#37327;&#21333;&#20301;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340;&#20027;&#21015;&#34920;&#20013;&#21253;&#21547;&#21738;&#20123;&#35745;&#37327;&#21333;&#20301;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-product-categories" title="Procore &#30340;&#20135;&#21697;&#31867;&#21035;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340;&#20135;&#21697;&#31867;&#21035;&#26377;&#21738;&#20123;&#65311;</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 &#30340;&#21333;&#28857;&#30331;&#24405;&#38598;&#25104;&#25903;&#25345;&#21333;&#20010;&#22495;&#36824;&#26159;&#22810;&#20010;&#22495;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340;&#21333;&#28857;&#30331;&#24405;&#38598;&#25104;&#25903;&#25345;&#21333;&#20010;&#22495;&#36824;&#26159;&#22810;&#20010;&#22495;&#65311;</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 &#30340;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#20013;&#30340;&#24179;&#38754;&#32454;&#20998;&#21644;&#20998;&#23618;&#32454;&#20998;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#20013;&#30340;&#24179;&#38754;&#32454;&#20998;&#21644;&#20998;&#23618;&#32454;&#20998;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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 &#30340;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#20013;&#30340;&#40664;&#35748;&#32454;&#20998;&#21644;&#33258;&#23450;&#20041;&#32454;&#20998;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#20013;&#30340;&#40664;&#35748;&#32454;&#20998;&#21644;&#33258;&#23450;&#20041;&#32454;&#20998;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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 &#30340;&#24037;&#26102;&#27169;&#22359;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340;&#24037;&#26102;&#27169;&#22359;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-data-backup-strategy" title="Procore &#30340;&#25968;&#25454;&#22791;&#20221;&#31574;&#30053;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340;&#25968;&#25454;&#22791;&#20221;&#31574;&#30053;&#26159;&#20160;&#20040;&#65311;</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 &#30340;&#29992;&#25143;&#23548;&#20837;&#21644;&#20379;&#24212;&#21830;/&#20844;&#21496;&#23548;&#20837;&#27169;&#26495;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340;&#29992;&#25143;&#23548;&#20837;&#21644;&#20379;&#24212;&#21830;/&#20844;&#21496;&#23548;&#20837;&#27169;&#26495;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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 &#30340;&#40664;&#35748;&#21464;&#26356;&#31867;&#22411;&#21644;&#21464;&#26356;&#21407;&#22240;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#30340;&#40664;&#35748;&#21464;&#26356;&#31867;&#22411;&#21644;&#21464;&#26356;&#21407;&#22240;&#26159;&#20160;&#20040;&#65311;</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 &#35748;&#35777;&#27979;&#39564;&#26159;&#21542;&#26377;&#26368;&#20302;&#21450;&#26684;&#20998;&#25968;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#35748;&#35777;&#27979;&#39564;&#26159;&#21542;&#26377;&#26368;&#20302;&#21450;&#26684;&#20998;&#25968;&#65311;</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 &#39044;&#31639;&#24037;&#20855;&#20013;&#30340;&ldquo;&#39044;&#31639; ROM&rdquo;&#21015;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#39044;&#31639;&#24037;&#20855;&#20013;&#30340;&ldquo;&#39044;&#31639; ROM&rdquo;&#21015;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-codes" title="Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-faq"></span>Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;</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 &#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-faq"></span>RFI &#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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 &#24037;&#20855;&#20309;&#26102;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;"><span class="mt-icon-article-faq"></span>RFI &#24037;&#20855;&#20309;&#26102;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;</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 &#38598;&#25104;&#22914;&#20309;&#36830;&#25509; Procore &#19982; Viewpoint&reg; Vista&trade;&#65311;"><span class="mt-icon-article-faq"></span>Ryvit &#38598;&#25104;&#22914;&#20309;&#36830;&#25509; Procore &#19982; Viewpoint&reg; Vista&trade;&#65311;</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 &#30340; hh2 &#21516;&#27493;&#36807;&#31243;&#26159;&#21542;&#38656;&#35201;&#32456;&#31471;&#26381;&#21153;&#22120;&#65311;"><span class="mt-icon-article-faq"></span>Sage 100 Contractor &#30340; hh2 &#21516;&#27493;&#36807;&#31243;&#26159;&#21542;&#38656;&#35201;&#32456;&#31471;&#26381;&#21153;&#22120;&#65311;</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 &#30340; hh2 &#21516;&#27493;&#27969;&#31243;&#26159;&#21542;&#38656;&#35201;&#32456;&#31471;&#26381;&#21153;&#22120;&#65311;"><span class="mt-icon-article-faq"></span>Sage 300 CRE &#30340; hh2 &#21516;&#27493;&#27969;&#31243;&#26159;&#21542;&#38656;&#35201;&#32456;&#31471;&#26381;&#21153;&#22120;&#65311;</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&reg; &#21644; Procore &#20043;&#38388;&#21516;&#27493;&#20102;&#21738;&#20123;&#25968;&#25454;&#65311;"><span class="mt-icon-article-faq"></span>Sage 300 CRE&reg; &#21644; Procore &#20043;&#38388;&#21516;&#27493;&#20102;&#21738;&#20123;&#25968;&#25454;&#65311;</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 &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#21644; IdP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>SP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#21644; IdP &#21457;&#36215;&#30340;&#21333;&#28857;&#30331;&#24405;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;</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 &#35777;&#20070;&#21319;&#32423;&#23545;&#29992;&#25143;&#26377;&#20309;&#24433;&#21709;&#65311;"><span class="mt-icon-article-faq"></span>X.509 &#35777;&#20070;&#21319;&#32423;&#23545;&#29992;&#25143;&#26377;&#20309;&#24433;&#21709;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.B8.8A"></span><h5 title="&#19978;">&#19978;</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="&#19978;&#20256;&#21040;&#36865;&#23457;&#24037;&#20855;&#30340; PDF &#22914;&#20309;&#21463;&#25991;&#20214;&#38480;&#21046;&#24433;&#21709;&#65311;"><span class="mt-icon-article-faq"></span>&#19978;&#20256;&#21040;&#36865;&#23457;&#24037;&#20855;&#30340; PDF &#22914;&#20309;&#21463;&#25991;&#20214;&#38480;&#21046;&#24433;&#21709;&#65311;</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="&#19978;&#20256;&#22270;&#32440;&#26102;&#65292;Procore &#21487;&#20197;&#33258;&#21160;&#22635;&#20805;&#21738;&#20123;&#23383;&#27573;&#65311;"><span class="mt-icon-article-faq"></span>&#19978;&#20256;&#22270;&#32440;&#26102;&#65292;Procore &#21487;&#20197;&#33258;&#21160;&#22635;&#20805;&#21738;&#20123;&#23383;&#27573;&#65311;</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="&#19978;&#20256;&#35268;&#33539;&#26102;&#65292;Procore &#21487;&#20197;&#33258;&#21160;&#22635;&#20805;&#21738;&#20123;&#23383;&#27573;&#65311;"><span class="mt-icon-article-faq"></span>&#19978;&#20256;&#35268;&#33539;&#26102;&#65292;Procore &#21487;&#20197;&#33258;&#21160;&#22635;&#20805;&#21738;&#20123;&#23383;&#27573;&#65311;</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="&#19978;&#28216;&#21327;&#20316;&#32773;&#21487;&#20197;&#22312;&#21738;&#19968;&#23618;&#25209;&#20934;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;"><span class="mt-icon-article-faq"></span>&#19978;&#28216;&#21327;&#20316;&#32773;&#21487;&#20197;&#22312;&#21738;&#19968;&#23618;&#25209;&#20934;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.B8.8E"></span><h5 title="&#19982;">&#19982;</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="&#19982; Procore &#38598;&#25104;&#22914;&#20309;&#35775;&#38382;&#20844;&#21496;&#30340;&#25968;&#25454;&#65311;"><span class="mt-icon-article-faq"></span>&#19982; Procore &#38598;&#25104;&#22914;&#20309;&#35775;&#38382;&#20844;&#21496;&#30340;&#25968;&#25454;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-roles-associated-with-workflows" title="&#19982;&#24037;&#20316;&#27969;&#20851;&#32852;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#35282;&#33394;&#65311;"><span class="mt-icon-article-faq"></span>&#19982;&#24037;&#20316;&#27969;&#20851;&#32852;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#35282;&#33394;&#65311;</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="&#19982;&#36164;&#28304;&#35268;&#21010;&#21516;&#27493;&#25968;&#25454;&#26102;&#22914;&#20309;&#38450;&#27490;&#37325;&#22797;&#39033;&#30446;&#65311;"><span class="mt-icon-article-faq"></span>&#19982;&#36164;&#28304;&#35268;&#21010;&#21516;&#27493;&#25968;&#25454;&#26102;&#22914;&#20309;&#38450;&#27490;&#37325;&#22797;&#39033;&#30446;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.B8.AA"></span><h5 title="&#20010;">&#20010;</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="&#20010;&#20154;&#22270;&#32440;&#26631;&#35760;&#19982;&#24050;&#21457;&#24067;&#22270;&#32440;&#26631;&#35760;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>&#20010;&#20154;&#22270;&#32440;&#26631;&#35760;&#19982;&#24050;&#21457;&#24067;&#22270;&#32440;&#26631;&#35760;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.B8.BA"></span><h5 title="&#20026;">&#20026;</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="&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#32570;&#23569;&#25105;&#30340; Procore &#39033;&#30446;&#65311;</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="&#20026;&#20160;&#20040; Planroom &#20013;&#27809;&#26377;&#25105;&#30340;&#25237;&#26631;&#25991;&#20214;&#21253;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040; Planroom &#20013;&#27809;&#26377;&#25105;&#30340;&#25237;&#26631;&#25991;&#20214;&#21253;&#65311;</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="&#20026;&#20160;&#20040; Procore Drive &#26700;&#38754;&#24555;&#25463;&#26041;&#24335;&#19981;&#36215;&#20316;&#29992;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040; Procore Drive &#26700;&#38754;&#24555;&#25463;&#26041;&#24335;&#19981;&#36215;&#20316;&#29992;&#65311;</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="&#20026;&#20160;&#20040; Procore &#20013;&#27169;&#22411;&#30340;&#25991;&#20214;&#22823;&#23567;&#20250;&#22686;&#21152;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040; Procore &#20013;&#27169;&#22411;&#30340;&#25991;&#20214;&#22823;&#23567;&#20250;&#22686;&#21152;&#65311;</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="&#20026;&#20160;&#20040; Procore &#20013;&#32570;&#23569;&#23545; Sage &#25968;&#25454;&#24211;&#30340;&#26368;&#36817;&#26356;&#25913;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040; Procore &#20013;&#32570;&#23569;&#23545; Sage &#25968;&#25454;&#24211;&#30340;&#26368;&#36817;&#26356;&#25913;&#65311;</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="&#20026;&#20160;&#20040; Procore &#20174; procoretech.com &#25913;&#20026; app.procore.com&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040; Procore &#20174; procoretech.com &#25913;&#20026; app.procore.com&#65311;</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="&#20026;&#20160;&#20040; Procore &#20572;&#27490;&#25903;&#25345;&#26087;&#29256;&#26412;&#30340; iOS &#21644; Android&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040; Procore &#20572;&#27490;&#25903;&#25345;&#26087;&#29256;&#26412;&#30340; iOS &#21644; Android&#65311;</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="&#20026;&#20160;&#20040; Procore &#35748;&#35777;&#35838;&#31243;&#30340;&#23436;&#25104;&#30334;&#20998;&#27604;&#20302;&#20110; 100%&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040; Procore &#35748;&#35777;&#35838;&#31243;&#30340;&#23436;&#25104;&#30334;&#20998;&#27604;&#20302;&#20110; 100%&#65311;</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="&#20026;&#20160;&#20040;&quot;&#28155;&#21152;&#35270;&#35273;&#20803;&#32032;&quot;&#25353;&#38062;&#22312;&#21333;&#20010;&#24037;&#20855;&#25253;&#21578;&#19978;&#19981;&#21487;&#29992;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&quot;&#28155;&#21152;&#35270;&#35273;&#20803;&#32032;&quot;&#25353;&#38062;&#22312;&#21333;&#20010;&#24037;&#20855;&#25253;&#21578;&#19978;&#19981;&#21487;&#29992;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-was-the-procore-fundamentals-training-course-deprecated" title="&#20026;&#20160;&#20040;&ldquo;Procore &#22522;&#30784;&#30693;&#35782;&rdquo;&#22521;&#35757;&#35838;&#31243;&#34987;&#24323;&#29992;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&ldquo;Procore &#22522;&#30784;&#30693;&#35782;&rdquo;&#22521;&#35757;&#35838;&#31243;&#34987;&#24323;&#29992;&#65311;</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="&#20026;&#20160;&#20040;&ldquo;&#21457;&#36865;&#21040; ERP&rdquo;&#25353;&#38062;&#21464;&#26263;&#24182;&#19988;&#22312;&#39033;&#30446;&#21019;&#24314;&#21161;&#25163;&#20013;&#19981;&#21487;&#29992;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&ldquo;&#21457;&#36865;&#21040; ERP&rdquo;&#25353;&#38062;&#21464;&#26263;&#24182;&#19988;&#22312;&#39033;&#30446;&#21019;&#24314;&#21161;&#25163;&#20013;&#19981;&#21487;&#29992;&#65311;</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="&#20026;&#20160;&#20040;&ldquo;&#25105;&#30340;&#26410;&#23436;&#25104;&#39033;&rdquo;&#21015;&#34920;&#19981;&#26174;&#31034;&#24050;&#20998;&#37197;&#32473;&#25105;&#30340;&#20219;&#21153;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&ldquo;&#25105;&#30340;&#26410;&#23436;&#25104;&#39033;&rdquo;&#21015;&#34920;&#19981;&#26174;&#31034;&#24050;&#20998;&#37197;&#32473;&#25105;&#30340;&#20219;&#21153;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-were-the-deep-dive-training-courses-deprecated" title="&#20026;&#20160;&#20040;&ldquo;&#28145;&#20837;&#30740;&#31350;&#22521;&#35757;&rdquo;&#35838;&#31243;&#34987;&#24323;&#29992;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&ldquo;&#28145;&#20837;&#30740;&#31350;&#22521;&#35757;&rdquo;&#35838;&#31243;&#34987;&#24323;&#29992;&#65311;</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="&#20026;&#20160;&#20040;&#19979;&#36733; Procore Drive &#26102;&#20986;&#38169;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#19979;&#36733; Procore Drive &#26102;&#20986;&#38169;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-delete-items-in-procore" title="&#20026;&#20160;&#20040;&#19981;&#33021;&#22312; Procore &#20013;&#21024;&#38500;&#39033;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#19981;&#33021;&#22312; Procore &#20013;&#21024;&#38500;&#39033;&#65311;</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="&#20026;&#20160;&#20040;&#19981;&#33021;&#26356;&#25913;&#22825;&#27668;&#23548;&#33268;&#30340;&#24310;&#35823;&#25110;&#35813;&#34892;&#19978;&#30340;&#20219;&#20309;&#26694;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#19981;&#33021;&#26356;&#25913;&#22825;&#27668;&#23548;&#33268;&#30340;&#24310;&#35823;&#25110;&#35813;&#34892;&#19978;&#30340;&#20219;&#20309;&#26694;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-receiving-procore-emails-at-night" title="&#20026;&#20160;&#20040;&#20250;&#22312;&#26202;&#19978;&#25910;&#21040; Procore &#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#20250;&#22312;&#26202;&#19978;&#25910;&#21040; Procore &#30005;&#23376;&#37038;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-receiving-emails-from-procore" title="&#20026;&#20160;&#20040;&#20250;&#25910;&#21040; Procore &#30340;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#20250;&#25910;&#21040; Procore &#30340;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#20026;&#20160;&#20040;&#21024;&#38500;&#25353;&#38062;&#22312; Procore Drive &#30340;&#36827;&#24230;&#35745;&#21010;&#24037;&#20855;&#20013;&#21464;&#26263;&#19988;&#19981;&#21487;&#29992;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#21024;&#38500;&#25353;&#38062;&#22312; Procore Drive &#30340;&#36827;&#24230;&#35745;&#21010;&#24037;&#20855;&#20013;&#21464;&#26263;&#19988;&#19981;&#21487;&#29992;&#65311;</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="&#20026;&#20160;&#20040;&#22312; Procore &#20013;&#26597;&#30475;&#27169;&#22411;&#26102;&#65292;&#27169;&#22411;&#19981;&#26174;&#31034;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#22312; Procore &#20013;&#26597;&#30475;&#27169;&#22411;&#26102;&#65292;&#27169;&#22411;&#19981;&#26174;&#31034;&#65311;</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="&#20026;&#20160;&#20040;&#22312;&ldquo;&#25105;&#30340;&#20010;&#20154;&#36164;&#26009;&#35774;&#32622;&rdquo;&#20013;&#30475;&#19981;&#21040;&ldquo;&#25910;&#34255;&#22841;&rdquo;&#26631;&#31614;&#39029;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#22312;&ldquo;&#25105;&#30340;&#20010;&#20154;&#36164;&#26009;&#35774;&#32622;&rdquo;&#20013;&#30475;&#19981;&#21040;&ldquo;&#25910;&#34255;&#22841;&rdquo;&#26631;&#31614;&#39029;&#65311;</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="&#20026;&#20160;&#20040;&#22312;&#20351;&#29992;&#26631;&#35760;&#24037;&#20855;&#21518;&#20250;&#21019;&#24314;&#35270;&#28857;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#22312;&#20351;&#29992;&#26631;&#35760;&#24037;&#20855;&#21518;&#20250;&#21019;&#24314;&#35270;&#28857;&#65311;</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="&#20026;&#20160;&#20040;&#22312;&#25105;&#30340; LinkedIn &#20010;&#20154;&#36164;&#26009;&#20013;&#23558;&ldquo;Procore&rdquo;&#20316;&#20026;&#21487;&#35748;&#21487;&#30340;&#25216;&#33021;&#24456;&#26377;&#20215;&#20540;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#22312;&#25105;&#30340; LinkedIn &#20010;&#20154;&#36164;&#26009;&#20013;&#23558;&ldquo;Procore&rdquo;&#20316;&#20026;&#21487;&#35748;&#21487;&#30340;&#25216;&#33021;&#24456;&#26377;&#20215;&#20540;&#65311;</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="&#20026;&#20160;&#20040;&#22312;&#26597;&#30475;&#35748;&#35777;&#35838;&#31243;&#26102;&#20250;&#25910;&#21040;&ldquo;&#32570;&#23569;&#36523;&#20221;&#39564;&#35777; Cookie&rdquo;&#38169;&#35823;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#22312;&#26597;&#30475;&#35748;&#35777;&#35838;&#31243;&#26102;&#20250;&#25910;&#21040;&ldquo;&#32570;&#23569;&#36523;&#20221;&#39564;&#35777; Cookie&rdquo;&#38169;&#35823;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#20174;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#23548;&#20986;&#39033;&#30446;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#20174;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#23548;&#20986;&#39033;&#30446;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#20851;&#38381;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#30340;&#26576;&#20123;&#25991;&#26723;&quot;&#31867;&#22411;&quot;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#20851;&#38381;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#30340;&#26576;&#20123;&#25991;&#26723;&quot;&#31867;&#22411;&quot;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-wbs-custom-segments" title="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21019;&#24314; WBS &#33258;&#23450;&#20041;&#32454;&#20998;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21019;&#24314; WBS &#33258;&#23450;&#20041;&#32454;&#20998;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21024;&#38500;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#30340;&#26576;&#20123;&#20445;&#23384;&#30340;&#35270;&#22270;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21024;&#38500;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#30340;&#26576;&#20123;&#20445;&#23384;&#30340;&#35270;&#22270;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312; Navisworks&reg; &#20013;&#20351;&#29992;&#20113;&#32418;&#32447;&#24037;&#20855;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312; Navisworks&reg; &#20013;&#20351;&#29992;&#20113;&#32418;&#32447;&#24037;&#20855;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312; WBS &#20013;&#20572;&#29992;&#25104;&#26412;&#31867;&#22411;&#12289;&#25104;&#26412;&#32534;&#21495;&#25110;&#23376;&#20316;&#19994;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312; WBS &#20013;&#20572;&#29992;&#25104;&#26412;&#31867;&#22411;&#12289;&#25104;&#26412;&#32534;&#21495;&#25110;&#23376;&#20316;&#19994;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312;&#20250;&#35758;&#24037;&#20855;&#20013;&#21019;&#24314;&#21518;&#32493;&#20250;&#35758;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312;&#20250;&#35758;&#24037;&#20855;&#20013;&#21019;&#24314;&#21518;&#32493;&#20250;&#35758;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#23637;&#24320;&ldquo;&#20013;&#26631;&#20540;&rdquo;&#34892;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#23637;&#24320;&ldquo;&#20013;&#26631;&#20540;&rdquo;&#34892;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#23558; Procore &#24037;&#20855;&#28155;&#21152;&#21040;&#25910;&#34255;&#22841;&#21015;&#34920;&#20013;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#23558; Procore &#24037;&#20855;&#28155;&#21152;&#21040;&#25910;&#34255;&#22841;&#21015;&#34920;&#20013;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#32534;&#36753;&#25110;&#21024;&#38500;&ldquo;&#33719;&#25209;&rdquo;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#32534;&#36753;&#25110;&#21024;&#38500;&ldquo;&#33719;&#25209;&rdquo;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#20204;&#39033;&#30446;&#30340;&#26576;&#20123; RFI &#32534;&#21495;&#26377;&#20004;&#20010;&#21069;&#32512;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#20204;&#39033;&#30446;&#30340;&#26576;&#20123; RFI &#32534;&#21495;&#26377;&#20004;&#20010;&#21069;&#32512;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#21487;&#20197;&#26597;&#30475;&#21512;&#32422;&#24037;&#20855;&#20294;&#30475;&#19981;&#21040;&#20219;&#20309;&#21512;&#32422;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#21487;&#20197;&#26597;&#30475;&#21512;&#32422;&#24037;&#20855;&#20294;&#30475;&#19981;&#21040;&#20219;&#20309;&#21512;&#32422;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&ldquo;&#21516;&#27493;&rdquo;&#25110;&ldquo;&#21047;&#26032;&rdquo;&#25353;&#38062;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&ldquo;&#21516;&#27493;&rdquo;&#25110;&ldquo;&#21047;&#26032;&rdquo;&#25353;&#38062;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25509;&#21463;/&#25298;&#32477;&#36873;&#39033;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312; Procore Imports &#24212;&#29992;&#31243;&#24207;&#20013;&#25910;&#21040;&#38169;&#35823;&#28040;&#24687;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#22312; Procore Imports &#24212;&#29992;&#31243;&#24207;&#20013;&#25910;&#21040;&#38169;&#35823;&#28040;&#24687;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#20351;&#29992; SSO &#30331;&#24405;&#26102;&#25910;&#21040;&ldquo;&#26410;&#21457;&#29616;&#26377;&#29992;&#25143;&#20351;&#29992;&#32473;&#23450;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&rdquo;&#38169;&#35823;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#20351;&#29992; SSO &#30331;&#24405;&#26102;&#25910;&#21040;&ldquo;&#26410;&#21457;&#29616;&#26377;&#29992;&#25143;&#20351;&#29992;&#32473;&#23450;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&rdquo;&#38169;&#35823;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#23558;&#25991;&#20214;&#20851;&#32852;&#21040;&#25105;&#30340;&#39033;&#30446;&#21518;&#30475;&#19981;&#21040;&#25105;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#23558;&#25991;&#20214;&#20851;&#32852;&#21040;&#25105;&#30340;&#39033;&#30446;&#21518;&#30475;&#19981;&#21040;&#25105;&#30340;&#38382;&#39064;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#23581;&#35797;&#23558;&#25968;&#25454;&#23548;&#20986;&#21040; Sage 300 CRE &#26102;&#30475;&#21040;&#38169;&#35823;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#23581;&#35797;&#23558;&#25968;&#25454;&#23548;&#20986;&#21040; Sage 300 CRE &#26102;&#30475;&#21040;&#38169;&#35823;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-am-i-having-problems-playing-training-videos" title="&#20026;&#20160;&#20040;&#25105;&#22312;&#25773;&#25918;&#22521;&#35757;&#35270;&#39057;&#26102;&#36935;&#21040;&#38382;&#39064;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#25773;&#25918;&#22521;&#35757;&#35270;&#39057;&#26102;&#36935;&#21040;&#38382;&#39064;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30475;&#19981;&#21040;&#21512;&#21516;&#23460;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30475;&#19981;&#21040;&#21512;&#21516;&#23460;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30475;&#19981;&#21040;&#25237;&#26631;&#23460;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30475;&#19981;&#21040;&#25237;&#26631;&#23460;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#35270;&#28857;&#23548;&#20837;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25105;&#30340;&#25152;&#26377;&#35270;&#28857;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#35270;&#28857;&#23548;&#20837;&#24037;&#20855;&#20013;&#30475;&#19981;&#21040;&#25105;&#30340;&#25152;&#26377;&#35270;&#28857;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#35748;&#35777;&#20998;&#26512;&#20013;&#30475;&#19981;&#21040;&#25105;&#30340;&#26576;&#20301;&#29992;&#25143;&#65311;"><span class="mt-icon-article-tutorial"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#35748;&#35777;&#20998;&#26512;&#20013;&#30475;&#19981;&#21040;&#25105;&#30340;&#26576;&#20301;&#29992;&#25143;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#22312;&#39033;&#30446;&#20013;&#30475;&#19981;&#21040;&#25152;&#26377;&#25910;&#34255;&#30340;&#24037;&#20855;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#22312;&#39033;&#30446;&#20013;&#30475;&#19981;&#21040;&#25152;&#26377;&#25910;&#34255;&#30340;&#24037;&#20855;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#26080;&#26435;&#26597;&#30475;&#36164;&#28304;&#35268;&#21010;&#24037;&#20855;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#26435;&#26597;&#30475;&#36164;&#28304;&#35268;&#21010;&#24037;&#20855;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#20174; Procore &#19979;&#36733;&#21644;&#25171;&#24320; .ZIP &#25991;&#20214;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#20174; Procore &#19979;&#36733;&#21644;&#25171;&#24320; .ZIP &#25991;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-a-change-order" title="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-or-activate-procore-projects" title="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#25110;&#28608;&#27963; Procore &#39033;&#30446;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#21019;&#24314;&#25110;&#28608;&#27963; Procore &#39033;&#30446;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#30331;&#24405; Procore &#35748;&#35777;&#32593;&#31449;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#30331;&#24405; Procore &#35748;&#35777;&#32593;&#31449;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#30331;&#24405;&ldquo;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&rdquo;&#21644;&ldquo;&#36164;&#37329;&#35268;&#21010;&rdquo;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#26080;&#27861;&#30331;&#24405;&ldquo;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&rdquo;&#21644;&ldquo;&#36164;&#37329;&#35268;&#21010;&rdquo;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#27809;&#26377;&#25910;&#21040;&#26469;&#33258;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#27809;&#26377;&#25910;&#21040;&#26469;&#33258;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#27809;&#26377;&#25910;&#21040;&#36865;&#23457;&#30340;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#27809;&#26377;&#25910;&#21040;&#36865;&#23457;&#30340;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-procore-certified-certificate-missing" title="&#20026;&#20160;&#20040;&#25105;&#30340; Procore &#35748;&#35777;&#35777;&#20070;&#32570;&#22833;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#30340; Procore &#35748;&#35777;&#35777;&#20070;&#32570;&#22833;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-sage-data-not-syncing" title="&#20026;&#20160;&#20040;&#25105;&#30340; Sage 300 CRE &#25968;&#25454;&#19981;&#21516;&#27493;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#30340; Sage 300 CRE &#25968;&#25454;&#19981;&#21516;&#27493;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#20379;&#24212;&#21830;&#26080;&#27861;&#35775;&#38382;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#20379;&#24212;&#21830;&#26080;&#27861;&#35775;&#38382;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#26126;&#32454;&#39033;&#22312;&#25105;&#30340;&#20998;&#21253;&#21830;&#21457;&#31080;&#19978;&#37325;&#22797;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#26126;&#32454;&#39033;&#22312;&#25105;&#30340;&#20998;&#21253;&#21830;&#21457;&#31080;&#19978;&#37325;&#22797;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#22242;&#38431;&#25104;&#21592;&#26080;&#27861;&#26597;&#30475;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#39033;&#30446;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#22242;&#38431;&#25104;&#21592;&#26080;&#27861;&#26597;&#30475;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#39033;&#30446;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-drawing-uploads-failing" title="&#20026;&#20160;&#20040;&#25105;&#30340;&#22270;&#32440;&#19978;&#20256;&#22833;&#36133;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#22270;&#32440;&#19978;&#20256;&#22833;&#36133;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-drawing-comparisons-failing" title="&#20026;&#20160;&#20040;&#25105;&#30340;&#22270;&#32440;&#23545;&#27604;&#22833;&#36133;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#22270;&#32440;&#23545;&#27604;&#22833;&#36133;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-training-courses-missing" title="&#20026;&#20160;&#20040;&#25105;&#30340;&#22521;&#35757;&#35838;&#31243;&#19981;&#35265;&#20102;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#22521;&#35757;&#35838;&#31243;&#19981;&#35265;&#20102;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#24037;&#20316;&#26085;&#24535;&#22825;&#27668;&#26085;&#24535;&#20013;&#19981;&#26174;&#31034;&#22825;&#27668;&#26465;&#20214;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#24037;&#20316;&#26085;&#24535;&#22825;&#27668;&#26085;&#24535;&#20013;&#19981;&#26174;&#31034;&#22825;&#27668;&#26465;&#20214;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#25237;&#26631;&#20154;&#19979;&#36733;[&#25237;&#26631;&#25991;&#20214;]&#25991;&#20214;&#22841;&#20013;&#30340;&#23376;&#25991;&#20214;&#22841;&#26102;&#65292;&#26576;&#20123;&#23376;&#25991;&#20214;&#22841;&#27809;&#26377;&#26174;&#31034;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#25237;&#26631;&#20154;&#19979;&#36733;[&#25237;&#26631;&#25991;&#20214;]&#25991;&#20214;&#22841;&#20013;&#30340;&#23376;&#25991;&#20214;&#22841;&#26102;&#65292;&#26576;&#20123;&#23376;&#25991;&#20214;&#22841;&#27809;&#26377;&#26174;&#31034;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-file-uploads-failing" title="&#20026;&#20160;&#20040;&#25105;&#30340;&#25991;&#20214;&#19978;&#20256;&#22833;&#36133;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#25991;&#20214;&#19978;&#20256;&#22833;&#36133;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#32593;&#26684;&#22312;&#27169;&#22411;&#24037;&#20855;&#20013;&#27809;&#26377;&#23545;&#40784;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#32593;&#26684;&#22312;&#27169;&#22411;&#24037;&#20855;&#20013;&#27809;&#26377;&#23545;&#40784;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-form-template-not-loading" title="&#20026;&#20160;&#20040;&#25105;&#30340;&#34920;&#21333;&#27169;&#26495;&#27809;&#26377;&#21152;&#36733;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#34920;&#21333;&#27169;&#26495;&#27809;&#26377;&#21152;&#36733;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-my-specification-uploads-failing" title="&#20026;&#20160;&#20040;&#25105;&#30340;&#35268;&#33539;&#19978;&#20256;&#22833;&#36133;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#35268;&#33539;&#19978;&#20256;&#22833;&#36133;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-is-my-certification-analytics-page-blank" title="&#20026;&#20160;&#20040;&#25105;&#30340;&#35748;&#35777;&#20998;&#26512;&#39029;&#38754;&#26159;&#31354;&#30333;&#30340;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#35748;&#35777;&#20998;&#26512;&#39029;&#38754;&#26159;&#31354;&#30333;&#30340;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#30340;&#35838;&#31243;&#26410;&#26174;&#31034;&#22312; Procore &#35748;&#35777;&#36164;&#26009;&#20013;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#35838;&#31243;&#26410;&#26174;&#31034;&#22312; Procore &#35748;&#35777;&#36164;&#26009;&#20013;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-isnt-my-project-weather-working" title="&#20026;&#20160;&#20040;&#25105;&#30340;&#39033;&#30446;&#22825;&#27668;&#23567;&#37096;&#20214;&#19981;&#24037;&#20316;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#30340;&#39033;&#30446;&#22825;&#27668;&#23567;&#37096;&#20214;&#19981;&#24037;&#20316;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#33021;&#22312;&#21171;&#21160;&#21147;&#35268;&#21010;&#20013;&#30475;&#21040;&#20154;&#21592;&#65292;&#22312; Procore &#20013;&#21364;&#19981;&#33021;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#33021;&#22312;&#21171;&#21160;&#21147;&#35268;&#21010;&#20013;&#30475;&#21040;&#20154;&#21592;&#65292;&#22312; Procore &#20013;&#21364;&#19981;&#33021;&#65311;</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="&#20026;&#20160;&#20040;&#25105;&#38656;&#35201;&#30331;&#24405; Procore &#30340;&#25903;&#25345;&#32593;&#31449;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25105;&#38656;&#35201;&#30331;&#24405; Procore &#30340;&#25903;&#25345;&#32593;&#31449;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-receive-email-from-procore" title="&#20026;&#20160;&#20040;&#25910;&#19981;&#21040; Procore &#30340;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#25910;&#19981;&#21040; Procore &#30340;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#20026;&#20160;&#20040;&#26080;&#27861;&#20851;&#38381;&#20174;&#36865;&#23457;&#24037;&#20855;&#21457;&#36865;&#30340;&ldquo;&#24453;&#21150;&#20107;&#39033;&rdquo;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#26080;&#27861;&#20851;&#38381;&#20174;&#36865;&#23457;&#24037;&#20855;&#21457;&#36865;&#30340;&ldquo;&#24453;&#21150;&#20107;&#39033;&rdquo;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#20026;&#20160;&#20040;&#26080;&#27861;&#23558;&#29992;&#25143;&#20998;&#37197;&#21040; RFQ&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#26080;&#27861;&#23558;&#29992;&#25143;&#20998;&#37197;&#21040; RFQ&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-cant-i-update-my-procore-app-ios" title="&#20026;&#20160;&#20040;&#26080;&#27861;&#26356;&#26032;&#25105;&#30340; Procore &#24212;&#29992;&#31243;&#24207;&#65311;(iOS)"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#26080;&#27861;&#26356;&#26032;&#25105;&#30340; Procore &#24212;&#29992;&#31243;&#24207;&#65311;(iOS)</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/trouble-logging-in-to-procore" title="&#20026;&#20160;&#20040;&#26080;&#27861;&#30331;&#24405; Procore&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#26080;&#27861;&#30331;&#24405; Procore&#65311;</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="&#20026;&#20160;&#20040;&#26080;&#27861;&#30331;&#24405;&#35748;&#35777;&#20998;&#26512;&#20202;&#34920;&#26495;&#65311;"><span class="mt-icon-article-tutorial"></span>&#20026;&#20160;&#20040;&#26080;&#27861;&#30331;&#24405;&#35748;&#35777;&#20998;&#26512;&#20202;&#34920;&#26495;&#65311;</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="&#20026;&#20160;&#20040;&#27809;&#26377;&#22312;&#23545;&#35805;&#24037;&#20855;&#20013;&#30475;&#21040;&#25105;&#30340;&#25152;&#26377;&#39033;&#30446;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#27809;&#26377;&#22312;&#23545;&#35805;&#24037;&#20855;&#20013;&#30475;&#21040;&#25105;&#30340;&#25152;&#26377;&#39033;&#30446;&#65311;</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="&#20026;&#20160;&#20040;&#27809;&#26377;&#37197;&#32622;&#20581;&#24247;&#20202;&#34920;&#26495;&#30340;&#36130;&#21153;&#20581;&#24247;&#37096;&#20998;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#27809;&#26377;&#37197;&#32622;&#20581;&#24247;&#20202;&#34920;&#26495;&#30340;&#36130;&#21153;&#20581;&#24247;&#37096;&#20998;&#65311;</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="&#20026;&#20160;&#20040;&#31227;&#21160;&#24037;&#20855;&#37197;&#32622;&#12289;&#29992;&#25143;&#20351;&#29992;&#24773;&#20917;&#21644;&#25968;&#25454;&#36136;&#37327;&#25253;&#21578;&#39029;&#38754;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#31227;&#21160;&#24037;&#20855;&#37197;&#32622;&#12289;&#29992;&#25143;&#20351;&#29992;&#24773;&#20917;&#21644;&#25968;&#25454;&#36136;&#37327;&#25253;&#21578;&#39029;&#38754;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-are-automatic-drawing-sheet-links-missing" title="&#20026;&#20160;&#20040;&#33258;&#21160;&#22270;&#32440;&#39029;&#38142;&#25509;&#20002;&#22833;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#33258;&#21160;&#22270;&#32440;&#39029;&#38142;&#25509;&#20002;&#22833;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/why-wont-the-resource-planning-tool-load" title="&#20026;&#20160;&#20040;&#36164;&#28304;&#35268;&#21010;&#24037;&#20855;&#19981;&#21152;&#36733;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#36164;&#28304;&#35268;&#21010;&#24037;&#20855;&#19981;&#21152;&#36733;&#65311;</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="&#20026;&#20160;&#20040;&#39033;&#30446;&#30340;&#39044;&#31639;&#35270;&#22270;&#27809;&#26377;&#21453;&#26144;&#32771;&#21220;&#21345;&#26465;&#30446;&#20013;&#30340;&#20154;&#24037;&#25104;&#26412;&#21644;&#29983;&#20135;&#25968;&#37327;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#39033;&#30446;&#30340;&#39044;&#31639;&#35270;&#22270;&#27809;&#26377;&#21453;&#26144;&#32771;&#21220;&#21345;&#26465;&#30446;&#20013;&#30340;&#20154;&#24037;&#25104;&#26412;&#21644;&#29983;&#20135;&#25968;&#37327;&#65311;</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="&#20026;&#20160;&#20040;&#39044;&#31639;&#20013;&#30340;&ldquo;&#24320;&#24037;&#33267;&#20170;&#25104;&#26412;&rdquo;&#21015;&#19982;&#20998;&#21253;&#21830;&#21457;&#31080;&#37329;&#39069;&#19981;&#19968;&#33268;&#65311;"><span class="mt-icon-article-faq"></span>&#20026;&#20160;&#20040;&#39044;&#31639;&#20013;&#30340;&ldquo;&#24320;&#24037;&#33267;&#20170;&#25104;&#26412;&rdquo;&#21015;&#19982;&#20998;&#21253;&#21830;&#21457;&#31080;&#37329;&#39069;&#19981;&#19968;&#33268;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.B8.BB"></span><h5 title="&#20027;">&#20027;</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="&#20027;&#21512;&#21516;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-faq"></span>&#20027;&#21512;&#21516;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#20027;&#21512;&#21516;&#24037;&#20855;&#20013;&#30340;&#40664;&#35748;&#21015;&#26159;&#20160;&#20040;&#21015;&#65311;"><span class="mt-icon-article-faq"></span>&#20027;&#21512;&#21516;&#24037;&#20855;&#20013;&#30340;&#40664;&#35748;&#21015;&#26159;&#20160;&#20040;&#21015;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.BA.8B"></span><h5 title="&#20107;">&#20107;</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="&#20107;&#20214;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-faq"></span>&#20107;&#20214;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.BA.BA"></span><h5 title="&#20154;">&#20154;</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="&#20154;&#21592;&#21487;&#20197;&#22312;&#36164;&#28304;&#35268;&#21010;&#20013;&#31572;&#22797;&#21738;&#20123;&#28040;&#24687;&#21644;&#35686;&#25253;&#65311;"><span class="mt-icon-article-faq"></span>&#20154;&#21592;&#21487;&#20197;&#22312;&#36164;&#28304;&#35268;&#21010;&#20013;&#31572;&#22797;&#21738;&#20123;&#28040;&#24687;&#21644;&#35686;&#25253;&#65311;</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="&#20154;&#21592;&#33021;&#21542;&#19982;&#20844;&#21496;&#32423;&#21035;&#30446;&#24405;&#24037;&#20855;&#20013;&#30340;&#22810;&#20010;&#20379;&#24212;&#21830;/&#20844;&#21496;&#35760;&#24405;&#20851;&#32852;&#65311;"><span class="mt-icon-article-faq"></span>&#20154;&#21592;&#33021;&#21542;&#19982;&#20844;&#21496;&#32423;&#21035;&#30446;&#24405;&#24037;&#20855;&#20013;&#30340;&#22810;&#20010;&#20379;&#24212;&#21830;/&#20844;&#21496;&#35760;&#24405;&#20851;&#32852;&#65311;</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="&#20154;&#24037;&#29983;&#20135;&#21147;&#39044;&#31639;&#35270;&#22270;&#21644;&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>&#20154;&#24037;&#29983;&#20135;&#21147;&#39044;&#31639;&#35270;&#22270;&#21644;&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.BB.80"></span><h5 title="&#20160;">&#20160;</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="&#20160;&#20040;&#26102;&#20505;&#20250;&#25910;&#21040;&#26377;&#20851;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25237;&#26631;&#30340;&#39033;&#30446;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26102;&#20505;&#20250;&#25910;&#21040;&#26377;&#20851;&#25105;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25237;&#26631;&#30340;&#39033;&#30446;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#20160;&#20040;&#26159; Asta Powerproject &#20197;&#21450;&#23427;&#22914;&#20309;&#19982; Procore &#38598;&#25104;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159; Asta Powerproject &#20197;&#21450;&#23427;&#22914;&#20309;&#19982; Procore &#38598;&#25104;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-bluebeam-studio" title="&#20160;&#20040;&#26159; Bluebeam Studio&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159; Bluebeam Studio&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-capital-planning" title="&#20160;&#20040;&#26159; Capital Planning &#36164;&#37329;&#35268;&#21010;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159; Capital Planning &#36164;&#37329;&#35268;&#21010;&#65311;</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="&#20160;&#20040;&#26159; DocuSign&reg; &#23383;&#27573;&#65292;&#25105;&#21487;&#20197;&#33258;&#23450;&#20041;&#23427;&#20204;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159; DocuSign&reg; &#23383;&#27573;&#65292;&#25105;&#21487;&#20197;&#33258;&#23450;&#20041;&#23427;&#20204;&#21527;&#65311;</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="&#20160;&#20040;&#26159; Primavera P6 &#21450;&#20854;&#22914;&#20309;&#19982; Procore &#38598;&#25104;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159; Primavera P6 &#21450;&#20854;&#22914;&#20309;&#19982; Procore &#38598;&#25104;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procore-bim" title="&#20160;&#20040;&#26159; Procore BIM&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159; Procore BIM&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-related-items-in-procore" title="&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159; Procore &#20013;&#30340;&ldquo;&#30456;&#20851;&#39033;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-transmittal-in-procore" title="&#20160;&#20040;&#26159; Procore &#20013;&#30340;&#20256;&#36755;&#35760;&#24405;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159; Procore &#20013;&#30340;&#20256;&#36755;&#35760;&#24405;&#65311;</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="&#20160;&#20040;&#26159; Procore &#20013;&#30340;&#26435;&#38480;&#20197;&#21450;&#23427;&#20204;&#22914;&#20309;&#24037;&#20316;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159; Procore &#20013;&#30340;&#26435;&#38480;&#20197;&#21450;&#23427;&#20204;&#22914;&#20309;&#24037;&#20316;&#65311;</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="&#20160;&#20040;&#26159; Procore &#20013;&#30340;&#40664;&#35748;&#39033;&#30446;&#26435;&#38480;&#27169;&#26495;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159; Procore &#20013;&#30340;&#40664;&#35748;&#39033;&#30446;&#26435;&#38480;&#27169;&#26495;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-recycle-bin" title="&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159; Procore &#22238;&#25910;&#31449;&#65311;</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="&#20160;&#20040;&#26159; Procore &#24212;&#29992;&#21830;&#24215;&#20013;&#24212;&#29992;&#31243;&#24207;&#30340;&#23433;&#20840;&#21644;&#20449;&#20219;&#33258;&#34892;&#35748;&#35777;&#24509;&#31456;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159; Procore &#24212;&#29992;&#21830;&#24215;&#20013;&#24212;&#29992;&#31243;&#24207;&#30340;&#23433;&#20840;&#21644;&#20449;&#20219;&#33258;&#34892;&#35748;&#35777;&#24509;&#31456;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-procore-construction-network" title="&#20160;&#20040;&#26159; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-unavailibility" title="&#20160;&#20040;&#26159; Procore &#30340;&#19981;&#21487;&#29992;&#24615;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159; Procore &#30340;&#19981;&#21487;&#29992;&#24615;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procores-availability" title="&#20160;&#20040;&#26159; Procore &#30340;&#21487;&#29992;&#24615;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159; Procore &#30340;&#21487;&#29992;&#24615;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-procores-standard-budget-views" title="&#20160;&#20040;&#26159; Procore &#30340;&#26631;&#20934;&#39044;&#31639;&#35270;&#22270;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159; Procore &#30340;&#26631;&#20934;&#39044;&#31639;&#35270;&#22270;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-procore-community" title="&#20160;&#20040;&#26159; Procore &#31038;&#21306;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159; Procore &#31038;&#21306;&#65311;</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="&#20160;&#20040;&#26159; Procore&#25554;&#20214;&#65292;&#26377;&#20309;&#29992;&#36884;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159; Procore&#25554;&#20214;&#65292;&#26377;&#20309;&#29992;&#36884;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-rfi-manager-role" title="&#20160;&#20040;&#26159; RFI &#32463;&#29702;&#35282;&#33394;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159; RFI &#32463;&#29702;&#35282;&#33394;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-rfi" title="&#20160;&#20040;&#26159; RFI&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159; RFI&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-draft-rfi" title="&#20160;&#20040;&#26159; RFI&ldquo;&#33609;&#31295;&rdquo;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159; RFI&ldquo;&#33609;&#31295;&rdquo;&#65311;</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="&#20160;&#20040;&#26159;&ldquo;&#21551;&#29992;&#22987;&#32456;&#21487;&#32534;&#36753;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&rdquo;&#35774;&#32622;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&ldquo;&#21551;&#29992;&#22987;&#32456;&#21487;&#32534;&#36753;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&rdquo;&#35774;&#32622;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-completed-action-plan-receiver" title="&#20160;&#20040;&#26159;&ldquo;&#24050;&#23436;&#25104;&#34892;&#21160;&#35745;&#21010;&#30340;&#25509;&#25910;&#32773;&rdquo;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&ldquo;&#24050;&#23436;&#25104;&#34892;&#21160;&#35745;&#21010;&#30340;&#25509;&#25910;&#32773;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-site-instruction" title="&#20160;&#20040;&#26159;&ldquo;&#25351;&#31034;&rdquo;&#25110;&ldquo;&#29616;&#22330;&#25351;&#31034;&rdquo;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&ldquo;&#25351;&#31034;&rdquo;&#25110;&ldquo;&#29616;&#22330;&#25351;&#31034;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-production-quantities" title="&#20160;&#20040;&#26159;&ldquo;&#29983;&#20135;&#25968;&#37327;&rdquo;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&ldquo;&#29983;&#20135;&#25968;&#37327;&rdquo;&#65311;</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="&#20160;&#20040;&#26159;&ldquo;&#31169;&#23494;&rdquo;&#32771;&#21220;&#21345;&#20197;&#21450;&#21738;&#20123;&#32771;&#21220;&#21345;&#21487;&#20197;&#35774;&#32622;&#20026;&#31169;&#23494;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&ldquo;&#31169;&#23494;&rdquo;&#32771;&#21220;&#21345;&#20197;&#21450;&#21738;&#20123;&#32771;&#21220;&#21345;&#21487;&#20197;&#35774;&#32622;&#20026;&#31169;&#23494;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-action-plan-approver" title="&#20160;&#20040;&#26159;&ldquo;&#34892;&#21160;&#35745;&#21010;&#23457;&#25209;&#32773;&rdquo;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&ldquo;&#34892;&#21160;&#35745;&#21010;&#23457;&#25209;&#32773;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-submittal-manager-role" title="&#20160;&#20040;&#26159;&ldquo;&#36865;&#23457;&#32463;&#29702;&rdquo;&#35282;&#33394;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&ldquo;&#36865;&#23457;&#32463;&#29702;&rdquo;&#35282;&#33394;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-procore-analytics-risk-report" title="&#20160;&#20040;&#26159;Procore Analytics&#39118;&#38505;&#25253;&#21578;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;Procore Analytics&#39118;&#38505;&#25253;&#21578;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-upstream-collaborator" title="&#20160;&#20040;&#26159;&#19978;&#28216;&#21327;&#20316;&#32773;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#19978;&#28216;&#21327;&#20316;&#32773;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-downstream-collaborator" title="&#20160;&#20040;&#26159;&#19979;&#28216;&#21327;&#20316;&#32773;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#19979;&#28216;&#21327;&#20316;&#32773;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-incident" title="&#20160;&#20040;&#26159;&#20107;&#20214;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#20107;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-accounting-approver-role" title="&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#20250;&#35745;&#23457;&#25209;&#32773;&#35282;&#33394;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-meeting-minutes" title="&#20160;&#20040;&#26159;&#20250;&#35758;&#32426;&#35201;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#20250;&#35758;&#32426;&#35201;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-company-admin" title="&#20160;&#20040;&#26159;&#20844;&#21496;&#31649;&#29702;&#21592;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#20844;&#21496;&#31649;&#29702;&#21592;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-subcontractor-schedule-of-values" title="&#20160;&#20040;&#26159;&#20998;&#21253;&#21830;&#20998;&#39033;&#20215;&#26684;&#34920;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#20998;&#21253;&#21830;&#20998;&#39033;&#20215;&#26684;&#34920;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-dynamic-approver-due-dates" title="&#20160;&#20040;&#26159;&#21160;&#24577;&#35745;&#31639;&#23457;&#25209;&#32773;&#25130;&#27490;&#26085;&#26399;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#21160;&#24577;&#35745;&#31639;&#23457;&#25209;&#32773;&#25130;&#27490;&#26085;&#26399;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-workforce-planning-laborchart-web-application" title="&#20160;&#20040;&#26159;&#21171;&#21160;&#21147;&#35268;&#21010;/ LaborChart Web &#24212;&#29992;&#31243;&#24207;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#21171;&#21160;&#21147;&#35268;&#21010;/ LaborChart Web &#24212;&#29992;&#31243;&#24207;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-single-sign-on-sso" title="&#20160;&#20040;&#26159;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-invoice-administrator" title="&#20160;&#20040;&#26159;&#21457;&#31080; &#31649;&#29702;&#21592;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#21457;&#31080; &#31649;&#29702;&#21592;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-invoice-contact" title="&#20160;&#20040;&#26159;&#21457;&#31080;&#32852;&#31995;&#20154;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#21457;&#31080;&#32852;&#31995;&#20154;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-change-event" title="&#20160;&#20040;&#26159;&#21464;&#26356;&#20107;&#20214;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#21464;&#26356;&#20107;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-change-order" title="&#20160;&#20040;&#26159;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#21464;&#26356;&#36890;&#30693;&#21333;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-assignable-permissions-template" title="&#20160;&#20040;&#26159;&#21487;&#20998;&#37197;&#26435;&#38480;&#27169;&#26495;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#21487;&#20998;&#37197;&#26435;&#38480;&#27169;&#26495;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-fillable-pdf" title="&#20160;&#20040;&#26159;&#21487;&#22635;&#20889; PDF&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#21487;&#22635;&#20889; PDF&#65311;</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="&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-drawing-areas" title="&#20160;&#20040;&#26159;&#22270;&#32440;&#21306;&#22495;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#22270;&#32440;&#21306;&#22495;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-unpublished-status-on-drawings" title="&#20160;&#20040;&#26159;&#22270;&#32440;&#30340;&#26410;&#21457;&#24067;&#29366;&#24577;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#22270;&#32440;&#30340;&#26410;&#21457;&#24067;&#29366;&#24577;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-drawing-set" title="&#20160;&#20040;&#26159;&#22270;&#32440;&#38598;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#22270;&#32440;&#38598;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-training-center" title="&#20160;&#20040;&#26159;&#22521;&#35757;&#20013;&#24515;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#22521;&#35757;&#20013;&#24515;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-role-based-permissions" title="&#20160;&#20040;&#26159;&#22522;&#20110;&#35282;&#33394;&#30340;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#22522;&#20110;&#35282;&#33394;&#30340;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-multi-tiered-locations" title="&#20160;&#20040;&#26159;&#22810;&#23618;&#22320;&#28857;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#22810;&#23618;&#22320;&#28857;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-punch-list" title="&#20160;&#20040;&#26159;&#23614;&#39033;&#28165;&#21333;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#23614;&#39033;&#28165;&#21333;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-punch-list-work-flow" title="&#20160;&#20040;&#26159;&#23614;&#39033;&#28165;&#21333;&#24037;&#20316;&#27969;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#23614;&#39033;&#28165;&#21333;&#24037;&#20316;&#27969;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-work-breakdown-structure-wbs" title="&#20160;&#20040;&#26159;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500; (WBS)&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500; (WBS)&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-daily-log" title="&#20160;&#20040;&#26159;&#24037;&#20316;&#26085;&#24535;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#24037;&#20316;&#26085;&#24535;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-tm-ticket" title="&#20160;&#20040;&#26159;&#24037;&#26102;&#21644;&#26448;&#26009;&#21333;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#24037;&#26102;&#21644;&#26448;&#26009;&#21333;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-app-management" title="&#20160;&#20040;&#26159;&#24212;&#29992;&#31243;&#24207;&#31649;&#29702;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#24212;&#29992;&#31243;&#24207;&#31649;&#29702;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/app-management-metrics-how-to-access" title="&#20160;&#20040;&#26159;&#24212;&#29992;&#31243;&#24207;&#31649;&#29702;&#25351;&#26631;&#20197;&#21450;&#22914;&#20309;&#35775;&#38382;&#23427;&#20204;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#24212;&#29992;&#31243;&#24207;&#31649;&#29702;&#25351;&#26631;&#20197;&#21450;&#22914;&#20309;&#35775;&#38382;&#23427;&#20204;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-app-configurations" title="&#20160;&#20040;&#26159;&#24212;&#29992;&#31243;&#24207;&#37197;&#32622;&#65292;&#22914;&#20309;&#20351;&#29992;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#24212;&#29992;&#31243;&#24207;&#37197;&#32622;&#65292;&#22914;&#20309;&#20351;&#29992;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-construction-bidding-process" title="&#20160;&#20040;&#26159;&#24314;&#35774;&#24037;&#31243;&#25237;&#26631;&#27969;&#31243;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#24314;&#35774;&#24037;&#31243;&#25237;&#26631;&#27969;&#31243;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-construction-projects-schedule" title="&#20160;&#20040;&#26159;&#24314;&#35774;&#24037;&#31243;&#39033;&#30446;&#30340;&#36827;&#24230;&#35745;&#21010;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#24314;&#35774;&#24037;&#31243;&#39033;&#30446;&#30340;&#36827;&#24230;&#35745;&#21010;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-developer-managed-service-account" title="&#20160;&#20040;&#26159;&#24320;&#21457;&#20154;&#21592;&#31649;&#29702;&#26381;&#21153;&#36134;&#25143;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#24320;&#21457;&#20154;&#21592;&#31649;&#29702;&#26381;&#21153;&#36134;&#25143;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-blind-bidding" title="&#20160;&#20040;&#26159;&#25237;&#30450;&#26631;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#25237;&#30450;&#26631;&#65311;</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="&#20160;&#20040;&#26159;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#30340;&#21629;&#21517;&#26631;&#20934;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#30340;&#21629;&#21517;&#26631;&#20934;&#65311;</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="&#20160;&#20040;&#26159;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#30340;&#38598;&#21512;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#30340;&#38598;&#21512;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-service-account" title="&#20160;&#20040;&#26159;&#26381;&#21153;&#36134;&#25143;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#26381;&#21153;&#36134;&#25143;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-permissions-template" title="&#20160;&#20040;&#26159;&#26435;&#38480;&#27169;&#26495;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#26435;&#38480;&#27169;&#26495;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-monthly-sandbox-environment" title="&#20160;&#20040;&#26159;&#27599;&#26376;&#27801;&#31665;&#29615;&#22659;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#27599;&#26376;&#27801;&#31665;&#29615;&#22659;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-test-project" title="&#20160;&#20040;&#26159;&#27979;&#35797;&#39033;&#30446;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#27979;&#35797;&#39033;&#30446;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-sliding-scale-retention" title="&#20160;&#20040;&#26159;&#28014;&#21160;&#20445;&#30041;&#37329;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#28014;&#21160;&#20445;&#30041;&#37329;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-segments-and-segment-items" title="&#20160;&#20040;&#26159;&#32454;&#20998;&#21644;&#32454;&#20998;&#39033;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#32454;&#20998;&#21644;&#32454;&#20998;&#39033;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-maintenance" title="&#20160;&#20040;&#26159;&#32500;&#25252;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#32500;&#25252;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-portfolio-financials" title="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-contract-room-in-portfolio-financials" title="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23460;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23460;&#65311;</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="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25104;&#26412;&#20998;&#37197;&#21644;&#32452;&#20214;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25104;&#26412;&#20998;&#37197;&#21644;&#32452;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-uncategorized-invoices-in-portfolio-financials" title="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#26410;&#20998;&#31867;&#21457;&#31080;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#26410;&#20998;&#31867;&#21457;&#31080;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-project-cost-reporting-in-portfolio-financials" title="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#25104;&#26412;&#25253;&#21578;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#25104;&#26412;&#25253;&#21578;&#65311;</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="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#39033;&#30446;&#27604;&#36739;&#30340;&#31034;&#20363;&#29992;&#20363;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#39033;&#30446;&#27604;&#36739;&#30340;&#31034;&#20363;&#29992;&#20363;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-approvals-in-portfolio-financials" title="&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#23457;&#25209;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#23457;&#25209;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-phishing" title="&#20160;&#20040;&#26159;&#32593;&#32476;&#38035;&#40060;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#32593;&#32476;&#38035;&#40060;&#65311;</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="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#23383;&#27573;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</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="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#37096;&#20998;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#37096;&#20998;&#20197;&#21450;&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#23427;&#20204;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-custom-project-roles" title="&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#39033;&#30446;&#35282;&#33394;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#33258;&#23450;&#20041;&#39033;&#30446;&#35282;&#33394;&#65311;</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="&#20160;&#20040;&#26159;&#34892;&#21160;&#35745;&#21010;&#20013;&#30340;&ldquo;&#35745;&#21010;&#32463;&#29702;&rdquo;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#34892;&#21160;&#35745;&#21010;&#20013;&#30340;&ldquo;&#35745;&#21010;&#32463;&#29702;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-blocking-functionality-in-an-action-plan" title="&#20160;&#20040;&#26159;&#34892;&#21160;&#35745;&#21010;&#20013;&#30340;&ldquo;&#38145;&#23450;&#21151;&#33021;&rdquo;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#34892;&#21160;&#35745;&#21010;&#20013;&#30340;&ldquo;&#38145;&#23450;&#21151;&#33021;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-specifications" title="&#20160;&#20040;&#26159;&#35268;&#33539;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#35268;&#33539;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-specification-set" title="&#20160;&#20040;&#26159;&#35268;&#33539;&#38598;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#35268;&#33539;&#38598;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-touch-commands" title="&#20160;&#20040;&#26159;&#35302;&#25511;&#25351;&#20196;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#35302;&#25511;&#25351;&#20196;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-resource-allocation-type" title="&#20160;&#20040;&#26159;&#36164;&#28304;&#20998;&#37197;&#31867;&#22411;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#36164;&#28304;&#20998;&#37197;&#31867;&#22411;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-laborchart-app" title="&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;/ LaborChart&#24212;&#29992;&#31243;&#24207;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;/ LaborChart&#24212;&#29992;&#31243;&#24207;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-sensitive-field-in-resource-planning" title="&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;&#20013;&#30340;&quot;&#25935;&#24863;&#23383;&#27573;&quot;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;&#20013;&#30340;&quot;&#25935;&#24863;&#23383;&#27573;&quot;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-resource-bench-in-resource-planning" title="&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;&#20013;&#30340;&quot;&#36164;&#28304;&#21488;&quot;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;&#20013;&#30340;&quot;&#36164;&#28304;&#21488;&quot;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-an-assignment-alert-in-resource-planning" title="&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;&#20013;&#30340;&#20998;&#37197;&#35686;&#25253;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;&#20013;&#30340;&#20998;&#37197;&#35686;&#25253;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-data-syncing-for-resource-planning" title="&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;&#30340;&#25968;&#25454;&#21516;&#27493;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#36164;&#28304;&#35268;&#21010;&#30340;&#25968;&#25454;&#21516;&#27493;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-super-private-correspondence-types" title="&#20160;&#20040;&#26159;&#36229;&#32423;&#31169;&#23494;&#36890;&#20449;&#31867;&#22411;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#36229;&#32423;&#31169;&#23494;&#36890;&#20449;&#31867;&#22411;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-submittal" title="&#20160;&#20040;&#26159;&#36865;&#23457;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#36865;&#23457;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-draft-submittal" title="&#20160;&#20040;&#26159;&#36865;&#23457;&ldquo;&#33609;&#31295;&rdquo;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#36865;&#23457;&ldquo;&#33609;&#31295;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-submittal-revision" title="&#20160;&#20040;&#26159;&#36865;&#23457;&#20462;&#35746;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#36865;&#23457;&#20462;&#35746;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-submittal-package" title="&#20160;&#20040;&#26159;&#36865;&#23457;&#27719;&#24635;&#21253;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#36865;&#23457;&#27719;&#24635;&#21253;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-correspondence-tool" title="&#20160;&#20040;&#26159;&#36890;&#20449;&#24037;&#20855;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#36890;&#20449;&#24037;&#20855;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-partial-budget-line-item" title="&#20160;&#20040;&#26159;&#37096;&#20998;&#39044;&#31639;&#26126;&#32454;&#39033;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#37096;&#20998;&#39044;&#31639;&#26126;&#32454;&#39033;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-project-template" title="&#20160;&#20040;&#26159;&#39033;&#30446;&#27169;&#26495;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#39033;&#30446;&#27169;&#26495;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-a-project-administrator" title="&#20160;&#20040;&#26159;&#39033;&#30446;&#31649;&#29702;&#21592;&#65311;"><span class="mt-icon-article-tutorial"></span>&#20160;&#20040;&#26159;&#39033;&#30446;&#31649;&#29702;&#21592;&#65311;</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="&#20160;&#20040;&#26159;&#39033;&#30446;&#38598;&#21512;&#24037;&#20855;&#30340;&#20581;&#24247;&#20202;&#34920;&#26495;&#30340;&#38408;&#20540;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#39033;&#30446;&#38598;&#21512;&#24037;&#20855;&#30340;&#20581;&#24247;&#20202;&#34920;&#26495;&#30340;&#38408;&#20540;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-does-the-budget-forecast-report" title="&#20160;&#20040;&#26159;&#39044;&#31639;&#39044;&#27979;&#25253;&#21578;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#39044;&#31639;&#39044;&#27979;&#25253;&#21578;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-action-plan-verification-methods" title="&#20160;&#20040;&#26159;&#40664;&#35748;&#34892;&#21160;&#35745;&#21010;&#39564;&#35777;&#26041;&#27861;&#65311;"><span class="mt-icon-article-faq"></span>&#20160;&#20040;&#26159;&#40664;&#35748;&#34892;&#21160;&#35745;&#21010;&#39564;&#35777;&#26041;&#27861;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.BB.8E"></span><h5 title="&#20174;">&#20174;</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="&#20174; CSV &#23548;&#20837; SOV &#34892;&#39033;&#30446;&#26377;&#21738;&#20123;&#35201;&#27714;&#65311;"><span class="mt-icon-article-faq"></span>&#20174; CSV &#23548;&#20837; SOV &#34892;&#39033;&#30446;&#26377;&#21738;&#20123;&#35201;&#27714;&#65311;</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="&#20174; Procore &#20013;&#25552;&#21462;&#25968;&#25454;&#38656;&#35201;&#22810;&#38271;&#26102;&#38388;&#65311;"><span class="mt-icon-article-faq"></span>&#20174; Procore &#20013;&#25552;&#21462;&#25968;&#25454;&#38656;&#35201;&#22810;&#38271;&#26102;&#38388;&#65311;</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="&#20174; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#20013;&#23558;&#20844;&#21496;&#21644;&#29992;&#25143;&#28155;&#21152;&#21040;&#20844;&#21496;&#30446;&#24405;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#20174; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#20013;&#23558;&#20844;&#21496;&#21644;&#29992;&#25143;&#28155;&#21152;&#21040;&#20844;&#21496;&#30446;&#24405;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;</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="&#20174;&#21464;&#26356;&#20107;&#20214;&#20013;&#23558;&#21738;&#20123;&#20540;&#25552;&#21462;&#21040;&#21464;&#26356;&#36890;&#30693;&#21333; SOV&#65311;"><span class="mt-icon-article-faq"></span>&#20174;&#21464;&#26356;&#20107;&#20214;&#20013;&#23558;&#21738;&#20123;&#20540;&#25552;&#21462;&#21040;&#21464;&#26356;&#36890;&#30693;&#21333; SOV&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.BB.BB"></span><h5 title="&#20219;">&#20219;</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="&#20219;&#21153;&#24037;&#20855;&#20309;&#26102;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;"><span class="mt-icon-article-faq"></span>&#20219;&#21153;&#24037;&#20855;&#20309;&#26102;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.BC.81"></span><h5 title="&#20225;">&#20225;</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="&#20225;&#19994;&#22914;&#20309;&#33719;&#25209;&#22312; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#20013;&#19978;&#24066;&#65311;"><span class="mt-icon-article-faq"></span>&#20225;&#19994;&#22914;&#20309;&#33719;&#25209;&#22312; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#20013;&#19978;&#24066;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.BC.9A"></span><h5 title="&#20250;">&#20250;</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="&#20250;&#35758;&#26159;&#21542;&#19982; Microsoft Outlook &#26085;&#21382;&#38598;&#25104;&#65311;"><span class="mt-icon-article-faq"></span>&#20250;&#35758;&#26159;&#21542;&#19982; Microsoft Outlook &#26085;&#21382;&#38598;&#25104;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.BC.A0"></span><h5 title="&#20256;">&#20256;</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="&#20256;&#36755;&#23618;&#23433;&#20840; v1.2 &#35201;&#27714;&#23545;&#29992;&#25143;&#26377;&#20309;&#24433;&#21709;&#65311;"><span class="mt-icon-article-faq"></span>&#20256;&#36755;&#23618;&#23433;&#20840; v1.2 &#35201;&#27714;&#23545;&#29992;&#25143;&#26377;&#20309;&#24433;&#21709;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.BC.B0"></span><h5 title="&#20272;">&#20272;</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="&#20272;&#31639;&#20013;&#26377;&#21738;&#20123;&#23383;&#27573;&#20197;&#21450;&#23427;&#20204;&#26159;&#22914;&#20309;&#35745;&#31639;&#30340;&#65311;"><span class="mt-icon-article-faq"></span>&#20272;&#31639;&#20013;&#26377;&#21738;&#20123;&#23383;&#27573;&#20197;&#21450;&#23427;&#20204;&#26159;&#22914;&#20309;&#35745;&#31639;&#30340;&#65311;</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="&#20272;&#31639;&#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#22914;&#20309;&#21019;&#24314;&#39044;&#31639;&#20013;&#30340;&#26126;&#32454;&#39033;&#65311;"><span class="mt-icon-article-faq"></span>&#20272;&#31639;&#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#22914;&#20309;&#21019;&#24314;&#39044;&#31639;&#20013;&#30340;&#26126;&#32454;&#39033;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.BD.9C"></span><h5 title="&#20316;">&#20316;</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="&#20316;&#19994;&#12289;&#29238;&#20316;&#19994;&#21644;&#23376;&#20316;&#19994;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>&#20316;&#19994;&#12289;&#29238;&#20316;&#19994;&#21644;&#23376;&#20316;&#19994;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;</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="&#20316;&#20026;&#20219;&#21153;&#20998;&#37197;&#23545;&#35937;&#65292;&#22914;&#20309;&#35775;&#38382; RFI&#65311;"><span class="mt-icon-article-faq"></span>&#20316;&#20026;&#20219;&#21153;&#20998;&#37197;&#23545;&#35937;&#65292;&#22914;&#20309;&#35775;&#38382; RFI&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E4.BD.BF"></span><h5 title="&#20351;">&#20351;</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="&#20351;&#29992; 360 &#24230;&#25253;&#21578;&#35775;&#38382;&#21487;&#25253;&#21578;&#25968;&#25454;&#38656;&#35201;&#21738;&#20123;&#39069;&#22806;&#30340;&#29992;&#25143;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#20351;&#29992; 360 &#24230;&#25253;&#21578;&#35775;&#38382;&#21487;&#25253;&#21578;&#25968;&#25454;&#38656;&#35201;&#21738;&#20123;&#39069;&#22806;&#30340;&#29992;&#25143;&#26435;&#38480;&#65311;</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="&#20351;&#29992; Procore Extracts &#24212;&#29992;&#31243;&#24207;&#21487;&#20197;&#20174;&#21738;&#20123;&#24037;&#20855;&#20013;&#25552;&#21462;&#39033;&#30446;&#25968;&#25454;&#65311;"><span class="mt-icon-article-faq"></span>&#20351;&#29992; Procore Extracts &#24212;&#29992;&#31243;&#24207;&#21487;&#20197;&#20174;&#21738;&#20123;&#24037;&#20855;&#20013;&#25552;&#21462;&#39033;&#30446;&#25968;&#25454;&#65311;</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="&#20351;&#29992;&ldquo;&#23436;&#24037;&#39044;&#27979;&rdquo;&#21151;&#33021;&#26102;&#24212;&#35813;&#36873;&#25321;&#21738;&#31181;&#35745;&#31639;&#26041;&#27861;&#65311;"><span class="mt-icon-article-faq"></span>&#20351;&#29992;&ldquo;&#23436;&#24037;&#39044;&#27979;&rdquo;&#21151;&#33021;&#26102;&#24212;&#35813;&#36873;&#25321;&#21738;&#31181;&#35745;&#31639;&#26041;&#27861;&#65311;</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="&#20351;&#29992;&#22270;&#32440;&#26631;&#35760;&#36827;&#34892;&#22797;&#21046;&#21644;&#22797;&#21046;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>&#20351;&#29992;&#22270;&#32440;&#26631;&#35760;&#36827;&#34892;&#22797;&#21046;&#21644;&#22797;&#21046;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#20351;&#29992;&#22810;&#20010;&#65288;&#20998;&#38454;&#27573;&#65289;&#39044;&#31639;&#19978;&#20256;&#30340;&#26368;&#20339;&#20570;&#27861;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#20351;&#29992;&#22810;&#20010;&#65288;&#20998;&#38454;&#27573;&#65289;&#39044;&#31639;&#19978;&#20256;&#30340;&#26368;&#20339;&#20570;&#27861;&#26159;&#20160;&#20040;&#65311;</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="&#20351;&#29992;&#25163;&#21160;&#36755;&#20837;&#21019;&#24314;&#30340;&#23614;&#39033;&#39033;&#30446;&#21644;&#20351;&#29992; Quick Capture &#21019;&#24314;&#30340;&#23614;&#39033;&#39033;&#30446;&#20043;&#38388;&#30340;&#25968;&#25454;&#36755;&#20837;&#26377;&#20309;&#19981;&#21516;&#65311;"><span class="mt-icon-article-faq"></span>&#20351;&#29992;&#25163;&#21160;&#36755;&#20837;&#21019;&#24314;&#30340;&#23614;&#39033;&#39033;&#30446;&#21644;&#20351;&#29992; Quick Capture &#21019;&#24314;&#30340;&#23614;&#39033;&#39033;&#30446;&#20043;&#38388;&#30340;&#25968;&#25454;&#36755;&#20837;&#26377;&#20309;&#19981;&#21516;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.85.8D"></span><h5 title="&#20813;">&#20813;</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="&#20813;&#36153; Procore &#36134;&#25143;&#30340;&#26435;&#38480;&#22914;&#20309;&#24037;&#20316;&#65311;"><span class="mt-icon-article-faq"></span>&#20813;&#36153; Procore &#36134;&#25143;&#30340;&#26435;&#38480;&#22914;&#20309;&#24037;&#20316;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.85.AC"></span><h5 title="&#20844;">&#20844;</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="&#20844;&#21496;&#21319;&#32423;&#21040;&#20184;&#36153;&#36134;&#25143;&#20250;&#21457;&#29983;&#20160;&#20040;&#21464;&#21270;&#65311;"><span class="mt-icon-article-faq"></span>&#20844;&#21496;&#21319;&#32423;&#21040;&#20184;&#36153;&#36134;&#25143;&#20250;&#21457;&#29983;&#20160;&#20040;&#21464;&#21270;&#65311;</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="&#20844;&#21496;&#25237;&#26631;&#26495;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#20844;&#21496;&#25237;&#26631;&#26495;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#20844;&#21496;&#30340;&#36164;&#28304;&#35268;&#21010;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#20844;&#21496;&#30340;&#36164;&#28304;&#35268;&#21010;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#20844;&#21496;&#32423;&#21035;&#30446;&#24405;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#20844;&#21496;&#32423;&#21035;&#30446;&#24405;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.85.B3"></span><h5 title="&#20851;">&#20851;</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="&#20851;&#20110; Vapid API &#30340;&#24323;&#29992;&#65292;&#25105;&#38656;&#35201;&#20102;&#35299;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#20851;&#20110; Vapid API &#30340;&#24323;&#29992;&#65292;&#25105;&#38656;&#35201;&#20102;&#35299;&#20160;&#20040;&#65311;</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="&#20851;&#20110;&#22312; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#19978;&#30003;&#35831;&#19994;&#21153;&#65292;&#25105;&#24212;&#35813;&#20102;&#35299;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#20851;&#20110;&#22312; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#19978;&#30003;&#35831;&#19994;&#21153;&#65292;&#25105;&#24212;&#35813;&#20102;&#35299;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/common-questions-apps-and-marketplace" title="&#20851;&#20110;&#24212;&#29992;&#31243;&#24207;&#21644; Procore &#24212;&#29992;&#21830;&#24215;&#30340;&#24120;&#35265;&#38382;&#39064;"><span class="mt-icon-article-faq"></span>&#20851;&#20110;&#24212;&#29992;&#31243;&#24207;&#21644; Procore &#24212;&#29992;&#21830;&#24215;&#30340;&#24120;&#35265;&#38382;&#39064;</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="&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;</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="&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23460;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23460;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;</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="&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#23457;&#25209;&#24037;&#20316;&#27969;&#65292;&#25105;&#24212;&#35813;&#20102;&#35299;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#23457;&#25209;&#24037;&#20316;&#27969;&#65292;&#25105;&#24212;&#35813;&#20102;&#35299;&#20160;&#20040;&#65311;</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="&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#24320;&#21457;&#31080;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#24320;&#21457;&#31080;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;</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="&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#20851;&#20110;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#65292;&#25105;&#24212;&#35813;&#30693;&#36947;&#20160;&#20040;&#65311;</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="&#20851;&#20110;&#36164;&#28304;&#35268;&#21010;&#30340;&#36523;&#20221;&#39564;&#35777;&#26356;&#26032;&#65292;&#25105;&#38656;&#35201;&#20102;&#35299;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#20851;&#20110;&#36164;&#28304;&#35268;&#21010;&#30340;&#36523;&#20221;&#39564;&#35777;&#26356;&#26032;&#65292;&#25105;&#38656;&#35201;&#20102;&#35299;&#20160;&#20040;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.88.9B"></span><h5 title="&#21019;">&#21019;</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="&#21019;&#24314;&#25110;&#26356;&#26032;&#36865;&#23457;&#26102;&#35841;&#20250;&#25910;&#21040;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-faq"></span>&#21019;&#24314;&#25110;&#26356;&#26032;&#36865;&#23457;&#26102;&#35841;&#20250;&#25910;&#21040;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#21019;&#24314;&#25110;&#26356;&#26032;&#39033;&#30446;&#39029;&#38754;&#19978;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-faq"></span>&#21019;&#24314;&#25110;&#26356;&#26032;&#39033;&#30446;&#39029;&#38754;&#19978;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#21019;&#24314;&#32771;&#21220;&#34920;&#26465;&#30446;&#26102;&#65292;&#21487;&#20197;&#38480;&#21046;&#21487;&#20379;&#36873;&#25321;&#30340;&#25104;&#26412;&#32534;&#21495;&#25968;&#37327;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#21019;&#24314;&#32771;&#21220;&#34920;&#26465;&#30446;&#26102;&#65292;&#21487;&#20197;&#38480;&#21046;&#21487;&#20379;&#36873;&#25321;&#30340;&#25104;&#26412;&#32534;&#21495;&#25968;&#37327;&#21527;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.8D.8F"></span><h5 title="&#21327;">&#21327;</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="&#21327;&#35843;&#38382;&#39064;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-faq"></span>&#21327;&#35843;&#38382;&#39064;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.8F.91"></span><h5 title="&#21457;">&#21457;</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="&#21457;&#31080;&#25110;&#25353;&#36827;&#24230;&#25910;&#27454;&#36134;&#21333;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#36873;&#22635;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-faq"></span>&#21457;&#31080;&#25110;&#25353;&#36827;&#24230;&#25910;&#27454;&#36134;&#21333;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#36873;&#22635;&#25110;&#38544;&#34255;&#65311;</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="&#21457;&#31080;&#32852;&#31995;&#20154;&#26159;&#21542;&#38656;&#35201;&ldquo;&#32467;&#31639;&#36992;&#35831;&rdquo;&#25165;&#33021;&#25552;&#20132;&#21457;&#31080;&#65311;"><span class="mt-icon-article-faq"></span>&#21457;&#31080;&#32852;&#31995;&#20154;&#26159;&#21542;&#38656;&#35201;&ldquo;&#32467;&#31639;&#36992;&#35831;&rdquo;&#25165;&#33021;&#25552;&#20132;&#21457;&#31080;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.8F.98"></span><h5 title="&#21464;">&#21464;</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="&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-faq"></span>&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#30340;&#21015;&#26174;&#31034;&#35774;&#32622;&#22914;&#20309;&#24037;&#20316;&#65311;"><span class="mt-icon-article-faq"></span>&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#30340;&#21015;&#26174;&#31034;&#35774;&#32622;&#22914;&#20309;&#24037;&#20316;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.8F.AF"></span><h5 title="&#21487;">&#21487;</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="&#21487;&#20197;&#19968;&#27425;&#23558;&#26435;&#38480;&#27169;&#26495;&#24212;&#29992;&#20110;&#22810;&#20010;&#29992;&#25143;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#21487;&#20197;&#19968;&#27425;&#23558;&#26435;&#38480;&#27169;&#26495;&#24212;&#29992;&#20110;&#22810;&#20010;&#29992;&#25143;&#21527;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-information-is-searchable-using-procore-search" title="&#21487;&#20197;&#20351;&#29992; Procore Search &#25628;&#32034;&#21040;&#21738;&#20123;&#20449;&#24687;&#65311;"><span class="mt-icon-article-faq"></span>&#21487;&#20197;&#20351;&#29992; Procore Search &#25628;&#32034;&#21040;&#21738;&#20123;&#20449;&#24687;&#65311;</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="&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#23558;&#29983;&#20135;&#25968;&#37327;&#28155;&#21152;&#21040;&#25105;&#30340;&#39033;&#30446;&#39044;&#31639;&#20013;&#65311;"><span class="mt-icon-article-faq"></span>&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#23558;&#29983;&#20135;&#25968;&#37327;&#28155;&#21152;&#21040;&#25105;&#30340;&#39033;&#30446;&#39044;&#31639;&#20013;&#65311;</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="&#21487;&#20197;&#20351;&#29992;&#36890;&#20449;&#24037;&#20855;&#21019;&#24314;&#21738;&#20123;&#31867;&#22411;&#30340;&#36890;&#20449;&#65311;"><span class="mt-icon-article-faq"></span>&#21487;&#20197;&#20351;&#29992;&#36890;&#20449;&#24037;&#20855;&#21019;&#24314;&#21738;&#20123;&#31867;&#22411;&#30340;&#36890;&#20449;&#65311;</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="&#21487;&#20197;&#22312;&#23545;&#35805;&#24037;&#20855;&#20013;&#23558;&#21738;&#20123;&#39033;&#30446;&#28155;&#21152;&#21040;&#28040;&#24687;&#20013;&#65311;"><span class="mt-icon-article-faq"></span>&#21487;&#20197;&#22312;&#23545;&#35805;&#24037;&#20855;&#20013;&#23558;&#21738;&#20123;&#39033;&#30446;&#28155;&#21152;&#21040;&#28040;&#24687;&#20013;&#65311;</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="&#21487;&#20197;&#22312;&#29616;&#26377;&#39033;&#30446;&#19978;&#21551;&#29992;&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#21487;&#20197;&#22312;&#29616;&#26377;&#39033;&#30446;&#19978;&#21551;&#29992;&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#21527;&#65311;</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="&#21487;&#20197;&#22312;&#31227;&#21160;&#35774;&#22791;&#19978;&#23558;&#21738;&#20123;&#24037;&#20855;&#29992;&#20110;&#38750;&#27963;&#21160;&#39033;&#30446;&#65311;"><span class="mt-icon-article-faq"></span>&#21487;&#20197;&#22312;&#31227;&#21160;&#35774;&#22791;&#19978;&#23558;&#21738;&#20123;&#24037;&#20855;&#29992;&#20110;&#38750;&#27963;&#21160;&#39033;&#30446;&#65311;</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="&#21487;&#20197;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#29983;&#25104;&#21738;&#20123;&#25253;&#21578;&#31034;&#20363;&#65311;"><span class="mt-icon-article-faq"></span>&#21487;&#20197;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#29983;&#25104;&#21738;&#20123;&#25253;&#21578;&#31034;&#20363;&#65311;</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="&#21487;&#20197;&#23558;&#21738;&#20123;&#25968;&#25454;&#21015;&#28155;&#21152;&#21040;&#33258;&#23450;&#20041;&#36865;&#23457;&#25253;&#21578;&#20013;&#65311;"><span class="mt-icon-article-faq"></span>&#21487;&#20197;&#23558;&#21738;&#20123;&#25968;&#25454;&#21015;&#28155;&#21152;&#21040;&#33258;&#23450;&#20041;&#36865;&#23457;&#25253;&#21578;&#20013;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-the-drawing-markup-tool-be-disabled" title="&#21487;&#20197;&#31105;&#29992;&#22270;&#32440;&#26631;&#35760;&#24037;&#20855;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#21487;&#20197;&#31105;&#29992;&#22270;&#32440;&#26631;&#35760;&#24037;&#20855;&#21527;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.90.88"></span><h5 title="&#21512;">&#21512;</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="&#21512;&#32422;&ldquo;&#26631;&#39064;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-faq"></span>&#21512;&#32422;&ldquo;&#26631;&#39064;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#21512;&#32422;&ldquo;&#32534;&#21495; (#)&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-faq"></span>&#21512;&#32422;&ldquo;&#32534;&#21495; (#)&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#21512;&#32422;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#21518;&#65292;&#25105;&#33021;&#21542;&#32534;&#36753;&#25110;&#21024;&#38500;&#65311;"><span class="mt-icon-article-faq"></span>&#21512;&#32422;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#21518;&#65292;&#25105;&#33021;&#21542;&#32534;&#36753;&#25110;&#21024;&#38500;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-granular-permissions-are-available-for-commitments-workflows" title="&#21512;&#32422;&#24037;&#20316;&#27969;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#21512;&#32422;&#24037;&#20316;&#27969;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#21512;&#32422;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-faq"></span>&#21512;&#32422;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#21512;&#32422;&#24037;&#20855;&#30340;&#21512;&#21516;&#26631;&#31614;&#39029;&#20013;&#30340;&#40664;&#35748;&#21015;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-faq"></span>&#21512;&#32422;&#24037;&#20855;&#30340;&#21512;&#21516;&#26631;&#31614;&#39029;&#20013;&#30340;&#40664;&#35748;&#21015;&#26377;&#21738;&#20123;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.90.AF"></span><h5 title="&#21551;">&#21551;</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="&#21551;&#29992;&ldquo;&#21160;&#24577;&#35745;&#31639;&#23457;&#25209;&#32773;&#25130;&#27490;&#26085;&#26399;&rdquo;&#21518;&#65292;&#29616;&#26377;&#36865;&#23457;&#26377;&#20160;&#20040;&#21464;&#21270;&#65311;"><span class="mt-icon-article-faq"></span>&#21551;&#29992;&ldquo;&#21160;&#24577;&#35745;&#31639;&#23457;&#25209;&#32773;&#25130;&#27490;&#26085;&#26399;&rdquo;&#21518;&#65292;&#29616;&#26377;&#36865;&#23457;&#26377;&#20160;&#20040;&#21464;&#21270;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.93.AA"></span><h5 title="&#21738;">&#21738;</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="&#21738;&#20123; Groundbreak 2021 &#20250;&#35758;&#26377;&#36164;&#26684;&#33719;&#24471; CE &#23398;&#20998;&#65311;"><span class="mt-icon-article-faq"></span>&#21738;&#20123; Groundbreak 2021 &#20250;&#35758;&#26377;&#36164;&#26684;&#33719;&#24471; CE &#23398;&#20998;&#65311;</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="&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;"><span class="mt-icon-article-faq"></span>&#21738;&#20123; Microsoft Excel &#25991;&#20214;&#29256;&#26412;&#21487;&#20197;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#65311;</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="&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;"><span class="mt-icon-article-faq"></span>&#21738;&#20123; Procore &#24037;&#20855;&#21487;&#35753;&#25105;&#22312;&#22320;&#22270;&#35270;&#22270;&#20013;&#26597;&#30475;&#25968;&#23383;&#22270;&#20687;&#38468;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-classifications" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&ldquo;&#24037;&#31181;&rdquo;&#65311;"><span class="mt-icon-article-faq"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&ldquo;&#24037;&#31181;&rdquo;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-work-breakdown-structure" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#65311;"><span class="mt-icon-article-faq"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-workflows" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#27969;&#65311;"><span class="mt-icon-article-faq"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#24037;&#20316;&#27969;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-tools-support-granular-permissions" title="&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#21738;&#20123; Procore &#24037;&#20855;&#25903;&#25345;&#32454;&#20998;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-platforms-support-azure-ad-sso" title="&#21738;&#20123; Procore &#24179;&#21488;&#25903;&#25345;Azure AD &#65288;Entra ID&#65289;&#21333;&#28857;&#30331;&#24405;&#65311;"><span class="mt-icon-article-faq"></span>&#21738;&#20123; Procore &#24179;&#21488;&#25903;&#25345;Azure AD &#65288;Entra ID&#65289;&#21333;&#28857;&#30331;&#24405;&#65311;</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="&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#20250;&#26356;&#26032;&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#20013;&#30340;&#25968;&#25454;&#65311;"><span class="mt-icon-article-faq"></span>&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#20250;&#26356;&#26032;&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#20013;&#30340;&#25968;&#25454;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-procore-project-tools-support-the-docusign-integration" title="&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#25903;&#25345; DocuSign&reg; &#38598;&#25104;&#65311;"><span class="mt-icon-article-faq"></span>&#21738;&#20123; Procore &#39033;&#30446;&#24037;&#20855;&#25903;&#25345; DocuSign&reg; &#38598;&#25104;&#65311;</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="&#21738;&#20123;&#20027;&#21512;&#21516;&#21644;&#20027;&#21512;&#21516;&#21464;&#26356;&#36890;&#30693;&#21333;&#23383;&#27573;&#19982; Procore &#21644; Viewpoint Spectrum &#21516;&#27493;&#65311;"><span class="mt-icon-article-faq"></span>&#21738;&#20123;&#20027;&#21512;&#21516;&#21644;&#20027;&#21512;&#21516;&#21464;&#26356;&#36890;&#30693;&#21333;&#23383;&#27573;&#19982; Procore &#21644; Viewpoint Spectrum &#21516;&#27493;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-tools-can-attach-document-management-files" title="&#21738;&#20123;&#24037;&#20855;&#21487;&#20197;&#28155;&#21152;&#25991;&#26723;&#31649;&#29702;&#25991;&#20214;&#65311;"><span class="mt-icon-article-faq"></span>&#21738;&#20123;&#24037;&#20855;&#21487;&#20197;&#28155;&#21152;&#25991;&#26723;&#31649;&#29702;&#25991;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-logos-appear-on-pdf-exports-in-procore" title="&#21738;&#20123;&#24509;&#26631;&#20250;&#22312; Procore &#30340; PDF &#23548;&#20986;&#20013;&#26174;&#31034;&#65311;"><span class="mt-icon-article-faq"></span>&#21738;&#20123;&#24509;&#26631;&#20250;&#22312; Procore &#30340; PDF &#23548;&#20986;&#20013;&#26174;&#31034;&#65311;</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="&#21738;&#20123;&#25968;&#25454;&#19982; Ryvit &#38598;&#25104;&#36830;&#25509;&#22120;&#21516;&#27493;&#65311;"><span class="mt-icon-article-faq"></span>&#21738;&#20123;&#25968;&#25454;&#19982; Ryvit &#38598;&#25104;&#36830;&#25509;&#22120;&#21516;&#27493;&#65311;</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="&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#23376;&#20316;&#19994;&rdquo;&#27010;&#24565;&#65311;"><span class="mt-icon-article-faq"></span>&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#23376;&#20316;&#19994;&rdquo;&#27010;&#24565;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-integrated-erp-systems-support-the-category-concept" title="&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#27010;&#24565;&#65311;"><span class="mt-icon-article-faq"></span>&#21738;&#20123;&#38598;&#25104; ERP &#31995;&#32479;&#25903;&#25345;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#27010;&#24565;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-project-tools-support-conversations" title="&#21738;&#20123;&#39033;&#30446;&#24037;&#20855;&#25903;&#25345;&#23545;&#35805;&#65311;"><span class="mt-icon-article-faq"></span>&#21738;&#20123;&#39033;&#30446;&#24037;&#20855;&#25903;&#25345;&#23545;&#35805;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.9B.BE"></span><h5 title="&#22270;">&#22270;</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="&#22270;&#32440;&#19978;&#30340;&#23614;&#39033;&#39033;&#30446;&#39068;&#33394;&#20195;&#30721;&#26377;&#20160;&#20040;&#21547;&#20041;&#65311;"><span class="mt-icon-article-faq"></span>&#22270;&#32440;&#19978;&#30340;&#23614;&#39033;&#39033;&#30446;&#39068;&#33394;&#20195;&#30721;&#26377;&#20160;&#20040;&#21547;&#20041;&#65311;</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="&#22270;&#32440;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-faq"></span>&#22270;&#32440;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.9C.A8"></span><h5 title="&#22312;">&#22312;</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="&#22312; Procore &#20013;&#65292;&#20445;&#38505;&#30340;&#40664;&#35748;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;"><span class="mt-icon-article-faq"></span>&#22312; Procore &#20013;&#65292;&#20445;&#38505;&#30340;&#40664;&#35748;&#29366;&#24577;&#26377;&#21738;&#20123;&#65311;</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="&#22312; Procore &#20013;&#65292;&#25105;&#24212;&#35813;&#23558;&#25237;&#26631;&#25991;&#20214;&#25918;&#22312;&#21738;&#37324;&#65311;"><span class="mt-icon-article-faq"></span>&#22312; Procore &#20013;&#65292;&#25105;&#24212;&#35813;&#23558;&#25237;&#26631;&#25991;&#20214;&#25918;&#22312;&#21738;&#37324;&#65311;</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="&#22312; Procore &#20013;&#20026; RFI &#32534;&#21495;&#26377;&#21738;&#20123;&#36873;&#39033;&#65311;"><span class="mt-icon-article-faq"></span>&#22312; Procore &#20013;&#20026; RFI &#32534;&#21495;&#26377;&#21738;&#20123;&#36873;&#39033;&#65311;</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="&#22312; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#19978;&#21015;&#20986;&#30340;&#20844;&#21496;&#65292;&#25105;&#21487;&#20197;&#26597;&#30475;&#21738;&#20123;&#27963;&#21160;&#25351;&#26631;&#65311;"><span class="mt-icon-article-faq"></span>&#22312; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#19978;&#21015;&#20986;&#30340;&#20844;&#21496;&#65292;&#25105;&#21487;&#20197;&#26597;&#30475;&#21738;&#20123;&#27963;&#21160;&#25351;&#26631;&#65311;</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="&#22312; Procore &#31227;&#21160;&#24212;&#29992;&#31243;&#24207;&#19978;&#65292;&#30446;&#21069;&#21738;&#20123;&#24037;&#20855;&#25903;&#25345;&ldquo;&#20070;&#31614;&rdquo;&#21151;&#33021;&#65311;"><span class="mt-icon-article-faq"></span>&#22312; Procore &#31227;&#21160;&#24212;&#29992;&#31243;&#24207;&#19978;&#65292;&#30446;&#21069;&#21738;&#20123;&#24037;&#20855;&#25903;&#25345;&ldquo;&#20070;&#31614;&rdquo;&#21151;&#33021;&#65311;</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="&#22312; QuickBooks&reg; &#20013;&#21551;&#29992;&#21738;&#20010;&#35774;&#32622;&#25165;&#33021;&#20351;&#29992; ERP &#38598;&#25104;&#24037;&#20855;&#23548;&#20986;&#21457;&#31080;&#65311;"><span class="mt-icon-article-faq"></span>&#22312; QuickBooks&reg; &#20013;&#21551;&#29992;&#21738;&#20010;&#35774;&#32622;&#25165;&#33021;&#20351;&#29992; ERP &#38598;&#25104;&#24037;&#20855;&#23548;&#20986;&#21457;&#31080;&#65311;</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="&#22312;&#20801;&#35768;&#19979;&#28216;&#21327;&#20316;&#32773;&#22312; Procore &#20013;&#25552;&#20132;&#21457;&#31080;&#20043;&#21069;&#65292;&#25105;&#20204;&#38656;&#35201;&#32771;&#34385;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#22312;&#20801;&#35768;&#19979;&#28216;&#21327;&#20316;&#32773;&#22312; Procore &#20013;&#25552;&#20132;&#21457;&#31080;&#20043;&#21069;&#65292;&#25105;&#20204;&#38656;&#35201;&#32771;&#34385;&#20160;&#20040;&#65311;</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="&#22312;&#21738;&#37324;&#21487;&#20197;&#25214;&#21040;&#29992;&#20110;&#21521; Procore &#21457;&#36865;&#24037;&#20316;&#26085;&#24535;&#12289;&#29031;&#29255;&#12289;&#25991;&#26723;&#21644;&#30005;&#23376;&#37038;&#20214;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&#65311;"><span class="mt-icon-article-faq"></span>&#22312;&#21738;&#37324;&#21487;&#20197;&#25214;&#21040;&#29992;&#20110;&#21521; Procore &#21457;&#36865;&#24037;&#20316;&#26085;&#24535;&#12289;&#29031;&#29255;&#12289;&#25991;&#26723;&#21644;&#30005;&#23376;&#37038;&#20214;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&#65311;</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="&#22312;&#23457;&#25209;&#27969;&#31243;&#20013;&#65292;&#22914;&#20309;&#20174;&#36865;&#23457;&#24037;&#20316;&#27969;&#20013;&#31227;&#38500;&#36865;&#23457;&#32773;&#25110;&#23457;&#25209;&#32773;&#65311;"><span class="mt-icon-article-faq"></span>&#22312;&#23457;&#25209;&#27969;&#31243;&#20013;&#65292;&#22914;&#20309;&#20174;&#36865;&#23457;&#24037;&#20316;&#27969;&#20013;&#31227;&#38500;&#36865;&#23457;&#32773;&#25110;&#23457;&#25209;&#32773;&#65311;</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="&#22312;&#23548;&#20986;&#21040; ERP &#26102;&#65292;&#22914;&#20309;&#35299;&#20915;&ldquo;&#28155;&#21152;&#12289;&#20462;&#25913;&#25110;&#21024;&#38500; XXXXXX-XXXXXXXXXXX &#26102;&#20986;&#38169;&#65292;&#22240;&#20026;&#24050;&#22312;&#20351;&#29992;&#20013;&#12290;&rdquo;&#38169;&#35823;"><span class="mt-icon-article-faq"></span>&#22312;&#23548;&#20986;&#21040; ERP &#26102;&#65292;&#22914;&#20309;&#35299;&#20915;&ldquo;&#28155;&#21152;&#12289;&#20462;&#25913;&#25110;&#21024;&#38500; XXXXXX-XXXXXXXXXXX &#26102;&#20986;&#38169;&#65292;&#22240;&#20026;&#24050;&#22312;&#20351;&#29992;&#20013;&#12290;&rdquo;&#38169;&#35823;</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="&#22312;&#23884;&#20837;&#24335;&#24212;&#29992;&#31243;&#24207;&#21644; Power BI &#26381;&#21153;&#20013;&#26597;&#30475;Procore Analytics&#25253;&#21578;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>&#22312;&#23884;&#20837;&#24335;&#24212;&#29992;&#31243;&#24207;&#21644; Power BI &#26381;&#21153;&#20013;&#26597;&#30475;Procore Analytics&#25253;&#21578;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#22312;&#25105;&#30340; Procore &#20844;&#21496;&#36134;&#25143;&#20013;&#23454;&#26045; SSO &#20043;&#21069;&#65292;&#22914;&#20309;&#22312;&#27801;&#31665;&#29615;&#22659;&#20013;&#37197;&#32622; SSO &#20197;&#36827;&#34892;&#27979;&#35797;&#65311;"><span class="mt-icon-article-faq"></span>&#22312;&#25105;&#30340; Procore &#20844;&#21496;&#36134;&#25143;&#20013;&#23454;&#26045; SSO &#20043;&#21069;&#65292;&#22914;&#20309;&#22312;&#27801;&#31665;&#29615;&#22659;&#20013;&#37197;&#32622; SSO &#20197;&#36827;&#34892;&#27979;&#35797;&#65311;</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="&#22312;&#26576;&#20123;&#27983;&#35272;&#22120;&#19978;&#25773;&#25918;&#35748;&#35777;&#35270;&#39057;&#30340;&#40664;&#35748;&#34892;&#20026;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#22312;&#26576;&#20123;&#27983;&#35272;&#22120;&#19978;&#25773;&#25918;&#35748;&#35777;&#35270;&#39057;&#30340;&#40664;&#35748;&#34892;&#20026;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-fields-are-searched-in-the-directory-tool" title="&#22312;&#30446;&#24405;&#24037;&#20855;&#20013;&#21487;&#25628;&#32034;&#21040;&#21738;&#20123;&#23383;&#27573;&#65311;"><span class="mt-icon-article-faq"></span>&#22312;&#30446;&#24405;&#24037;&#20855;&#20013;&#21487;&#25628;&#32034;&#21040;&#21738;&#20123;&#23383;&#27573;&#65311;</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="&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#30340;&#25237;&#26631;&#36807;&#31243;&#20013;&#20250;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-faq"></span>&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#30340;&#25237;&#26631;&#36807;&#31243;&#20013;&#20250;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.A4.9A"></span><h5 title="&#22810;">&#22810;</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="&#22810;&#20010;&#29992;&#25143;&#26159;&#21542;&#21487;&#20197;&#22312;&#20272;&#31639;&#24037;&#20855;&#20013;&#21516;&#26102;&#36827;&#34892;&#20272;&#31639;&#21644;&#25187;&#20943;&#65311;"><span class="mt-icon-article-faq"></span>&#22810;&#20010;&#29992;&#25143;&#26159;&#21542;&#21487;&#20197;&#22312;&#20272;&#31639;&#24037;&#20855;&#20013;&#21516;&#26102;&#36827;&#34892;&#20272;&#31639;&#21644;&#25187;&#20943;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.A6.82"></span><h5 title="&#22914;">&#22914;</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="&#22914;&#20309;&#19968;&#27425;&#23558;&#22810;&#20010;&#25991;&#20214;&#28155;&#21152;&#21040;&#20256;&#36755;&#35760;&#24405;&#20013;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#19968;&#27425;&#23558;&#22810;&#20010;&#25991;&#20214;&#28155;&#21152;&#21040;&#20256;&#36755;&#35760;&#24405;&#20013;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-download-the-google-chrome-browser" title="&#22914;&#20309;&#19979;&#36733; Google Chrome &#27983;&#35272;&#22120;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#19979;&#36733; Google Chrome &#27983;&#35272;&#22120;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-download-the-mozilla-firefox-browser" title="&#22914;&#20309;&#19979;&#36733; Mozilla Firefox &#27983;&#35272;&#22120;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#19979;&#36733; Mozilla Firefox &#27983;&#35272;&#22120;&#65311;</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="&#22914;&#20309;&#19979;&#36733; Procore &#30340; Android &#31227;&#21160;&#24212;&#29992;&#31243;&#24207;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#19979;&#36733; Procore &#30340; Android &#31227;&#21160;&#24212;&#29992;&#31243;&#24207;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-share-feedback-with-procore" title="&#22914;&#20309;&#19982; Procore &#20998;&#20139;&#21453;&#39304;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#19982; Procore &#20998;&#20139;&#21453;&#39304;&#65311;</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="&#22914;&#20309;&#20026; mailto &#38142;&#25509;&#26356;&#25913;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#30340;&#40664;&#35748;&#30005;&#23376;&#37038;&#20214;&#23458;&#25143;&#31471;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#20026; mailto &#38142;&#25509;&#26356;&#25913;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#30340;&#40664;&#35748;&#30005;&#23376;&#37038;&#20214;&#23458;&#25143;&#31471;&#65311;</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="&#22914;&#20309;&#20026; Procore + QuickBooks &#35774;&#32622;&#20998;&#21253;&#21830;&#21457;&#31080;&#21644;&#20184;&#27454;&#21151;&#33021;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#20026; Procore + QuickBooks &#35774;&#32622;&#20998;&#21253;&#21830;&#21457;&#31080;&#21644;&#20184;&#27454;&#21151;&#33021;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-create-a-bookmark-to-procore" title="&#22914;&#20309;&#20026; Procore &#21019;&#24314;&#20070;&#31614;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#20026; Procore &#21019;&#24314;&#20070;&#31614;&#65311;</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="&#22914;&#20309;&#20026; Procore &#37197;&#32622; Okta &#21333;&#28857;&#30331;&#24405; (SAML 2.0)&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#20026; Procore &#37197;&#32622; Okta &#21333;&#28857;&#30331;&#24405; (SAML 2.0)&#65311;</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="&#22914;&#20309;&#20026;&#21457;&#31080;&#21019;&#24314;&#32467;&#31639;&#26399;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#20026;&#21457;&#31080;&#21019;&#24314;&#32467;&#31639;&#26399;&#65311;</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="&#22914;&#20309;&#20026;&#23454;&#26102;&#20154;&#24037;&#29983;&#20135;&#21147;&#35774;&#32622;&#39044;&#31639;&#35270;&#22270;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#20026;&#23454;&#26102;&#20154;&#24037;&#29983;&#20135;&#21147;&#35774;&#32622;&#39044;&#31639;&#35270;&#22270;&#65311;</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="&#22914;&#20309;&#20026;&#24037;&#20316;&#26085;&#24535;&#21551;&#29992;&#20854;&#20182;&#21171;&#21160;&#21147;&#20154;&#24037;&#31867;&#22411;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#20026;&#24037;&#20316;&#26085;&#24535;&#21551;&#29992;&#20854;&#20182;&#21171;&#21160;&#21147;&#20154;&#24037;&#31867;&#22411;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-task-codes-configured-for-time-entry" title="&#22914;&#20309;&#20026;&#24037;&#26102;&#26465;&#30446;&#37197;&#32622;&#20219;&#21153;&#32534;&#21495;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#20026;&#24037;&#26102;&#26465;&#30446;&#37197;&#32622;&#20219;&#21153;&#32534;&#21495;&#65311;</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="&#22914;&#20309;&#20026;&#24102;&#35745;&#26102;&#30340;&#22810;&#23618;&#23457;&#25209;&#37197;&#32622;&#29992;&#25143;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#20026;&#24102;&#35745;&#26102;&#30340;&#22810;&#23618;&#23457;&#25209;&#37197;&#32622;&#29992;&#25143;&#26435;&#38480;&#65311;</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="&#22914;&#20309;&#20026;&#25105;&#30340;&#39033;&#30446;&#36873;&#25321;&#40664;&#35748;&#23614;&#39033;&#39033;&#30446;&#32463;&#29702;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#20026;&#25105;&#30340;&#39033;&#30446;&#36873;&#25321;&#40664;&#35748;&#23614;&#39033;&#39033;&#30446;&#32463;&#29702;&#65311;</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="&#22914;&#20309;&#20026;&#25237;&#26631;&#35774;&#32622;&#20250;&#35745;&#26041;&#27861;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#20026;&#25237;&#26631;&#35774;&#32622;&#20250;&#35745;&#26041;&#27861;&#65311;</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="&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25104;&#26412;&#39033;&#30340;&#21333;&#20010;&#20540;&#32534;&#21046;&#39044;&#31639;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25104;&#26412;&#39033;&#30340;&#21333;&#20010;&#20540;&#32534;&#21046;&#39044;&#31639;&#65311;</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="&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#28155;&#21152;&#33258;&#23450;&#20041;&#25237;&#26631;&#34920;&#21333;&#27169;&#26495;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#28155;&#21152;&#33258;&#23450;&#20041;&#25237;&#26631;&#34920;&#21333;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#39033;&#30446;&#20013;&#30340;&#25991;&#26723;&#35831;&#27714;&#25991;&#20214;&#22841;&#27169;&#26495;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#39033;&#30446;&#20013;&#30340;&#25991;&#26723;&#35831;&#27714;&#25991;&#20214;&#22841;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#39033;&#30446;&#21551;&#29992;&#25104;&#26412;&#20998;&#37197;&#21644;&#32452;&#20214;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#20026;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#39033;&#30446;&#21551;&#29992;&#25104;&#26412;&#20998;&#37197;&#21644;&#32452;&#20214;&#65311;</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="&#22914;&#20309;&#20026;&#36890;&#20449;&#39033;&#37197;&#32622;&#38544;&#31169;&#35774;&#32622;&#65311;"><span class="mt-icon-article-tutorial"></span>&#22914;&#20309;&#20026;&#36890;&#20449;&#39033;&#37197;&#32622;&#38544;&#31169;&#35774;&#32622;&#65311;</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="&#22914;&#20309;&#20102;&#35299;&#25105;&#30340; DocuSign &#36134;&#25143;&#26159;&#21542;&#19982; Procore &#21516;&#27493;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#20102;&#35299;&#25105;&#30340; DocuSign &#36134;&#25143;&#26159;&#21542;&#19982; Procore &#21516;&#27493;&#65311;</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="&#22914;&#20309;&#20174;&#33258;&#23450;&#20041; RFI &#25253;&#21578;&#20013;&#31579;&#36873;&#25481;&ldquo;&#24050;&#22238;&#25910;&rdquo;&#39033;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#20174;&#33258;&#23450;&#20041; RFI &#25253;&#21578;&#20013;&#31579;&#36873;&#25481;&ldquo;&#24050;&#22238;&#25910;&rdquo;&#39033;&#65311;</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="&#22914;&#20309;&#20351;&#29992; Procore &#30340;&#20107;&#20214;&#24037;&#20855;&#35760;&#24405;&#20896;&#29366;&#30149;&#27602; (COVID-19) &#24863;&#26579;&#20449;&#24687;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#20351;&#29992; Procore &#30340;&#20107;&#20214;&#24037;&#20855;&#35760;&#24405;&#20896;&#29366;&#30149;&#27602; (COVID-19) &#24863;&#26579;&#20449;&#24687;&#65311;</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="&#22914;&#20309;&#20351;&#29992; Procore &#35774;&#32622;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#20351;&#29992; Procore &#35774;&#32622;&#21333;&#28857;&#30331;&#24405; (SSO)&#65311;</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="&#22914;&#20309;&#20351;&#29992;Microsoft Azure AD &#65288;Entra ID&#65289;&#21333;&#28857;&#30331;&#24405;&#26469;&#30331;&#24405; Procore&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#20351;&#29992;Microsoft Azure AD &#65288;Entra ID&#65289;&#21333;&#28857;&#30331;&#24405;&#26469;&#30331;&#24405; Procore&#65311;</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="&#22914;&#20309;&#20351;&#29992;&#23548;&#33322;&#26639;&#36820;&#22238;&#20844;&#21496;&#39033;&#30446;&#38598;&#21512;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#20351;&#29992;&#23548;&#33322;&#26639;&#36820;&#22238;&#20844;&#21496;&#39033;&#30446;&#38598;&#21512;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-use-the-notification-center" title="&#22914;&#20309;&#20351;&#29992;&#36890;&#30693;&#20013;&#24515;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#20351;&#29992;&#36890;&#30693;&#20013;&#24515;&#65311;</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="&#22914;&#20309;&#20801;&#35768;&ldquo;&#26631;&#20934;&rdquo;&#29992;&#25143;&#28155;&#21152;&#21040;&#39033;&#30446;&#30446;&#24405;&#65311;"><span class="mt-icon-article-tutorial"></span>&#22914;&#20309;&#20801;&#35768;&ldquo;&#26631;&#20934;&rdquo;&#29992;&#25143;&#28155;&#21152;&#21040;&#39033;&#30446;&#30446;&#24405;&#65311;</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="&#22914;&#20309;&#21019;&#24314; Procore &#30340;&#26700;&#38754;&#24555;&#25463;&#26041;&#24335;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#21019;&#24314; Procore &#30340;&#26700;&#38754;&#24555;&#25463;&#26041;&#24335;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-create-a-fillable-pdf" title="&#22914;&#20309;&#21019;&#24314;&#21487;&#22635;&#20889; PDF&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#21019;&#24314;&#21487;&#22635;&#20889; PDF&#65311;</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="&#22914;&#20309;&#21024;&#38500;&#24050;&#33719;&#25209;&#21464;&#26356;&#36890;&#30693;&#21333;&#20013;&#30340;&#26126;&#32454;&#39033;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#21024;&#38500;&#24050;&#33719;&#25209;&#21464;&#26356;&#36890;&#30693;&#21333;&#20013;&#30340;&#26126;&#32454;&#39033;&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</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="&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#30340;&#39044;&#31639;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#21028;&#26029; Procore &#39033;&#30446;&#30340;&#39044;&#31639;&#26159;&#21542;&#24050;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#21516;&#27493;&#65311;</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="&#22914;&#20309;&#21028;&#26029;&#25105;&#26377;&#20813;&#36153;&#36824;&#26159;&#20184;&#36153; Procore &#20844;&#21496;&#36134;&#25143;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#21028;&#26029;&#25105;&#26377;&#20813;&#36153;&#36824;&#26159;&#20184;&#36153; Procore &#20844;&#21496;&#36134;&#25143;&#65311;</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="&#22914;&#20309;&#21521; Procore &#28155;&#21152;&#22836;&#20687;&#25110;&#20010;&#20154;&#36164;&#26009;&#29031;&#29255;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#21521; Procore &#28155;&#21152;&#22836;&#20687;&#25110;&#20010;&#20154;&#36164;&#26009;&#29031;&#29255;&#65311;</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="&#22914;&#20309;&#21521;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#20379;&#24212;&#21830;&#37197;&#32622;&#25991;&#20214;&#28155;&#21152;&#20854;&#20182;&#32852;&#31995;&#20154;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#21521;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#20379;&#24212;&#21830;&#37197;&#32622;&#25991;&#20214;&#28155;&#21152;&#20854;&#20182;&#32852;&#31995;&#20154;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-enable-the-docusign-integration" title="&#22914;&#20309;&#21551;&#29992; DocuSign&reg; &#38598;&#25104;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#21551;&#29992; DocuSign&reg; &#38598;&#25104;&#65311;</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="&#22914;&#20309;&#22312; Excel &#20013;&#20445;&#30041;&#25104;&#26412;&#32534;&#21495;&#26684;&#24335;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312; Excel &#20013;&#20445;&#30041;&#25104;&#26412;&#32534;&#21495;&#26684;&#24335;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-use-tags-keywords-in-procore" title="&#22914;&#20309;&#22312; Procore &#20013;&#20351;&#29992;&#26631;&#31614;/&#20851;&#38190;&#35789;&#65311;"><span class="mt-icon-article-tutorial"></span>&#22914;&#20309;&#22312; Procore &#20013;&#20351;&#29992;&#26631;&#31614;/&#20851;&#38190;&#35789;&#65311;</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="&#22914;&#20309;&#22312; Procore &#20013;&#21019;&#24314;&#25110;&#21152;&#20837; Zoom &#20250;&#35758;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312; Procore &#20013;&#21019;&#24314;&#25110;&#21152;&#20837; Zoom &#20250;&#35758;&#65311;</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="&#22914;&#20309;&#22312; Procore &#20013;&#23436;&#25104;&#20197;&#21069;&#22312;&#29420;&#31435; Procore Estimating &#24212;&#29992;&#31243;&#24207;&#20013;&#23436;&#25104;&#30340;&#20219;&#21153;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312; Procore &#20013;&#23436;&#25104;&#20197;&#21069;&#22312;&#29420;&#31435; Procore Estimating &#24212;&#29992;&#31243;&#24207;&#20013;&#23436;&#25104;&#30340;&#20219;&#21153;&#65311;</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="&#22914;&#20309;&#22312; Procore &#20013;&#23558;&#24037;&#20855;&#28155;&#21152;&#21040;&#25910;&#34255;&#22841;&#21015;&#34920;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312; Procore &#20013;&#23558;&#24037;&#20855;&#28155;&#21152;&#21040;&#25910;&#34255;&#22841;&#21015;&#34920;&#65311;</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="&#22914;&#20309;&#22312; Procore &#20013;&#30340;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#39033;&#30446;&#31649;&#29702;&#24037;&#20855;&#21253;&#20043;&#38388;&#20999;&#25442;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312; Procore &#20013;&#30340;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#39033;&#30446;&#31649;&#29702;&#24037;&#20855;&#21253;&#20043;&#38388;&#20999;&#25442;&#65311;</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="&#22914;&#20309;&#22312; Procore &#20013;&#32534;&#36753;&#39033;&#30446;&#36827;&#24230;&#35745;&#21010;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312; Procore &#20013;&#32534;&#36753;&#39033;&#30446;&#36827;&#24230;&#35745;&#21010;&#65311;</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="&#22914;&#20309;&#22312; Procore &#20013;&#35774;&#32622;&#21644;&#36820;&#36824;&#20998;&#21253;&#21830;&#21457;&#31080;&#30340;&#20445;&#30041;&#37329;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312; Procore &#20013;&#35774;&#32622;&#21644;&#36820;&#36824;&#20998;&#21253;&#21830;&#21457;&#31080;&#30340;&#20445;&#30041;&#37329;&#65311;</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="&#22914;&#20309;&#22312; Procore &#30340;&#39044;&#31639;&#23548;&#20837;&#27169;&#26495;&#20013;&#28155;&#21152;&#22522;&#20110;&#21333;&#20301;&#30340;&#26126;&#32454;&#39033;&#35814;&#32454;&#20449;&#24687;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312; Procore &#30340;&#39044;&#31639;&#23548;&#20837;&#27169;&#26495;&#20013;&#28155;&#21152;&#22522;&#20110;&#21333;&#20301;&#30340;&#26126;&#32454;&#39033;&#35814;&#32454;&#20449;&#24687;&#65311;</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="&#22914;&#20309;&#22312; Procore &#39033;&#30446;&#20013;&#20351;&#29992;&#31246;&#21153;&#20195;&#30721;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312; Procore &#39033;&#30446;&#20013;&#20351;&#29992;&#31246;&#21153;&#20195;&#30721;&#65311;</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="&#22914;&#20309;&#22312; Web &#27983;&#35272;&#22120;&#20013;&#25191;&#34892;&#30828;&#21047;&#26032;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312; Web &#27983;&#35272;&#22120;&#20013;&#25191;&#34892;&#30828;&#21047;&#26032;&#65311;</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="&#22914;&#20309;&#22312;&#20027;&#39029;&#19978;&#26174;&#31034;&#39033;&#30446;&#26085;&#26399;&#21015;&#34920;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#20027;&#39029;&#19978;&#26174;&#31034;&#39033;&#30446;&#26085;&#26399;&#21015;&#34920;&#65311;</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="&#22914;&#20309;&#22312;&#20250;&#35758; PDF &#19978;&#26174;&#31034;&#20197;&#21069;&#30340;&#20250;&#35758;&#32426;&#35201;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#20250;&#35758; PDF &#19978;&#26174;&#31034;&#20197;&#21069;&#30340;&#20250;&#35758;&#32426;&#35201;&#65311;</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="&#22914;&#20309;&#22312;&#20844;&#21496;&#32423;&#21035;&#24037;&#20316;&#27969;&#24037;&#20855;&#20013;&#26356;&#26032;&#29256;&#26412;&#21495;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#20844;&#21496;&#32423;&#21035;&#24037;&#20316;&#27969;&#24037;&#20855;&#20013;&#26356;&#26032;&#29256;&#26412;&#21495;&#65311;</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="&#22914;&#20309;&#22312;&#21457;&#31080;&#20013;&#20026;&#24211;&#23384;&#26448;&#26009;&#24320;&#20855;&#36134;&#21333;&#65311; &#65288;&#27979;&#35797;&#29256;&#65289;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#21457;&#31080;&#20013;&#20026;&#24211;&#23384;&#26448;&#26009;&#24320;&#20855;&#36134;&#21333;&#65311; &#65288;&#27979;&#35797;&#29256;&#65289;</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="&#22914;&#20309;&#22312;&#25104;&#26412;&#36319;&#36394;&#22120;&#20013;&#35774;&#32622;&#31199;&#25143;&#26045;&#24037;&#36864;&#27454;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#25104;&#26412;&#36319;&#36394;&#22120;&#20013;&#35774;&#32622;&#31199;&#25143;&#26045;&#24037;&#36864;&#27454;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340; LinkedIn &#20010;&#20154;&#36164;&#26009;&#20013;&#28155;&#21152;&ldquo;Procore&rdquo;&#20316;&#20026;&#21487;&#35748;&#21487;&#30340;&#25216;&#33021;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#25105;&#30340; LinkedIn &#20010;&#20154;&#36164;&#26009;&#20013;&#28155;&#21152;&ldquo;Procore&rdquo;&#20316;&#20026;&#21487;&#35748;&#21487;&#30340;&#25216;&#33021;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[NextWave Safety Solutions] &#26799;&#23376;&#23433;&#20840;&#24615; - &#31616;&#21333;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[NextWave Safety Solutions] &#26799;&#23376;&#23433;&#20840;&#24615; - &#31616;&#21333;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[NextWave Safety Solutions] &#28151;&#20957;&#22303;&#39044;&#27975;&#27880;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[NextWave Safety Solutions] &#28151;&#20957;&#22303;&#39044;&#27975;&#27880;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OAC Management Inc.] &#38138;&#30422;&#23627;&#39030;&#21069;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OAC Management Inc.] &#38138;&#30422;&#23627;&#39030;&#21069;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OAC Management Inc.] &#39044;&#22238;&#22635;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OAC Management Inc.] &#39044;&#22238;&#22635;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OAC Management Inc.] &#39044;&#24178;&#22681;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OAC Management Inc.] &#39044;&#24178;&#22681;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OSHA] &#19978;&#38145;/&#25346;&#29260;&#31243;&#24207;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OSHA] &#19978;&#38145;/&#25346;&#29260;&#31243;&#24207;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OSHA] &#26448;&#26009;&#22788;&#29702;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OSHA] &#26448;&#26009;&#22788;&#29702;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OSHA] &#27807;&#27133;&#21644;&#25366;&#25496;&#26085;&#24120;&#26816;&#26597;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[OSHA] &#27807;&#27133;&#21644;&#25366;&#25496;&#26085;&#24120;&#26816;&#26597;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[Procore] SWPPP - &#26045;&#24037;&#29616;&#22330;&#38632;&#27700;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[Procore] SWPPP - &#26045;&#24037;&#29616;&#22330;&#38632;&#27700;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[Procore] &#20316;&#19994;&#29616;&#22330;&#28165;&#27905;&#21644;&#20934;&#22791;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[Procore] &#20316;&#19994;&#29616;&#22330;&#28165;&#27905;&#21644;&#20934;&#22791;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[Procore] &#35774;&#22791;&#25805;&#20316;&#21069;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;[Procore] &#35774;&#22791;&#25805;&#20316;&#21069;&#26816;&#26597;&#28165;&#21333;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;&#29616;&#22330;&#23433;&#20840;&#26816;&#26597;&#20219;&#21153;&rdquo;&#27169;&#26495;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#25105;&#30340;&#39033;&#30446;&#20013;&#20351;&#29992;&ldquo;&#29616;&#22330;&#23433;&#20840;&#26816;&#26597;&#20219;&#21153;&rdquo;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#22788;&#29702;&#38145;&#23450;&#25110;&#21463;&#38480;&#30340; PDF &#25991;&#20214;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#22788;&#29702;&#38145;&#23450;&#25110;&#21463;&#38480;&#30340; PDF &#25991;&#20214;&#65311;</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="&#22914;&#20309;&#22312;&#26032;&#30340;&#25237;&#26631;&#31649;&#29702;&#20307;&#39564;&#20013;&#28155;&#21152;&#25237;&#26631;&#20154;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#26032;&#30340;&#25237;&#26631;&#31649;&#29702;&#20307;&#39564;&#20013;&#28155;&#21152;&#25237;&#26631;&#20154;&#65311;</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="&#22914;&#20309;&#22312;&#26412;&#22320;&#36827;&#24230;&#35745;&#21010;&#25991;&#20214;&#20013;&#26356;&#26032;&#23436;&#25104;&#30334;&#20998;&#27604;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#26412;&#22320;&#36827;&#24230;&#35745;&#21010;&#25991;&#20214;&#20013;&#26356;&#26032;&#23436;&#25104;&#30334;&#20998;&#27604;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20026;&#21512;&#21516;&#21551;&#29992;&#20445;&#30041;&#37329;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20026;&#21512;&#21516;&#21551;&#29992;&#20445;&#30041;&#37329;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20849;&#20139;&#23545;&#21512;&#21516;&#23460;&#30340;&#35775;&#38382;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20849;&#20139;&#23545;&#21512;&#21516;&#23460;&#30340;&#35775;&#38382;&#26435;&#38480;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20849;&#20139;&#23545;&#25237;&#26631;&#23460;&#30340;&#35775;&#38382;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#20849;&#20139;&#23545;&#25237;&#26631;&#23460;&#30340;&#35775;&#38382;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-templates-created-in-portfolio-financials" title="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#21019;&#24314;&#27169;&#26495;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#21019;&#24314;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#23558;&#24314;&#31569;&#28155;&#21152;&#21040;&#25105;&#30340;&#36134;&#25143;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#23558;&#24314;&#31569;&#28155;&#21152;&#21040;&#25105;&#30340;&#36134;&#25143;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25163;&#21160;&#28155;&#21152;&#25237;&#26631;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25163;&#21160;&#28155;&#21152;&#25237;&#26631;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25552;&#20132;&#21464;&#26356;&#36890;&#30693;&#21333;&#21644;&#21457;&#31080;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#25552;&#20132;&#21464;&#26356;&#36890;&#30693;&#21333;&#21644;&#21457;&#31080;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#28155;&#21152;&#33258;&#23450;&#20041;&#25104;&#26412;&#36319;&#36394;&#22120;&#27169;&#26495;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#28155;&#21152;&#33258;&#23450;&#20041;&#25104;&#26412;&#36319;&#36394;&#22120;&#27169;&#26495;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#32534;&#36753;&#21512;&#21516;&#21021;&#22987;&#22870;&#21169;&#37329;&#39069;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#32534;&#36753;&#21512;&#21516;&#21021;&#22987;&#22870;&#21169;&#37329;&#39069;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#35299;&#38500;&#25237;&#26631;&#25110;&#21512;&#21516;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#35299;&#38500;&#25237;&#26631;&#25110;&#21512;&#21516;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#35774;&#32622;&#23457;&#25209;&#24037;&#20316;&#27969;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#35774;&#32622;&#23457;&#25209;&#24037;&#20316;&#27969;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#36755;&#20837;&#20449;&#29992;&#21457;&#31080;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#36755;&#20837;&#20449;&#29992;&#21457;&#31080;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#36816;&#34892;&#23494;&#23553;&#25237;&#26631;&#27969;&#31243;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#36816;&#34892;&#23494;&#23553;&#25237;&#26631;&#27969;&#31243;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#36827;&#34892;&#26368;&#20339;&#21644;&#26368;&#21518;&#19968;&#36718;&#25237;&#26631;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#36827;&#34892;&#26368;&#20339;&#21644;&#26368;&#21518;&#19968;&#36718;&#25237;&#26631;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#25214;&#21040;&#23384;&#26723;&#30340;&#39033;&#30446;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#25214;&#21040;&#23384;&#26723;&#30340;&#39033;&#30446;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30417;&#25511;&#25105;&#25152;&#26377;&#24314;&#31569;&#29289;&#30340;&#27963;&#21160;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30417;&#25511;&#25105;&#25152;&#26377;&#24314;&#31569;&#29289;&#30340;&#27963;&#21160;&#65311;</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="&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#36755;&#20837;&#24403;&#24180;&#30340;&#39044;&#31639;&#39033;&#30446;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#36755;&#20837;&#24403;&#24180;&#30340;&#39044;&#31639;&#39033;&#30446;&#65311;</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="&#22914;&#20309;&#22312;&#32771;&#21220;&#34920;&#20013;&#20351;&#29992;&#20197;&#21069;&#30340;&#32771;&#21220;&#21345;&#26465;&#30446;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#32771;&#21220;&#34920;&#20013;&#20351;&#29992;&#20197;&#21069;&#30340;&#32771;&#21220;&#21345;&#26465;&#30446;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-use-wages-in-resource-planning" title="&#22914;&#20309;&#22312;&#36164;&#28304;&#35268;&#21010;&#20013;&#20351;&#29992;&#24037;&#36164;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#36164;&#28304;&#35268;&#21010;&#20013;&#20351;&#29992;&#24037;&#36164;&#65311;</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="&#22914;&#20309;&#22312;&#36164;&#28304;&#35268;&#21010;&#20013;&#20351;&#29992;&#24102;&#26377;&#21040;&#26399;&#26085;&#26399;&#30340;&#26631;&#35760;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#36164;&#28304;&#35268;&#21010;&#20013;&#20351;&#29992;&#24102;&#26377;&#21040;&#26399;&#26085;&#26399;&#30340;&#26631;&#35760;&#65311;</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="&#22914;&#20309;&#22312;&#36164;&#28304;&#35268;&#21010;&#20013;&#35774;&#32622;&#25105;&#30340;&#36134;&#25143;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#36164;&#28304;&#35268;&#21010;&#20013;&#35774;&#32622;&#25105;&#30340;&#36134;&#25143;&#65311;</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="&#22914;&#20309;&#22312;&#36865;&#23457;&#24037;&#20855;&#20013;&#20462;&#22797; PDF &#25991;&#20214;&#38169;&#35823;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#36865;&#23457;&#24037;&#20855;&#20013;&#20462;&#22797; PDF &#25991;&#20214;&#38169;&#35823;&#65311;</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="&#22914;&#20309;&#22312;&#39033;&#30446;&#34920;&#21333;&#24037;&#20855;&#20013;&#20351;&#29992; Procore &#30340; Toolbox Talk Sign-In PDF&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#39033;&#30446;&#34920;&#21333;&#24037;&#20855;&#20013;&#20351;&#29992; Procore &#30340; Toolbox Talk Sign-In PDF&#65311;</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="&#22914;&#20309;&#22312;&#39033;&#30446;&#34920;&#21333;&#24037;&#20855;&#20013;&#20351;&#29992; Procore &#30340;&#20316;&#19994;&#21361;&#23475;&#20998;&#26512; PDF&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#39033;&#30446;&#34920;&#21333;&#24037;&#20855;&#20013;&#20351;&#29992; Procore &#30340;&#20316;&#19994;&#21361;&#23475;&#20998;&#26512; PDF&#65311;</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="&#22914;&#20309;&#22312;&#39033;&#30446;&#34920;&#21333;&#24037;&#20855;&#20013;&#20351;&#29992; Procore &#30340;&#21160;&#28779;&#20316;&#19994;&#35768;&#21487; PDF&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22312;&#39033;&#30446;&#34920;&#21333;&#24037;&#20855;&#20013;&#20351;&#29992; Procore &#30340;&#21160;&#28779;&#20316;&#19994;&#35768;&#21487; PDF&#65311;</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="&#22914;&#20309;&#22788;&#29702;&#30446;&#24405;&#24037;&#20855;&#21644; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#20043;&#38388;&#30340;&#37325;&#22797;&#20844;&#21496;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22788;&#29702;&#30446;&#24405;&#24037;&#20855;&#21644; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#20043;&#38388;&#30340;&#37325;&#22797;&#20844;&#21496;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-is-security-handled-with-third-party-applications" title="&#22914;&#20309;&#22788;&#29702;&#31532;&#19977;&#26041;&#24212;&#29992;&#31243;&#24207;&#30340;&#23433;&#20840;&#38382;&#39064;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#22788;&#29702;&#31532;&#19977;&#26041;&#24212;&#29992;&#31243;&#24207;&#30340;&#23433;&#20840;&#38382;&#39064;&#65311;</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="&#22914;&#20309;&#23545;&#39029;&#38754;&#35780;&#20998;&#24182;&#21457;&#36865;&#21453;&#39304;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#23545;&#39029;&#38754;&#35780;&#20998;&#24182;&#21457;&#36865;&#21453;&#39304;&#65311;</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="&#22914;&#20309;&#23548;&#33322;&#21040;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#23548;&#33322;&#21040;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#65311;</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="&#22914;&#20309;&#23558;&ldquo;[Procore] &#39033;&#30446;&#20572;&#24037;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#28155;&#21152;&#21040;&#25105;&#30340; Procore &#36134;&#25143;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#23558;&ldquo;[Procore] &#39033;&#30446;&#20572;&#24037;&rdquo;&#26816;&#26597;&#20219;&#21153;&#27169;&#26495;&#28155;&#21152;&#21040;&#25105;&#30340; Procore &#36134;&#25143;&#65311;</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="&#22914;&#20309;&#23558;&ldquo;&#32771;&#21220;&#34920;&#24037;&#26102;&rdquo;&#21015;&#28155;&#21152;&#21040;&#39044;&#31639;&#35270;&#22270;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#23558;&ldquo;&#32771;&#21220;&#34920;&#24037;&#26102;&rdquo;&#21015;&#28155;&#21152;&#21040;&#39044;&#31639;&#35270;&#22270;&#65311;</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="&#22914;&#20309;&#23558;&#20154;&#21592;&#28155;&#21152;&#21040;&#36865;&#23457;&#24037;&#20316;&#27969;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#23558;&#20154;&#21592;&#28155;&#21152;&#21040;&#36865;&#23457;&#24037;&#20316;&#27969;&#65311;</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="&#22914;&#20309;&#23558;&#20219;&#21153;&#20998;&#37197;&#23545;&#35937;&#26631;&#35760;&#20026; RFI &#30340;&#25152;&#38656;&#31572;&#22797;&#32773;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#23558;&#20219;&#21153;&#20998;&#37197;&#23545;&#35937;&#26631;&#35760;&#20026; RFI &#30340;&#25152;&#38656;&#31572;&#22797;&#32773;&#65311;</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="&#22914;&#20309;&#23558;&#20808;&#21069;&#20462;&#35746;&#20013;&#30340;&#26631;&#35760;&#24212;&#29992;&#21040;&#26032;&#20462;&#35746;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#23558;&#20808;&#21069;&#20462;&#35746;&#20013;&#30340;&#26631;&#35760;&#24212;&#29992;&#21040;&#26032;&#20462;&#35746;&#65311;</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="&#22914;&#20309;&#23558;&#22823;&#25991;&#20214;&#19978;&#20256;&#21040;Procore Web&#24212;&#29992;&#31243;&#24207;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#23558;&#22823;&#25991;&#20214;&#19978;&#20256;&#21040;Procore Web&#24212;&#29992;&#31243;&#24207;&#65311;</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="&#22914;&#20309;&#23558;&#25104;&#26412;&#32534;&#21495;&#28155;&#21152;&#21040;&#19982; Yardi Voyager&reg; &#21516;&#27493;&#30340;&#39033;&#30446;&#20013;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#23558;&#25104;&#26412;&#32534;&#21495;&#28155;&#21152;&#21040;&#19982; Yardi Voyager&reg; &#21516;&#27493;&#30340;&#39033;&#30446;&#20013;</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="&#22914;&#20309;&#23558;&#25104;&#26412;&#39044;&#27979;&#25968;&#25454;&#20174; Procore &#39044;&#31639;&#23548;&#20986;&#21040; ERP"><span class="mt-icon-article-tutorial"></span>&#22914;&#20309;&#23558;&#25104;&#26412;&#39044;&#27979;&#25968;&#25454;&#20174; Procore &#39044;&#31639;&#23548;&#20986;&#21040; 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="&#22914;&#20309;&#23558;&#25104;&#26412;&#39044;&#27979;&#25968;&#25454;&#20174; Procore &#39044;&#31639;&#23548;&#20986;&#21040;CMiC"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#23558;&#25104;&#26412;&#39044;&#27979;&#25968;&#25454;&#20174; Procore &#39044;&#31639;&#23548;&#20986;&#21040;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="&#22914;&#20309;&#23558;&#25105;&#30340;&#20027;&#21512;&#21516;&#19982; Acumatica &#25110;MYOB Advanced Construction&#21516;&#27493;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#23558;&#25105;&#30340;&#20027;&#21512;&#21516;&#19982; Acumatica &#25110;MYOB Advanced Construction&#21516;&#27493;&#65311;</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="&#22914;&#20309;&#23558;&#25105;&#30340;&#23614;&#39033;&#28165;&#21333;&#39033;&#30446;&#40664;&#35748;&#35774;&#20026;&#31169;&#23494;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#23558;&#25105;&#30340;&#23614;&#39033;&#28165;&#21333;&#39033;&#30446;&#40664;&#35748;&#35774;&#20026;&#31169;&#23494;&#65311;</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="&#22914;&#20309;&#23558;&#25237;&#26631;&#20154;&#38145;&#23450;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#30340;&#23494;&#23553;&#25237;&#26631;&#23460;&#20043;&#22806;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#23558;&#25237;&#26631;&#20154;&#38145;&#23450;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#30340;&#23494;&#23553;&#25237;&#26631;&#23460;&#20043;&#22806;&#65311;</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="&#22914;&#20309;&#23558;&#25237;&#26631;&#38754;&#26495;&#39033;&#30446;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#30446;&#38598;&#21512;&#24037;&#20855;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#23558;&#25237;&#26631;&#38754;&#26495;&#39033;&#30446;&#28155;&#21152;&#21040; Procore &#20013;&#30340;&#39033;&#30446;&#38598;&#21512;&#24037;&#20855;&#65311;</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="&#22914;&#20309;&#23558;&#26469;&#33258; Yardi &#30340;&#21457;&#31080;&#22238;&#22635;&#21040;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#23558;&#26469;&#33258; Yardi &#30340;&#21457;&#31080;&#22238;&#22635;&#21040;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#65311;</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="&#22914;&#20309;&#23558;&#39033;&#30446;&#39044;&#31639;&#20174; Procore &#23548;&#20986;&#21040; Sage 300 CRE&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#23558;&#39033;&#30446;&#39044;&#31639;&#20174; Procore &#23548;&#20986;&#21040; Sage 300 CRE&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-get-started-with-procore-analytics" title="&#22914;&#20309;&#24320;&#22987;&#20351;&#29992;Procore Analytics&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#24320;&#22987;&#20351;&#29992;Procore Analytics&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-find-the-company-id" title="&#22914;&#20309;&#25214;&#21040;&#20844;&#21496; ID&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#25214;&#21040;&#20844;&#21496; ID&#65311;</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="&#22914;&#20309;&#25353;&#22810;&#23618;&#22320;&#28857;&#31579;&#36873;&#39033;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#25353;&#22810;&#23618;&#22320;&#28857;&#31579;&#36873;&#39033;&#65311;</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="&#22914;&#20309;&#25480;&#20104;&ldquo;&#26377;&#38480;&rdquo;&#29992;&#25143;&#35775;&#38382;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#29305;&#23450;&#25237;&#26631;&#23460;&#30340;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#25480;&#20104;&ldquo;&#26377;&#38480;&rdquo;&#29992;&#25143;&#35775;&#38382;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#29305;&#23450;&#25237;&#26631;&#23460;&#30340;&#26435;&#38480;&#65311;</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="&#22914;&#20309;&#25511;&#21046; Procore &#22312; RFI &#36807;&#31243;&#20013;&#21457;&#36865;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#25511;&#21046; Procore &#22312; RFI &#36807;&#31243;&#20013;&#21457;&#36865;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#22914;&#20309;&#25552;&#20132; Procore &#21512;&#32422;&#30340;&#20998;&#21253;&#21830;&#20998;&#39033;&#20215;&#26684;&#34920;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#25552;&#20132; Procore &#21512;&#32422;&#30340;&#20998;&#21253;&#21830;&#20998;&#39033;&#20215;&#26684;&#34920;&#65311;</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="&#22914;&#20309;&#25552;&#39640;&#22270;&#32440;&#19978; OCR &#30340;&#20934;&#30830;&#24615;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#25552;&#39640;&#22270;&#32440;&#19978; OCR &#30340;&#20934;&#30830;&#24615;&#65311;</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="&#22914;&#20309;&#25552;&#39640;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#22635;&#20805;&#25968;&#25454;&#30340;&#20934;&#30830;&#24615;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#25552;&#39640;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#22635;&#20805;&#25968;&#25454;&#30340;&#20934;&#30830;&#24615;&#65311;</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="&#22914;&#20309;&#25552;&#39640;&#35268;&#33539;&#20998;&#39033;&#35782;&#21035;&#30340;&#20934;&#30830;&#24615;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#25552;&#39640;&#35268;&#33539;&#20998;&#39033;&#35782;&#21035;&#30340;&#20934;&#30830;&#24615;&#65311;</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="&#22914;&#20309;&#25764;&#38144; Procore &#29992;&#25143;&#30340;&#39033;&#30446;&#35775;&#38382;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#25764;&#38144; Procore &#29992;&#25143;&#30340;&#39033;&#30446;&#35775;&#38382;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-change-a-known-password" title="&#22914;&#20309;&#26356;&#25913;&#24050;&#30693;&#23494;&#30721;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#26356;&#25913;&#24050;&#30693;&#23494;&#30721;&#65311;</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="&#22914;&#20309;&#26356;&#25913;&#25105;&#22312; Procore &#35748;&#35777;&#20013;&#30340;&#22995;&#21517;&#25110;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#26356;&#25913;&#25105;&#22312; Procore &#35748;&#35777;&#20013;&#30340;&#22995;&#21517;&#25110;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&#65311;</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="&#22914;&#20309;&#26356;&#25913;&#36865;&#23457;&#30340;&ldquo;&#36131;&#20219;&#25215;&#21253;&#21830;&rdquo;&#23383;&#27573;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#26356;&#25913;&#36865;&#23457;&#30340;&ldquo;&#36131;&#20219;&#25215;&#21253;&#21830;&rdquo;&#23383;&#27573;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-action-plans-item-statuses-updated" title="&#22914;&#20309;&#26356;&#26032;&#34892;&#21160;&#35745;&#21010;&#39033;&#29366;&#24577;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#26356;&#26032;&#34892;&#21160;&#35745;&#21010;&#39033;&#29366;&#24577;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-find-the-project-id" title="&#22914;&#20309;&#26597;&#25214;&#39033;&#30446; ID&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#26597;&#25214;&#39033;&#30446; ID&#65311;</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="&#22914;&#20309;&#26597;&#30475;&#21333;&#20010;&#26085;&#24535;&#25110;&#26085;&#24535;&#20013;&#26576;&#20154;&#30340;&#25253;&#21578;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#26597;&#30475;&#21333;&#20010;&#26085;&#24535;&#25110;&#26085;&#24535;&#20013;&#26576;&#20154;&#30340;&#25253;&#21578;&#65311;</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="&#22914;&#20309;&#26597;&#30475;&#22810;&#22825;&#30340;&#24037;&#20316;&#26085;&#24535;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#26597;&#30475;&#22810;&#22825;&#30340;&#24037;&#20316;&#26085;&#24535;&#65311;</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="&#22914;&#20309;&#26597;&#30475;&#25105;&#30340; Procore &#36134;&#25143;&#20013;&#21253;&#21547;&#21738;&#20123; Procore &#24037;&#20855;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#26597;&#30475;&#25105;&#30340; Procore &#36134;&#25143;&#20013;&#21253;&#21547;&#21738;&#20123; Procore &#24037;&#20855;&#65311;</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="&#22914;&#20309;&#26597;&#30475;&#26410;&#32534;&#21046;&#39044;&#31639;&#30340;&#26126;&#32454;&#39033;&#30340;&#26469;&#28304;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#26597;&#30475;&#26410;&#32534;&#21046;&#39044;&#31639;&#30340;&#26126;&#32454;&#39033;&#30340;&#26469;&#28304;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-view-a-custom-training-center" title="&#22914;&#20309;&#26597;&#30475;&#33258;&#23450;&#20041;&#22521;&#35757;&#20013;&#24515;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#26597;&#30475;&#33258;&#23450;&#20041;&#22521;&#35757;&#20013;&#24515;&#65311;</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="&#22914;&#20309;&#26597;&#30475;&#35841;&#26377;&#26435;&#26597;&#30475;&#26576;&#31181;&#31867;&#22411;&#30340;&#36890;&#20449;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#26597;&#30475;&#35841;&#26377;&#26435;&#26597;&#30475;&#26576;&#31181;&#31867;&#22411;&#30340;&#36890;&#20449;&#65311;</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="&#22914;&#20309;&#26597;&#30475;&#35841;&#26377;&#26435;&#26597;&#30475;&#29305;&#23450;&#36890;&#20449;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#26597;&#30475;&#35841;&#26377;&#26435;&#26597;&#30475;&#29305;&#23450;&#36890;&#20449;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-I-view-resource-allocation-percentage" title="&#22914;&#20309;&#26597;&#30475;&#36164;&#28304;&#20998;&#37197;&#30334;&#20998;&#27604;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#26597;&#30475;&#36164;&#28304;&#20998;&#37197;&#30334;&#20998;&#27604;&#65311;</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="&#22914;&#20309;&#28155;&#21152;&#26032;&#30340; Sage 300 CRE &#25104;&#26412;&#32534;&#21495;&#25110;&#25104;&#26412;&#31867;&#22411;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#28155;&#21152;&#26032;&#30340; Sage 300 CRE &#25104;&#26412;&#32534;&#21495;&#25110;&#25104;&#26412;&#31867;&#22411;&#65311;</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="&#22914;&#20309;&#28155;&#21152;&#32570;&#22833;&#30340;&#25104;&#26412;&#32534;&#21495;&#20197;&#20415;&#23558;&#39033;&#30446;&#36801;&#31227;&#21040;&#26032;&#29256;&#25237;&#26631;&#31649;&#29702;&#20307;&#39564;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#28155;&#21152;&#32570;&#22833;&#30340;&#25104;&#26412;&#32534;&#21495;&#20197;&#20415;&#23558;&#39033;&#30446;&#36801;&#31227;&#21040;&#26032;&#29256;&#25237;&#26631;&#31649;&#29702;&#20307;&#39564;&#65311;</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="&#22914;&#20309;&#30331;&#24405; Procore &#25903;&#25345;&#32593;&#31449;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#30331;&#24405; Procore &#25903;&#25345;&#32593;&#31449;&#65311;</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="&#22914;&#20309;&#30331;&#24405;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#30331;&#24405;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#65311;</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="&#22914;&#20309;&#30830;&#20445; Procore &#30005;&#23376;&#37038;&#20214;&#36865;&#36798;&#25910;&#20214;&#20154;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#30830;&#20445; Procore &#30005;&#23376;&#37038;&#20214;&#36865;&#36798;&#25910;&#20214;&#20154;&#65311;</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="&#22914;&#20309;&#30830;&#23450;&#22320;&#22336;&#30340;&#32428;&#24230;&#21644;&#32463;&#24230;&#20540;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#30830;&#23450;&#22320;&#22336;&#30340;&#32428;&#24230;&#21644;&#32463;&#24230;&#20540;&#65311;</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="&#22914;&#20309;&#30830;&#23450;&#26159;&#21542;&#24050;&#21457;&#36865;&#23614;&#39033;&#28165;&#21333;&#39033;&#30446;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#30830;&#23450;&#26159;&#21542;&#24050;&#21457;&#36865;&#23614;&#39033;&#28165;&#21333;&#39033;&#30446;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-disable-quick-capture-for-ios" title="&#22914;&#20309;&#31105;&#29992; iOS &#30340; Quick Capture&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#31105;&#29992; iOS &#30340; Quick Capture&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-customize-submittal-responses" title="&#22914;&#20309;&#33258;&#23450;&#20041;&#36865;&#23457;&#31572;&#22797;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#33258;&#23450;&#20041;&#36865;&#23457;&#31572;&#22797;&#65311;</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="&#22914;&#20309;&#33719;&#21462;&#36866;&#29992;&#20110; Mac OS X &#30340;&#26368;&#26032;&#29256;&#26412;&#30340; Safari&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#33719;&#21462;&#36866;&#29992;&#20110; Mac OS X &#30340;&#26368;&#26032;&#29256;&#26412;&#30340; Safari&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-get-a-docusign-account" title="&#22914;&#20309;&#33719;&#24471; DocuSign&reg; &#36134;&#25143;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#33719;&#24471; DocuSign&reg; &#36134;&#25143;&#65311;</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="&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#35299;&#20915;Procore Web&#24212;&#29992;&#31243;&#24207;&#30340;&#38382;&#39064;&#65311;</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="&#22914;&#20309;&#35299;&#20915;&#23548;&#20986;&#21040;ERP&#26102;&#30340;&quot;&#26080;&#27861;&#23436;&#25104;&#27492;&#23548;&#20986;&#65292;&#22240;&#20026;QuickBooks&#20013;&#30340;&#26126;&#32454;&#39033;&#25968;&#37327;&#19982; Procore &#20013;&#30340;&#25968;&#37327;&#19981;&#21305;&#37197;&quot;&#38169;&#35823;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#35299;&#20915;&#23548;&#20986;&#21040;ERP&#26102;&#30340;&quot;&#26080;&#27861;&#23436;&#25104;&#27492;&#23548;&#20986;&#65292;&#22240;&#20026;QuickBooks&#20013;&#30340;&#26126;&#32454;&#39033;&#25968;&#37327;&#19982; Procore &#20013;&#30340;&#25968;&#37327;&#19981;&#21305;&#37197;&quot;&#38169;&#35823;&#65311;</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="&#22914;&#20309;&#35753;&#29992;&#25143;&#35775;&#38382;&#36164;&#26684;&#39044;&#23457;&#24037;&#20855;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#35753;&#29992;&#25143;&#35775;&#38382;&#36164;&#26684;&#39044;&#23457;&#24037;&#20855;&#65311;</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="&#22914;&#20309;&#35774;&#32622;&ldquo;Procore &#20154;&#24037;&#29983;&#20135;&#21147;&#25104;&#26412;&rdquo;&#39044;&#31639;&#35270;&#22270;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#35774;&#32622;&ldquo;Procore &#20154;&#24037;&#29983;&#20135;&#21147;&#25104;&#26412;&rdquo;&#39044;&#31639;&#35270;&#22270;&#65311;</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="&#22914;&#20309;&#35774;&#32622;&#21512;&#21516;&#25110;&#36164;&#37329;&#30340;&#20250;&#35745;&#26041;&#27861;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#35774;&#32622;&#21512;&#21516;&#25110;&#36164;&#37329;&#30340;&#20250;&#35745;&#26041;&#27861;&#65311;</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="&#22914;&#20309;&#35774;&#32622;&#36890;&#20449;&#31867;&#22411;&#30340;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#35774;&#32622;&#36890;&#20449;&#31867;&#22411;&#30340;&#26435;&#38480;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-access-my-companys-training-center" title="&#22914;&#20309;&#35775;&#38382;&#25105;&#20844;&#21496;&#30340;&#22521;&#35757;&#20013;&#24515;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#35775;&#38382;&#25105;&#20844;&#21496;&#30340;&#22521;&#35757;&#20013;&#24515;&#65311;</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="&#22914;&#20309;&#35831;&#27714;&#35775;&#38382;&#33258;&#23450;&#20041;&#22521;&#35757;&#20013;&#24515;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#35831;&#27714;&#35775;&#38382;&#33258;&#23450;&#20041;&#22521;&#35757;&#20013;&#24515;&#65311;</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="&#22914;&#20309;&#36319;&#36394;&#21464;&#26356;&#20107;&#20214;&#30340;&#38750;&#21512;&#32422;&#25104;&#26412;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#36319;&#36394;&#21464;&#26356;&#20107;&#20214;&#30340;&#38750;&#21512;&#32422;&#25104;&#26412;&#65311;</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="&#22914;&#20309;&#36319;&#36394;&#22312;&#20316;&#19994;&#29616;&#22330;&#25509;&#25910;&#21644;&#23433;&#35013;&#30340;&#23454;&#38469;&#26448;&#26009;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#36319;&#36394;&#22312;&#20316;&#19994;&#29616;&#22330;&#25509;&#25910;&#21644;&#23433;&#35013;&#30340;&#23454;&#38469;&#26448;&#26009;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-keep-track-of-emailed-drawings" title="&#22914;&#20309;&#36319;&#36394;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#21457;&#36865;&#30340;&#22270;&#32440;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#36319;&#36394;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#21457;&#36865;&#30340;&#22270;&#32440;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-can-i-keep-track-of-emailed-specifications" title="&#22914;&#20309;&#36319;&#36394;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#21457;&#36865;&#30340;&#35268;&#33539;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#36319;&#36394;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#21457;&#36865;&#30340;&#35268;&#33539;&#65311;</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="&#22914;&#20309;&#36328;&#21464;&#26356;&#23545;&#35937;&#26356;&#26032;&#36130;&#21153;&#26126;&#32454;&#39033;&#21644;&#39044;&#31639;&#32534;&#21495;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#36328;&#21464;&#26356;&#23545;&#35937;&#26356;&#26032;&#36130;&#21153;&#26126;&#32454;&#39033;&#21644;&#39044;&#31639;&#32534;&#21495;&#65311;</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="&#22914;&#20309;&#36873;&#25321;&#21152;&#20837; Procore &#23545;&#35805;&#30340;&#27979;&#35797;&#29256;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#36873;&#25321;&#21152;&#20837; Procore &#23545;&#35805;&#30340;&#27979;&#35797;&#29256;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-avoid-and-report-phishing-emails" title="&#22914;&#20309;&#36991;&#20813;&#21644;&#25253;&#21578;&#32593;&#32476;&#38035;&#40060;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#36991;&#20813;&#21644;&#25253;&#21578;&#32593;&#32476;&#38035;&#40060;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#22914;&#20309;&#37197;&#32622;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#20197;&#20801;&#35768;&#26469;&#33258; Procore &#30340;&#24377;&#20986;&#31383;&#21475;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#37197;&#32622;&#25105;&#30340; Web &#27983;&#35272;&#22120;&#20197;&#20801;&#35768;&#26469;&#33258; Procore &#30340;&#24377;&#20986;&#31383;&#21475;&#65311;</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="&#22914;&#20309;&#38450;&#27490;&#25110;&#20801;&#35768;&#20998;&#21253;&#21830;&#21457;&#31080;&#36229;&#39069; &#35745;&#36153;&#65311;"><span class="mt-icon-article-tutorial"></span>&#22914;&#20309;&#38450;&#27490;&#25110;&#20801;&#35768;&#20998;&#21253;&#21830;&#21457;&#31080;&#36229;&#39069; &#35745;&#36153;&#65311;</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="&#22914;&#20309;&#39564;&#35777;&#28595;&#22823;&#21033;&#20122;&#21830;&#19994;&#32534;&#21495; (ABN)&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#20309;&#39564;&#35777;&#28595;&#22823;&#21033;&#20122;&#21830;&#19994;&#32534;&#21495; (ABN)&#65311;</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="&#22914;&#26524; CSV &#20855;&#26377;&#31354;&#30333;&#20540;&#65292;&#25105;&#33021;&#21542;&#23558;&#20854;&#23548;&#20837;&#21040;&#39033;&#30446;&#36130;&#21153;&#31649;&#29702;&#24037;&#20855;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&#20013;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#26524; CSV &#20855;&#26377;&#31354;&#30333;&#20540;&#65292;&#25105;&#33021;&#21542;&#23558;&#20854;&#23548;&#20837;&#21040;&#39033;&#30446;&#36130;&#21153;&#31649;&#29702;&#24037;&#20855;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&#20013;&#65311;</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="&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#26524; Procore &#20844;&#21496;&#30446;&#24405;&#20013;&#23384;&#22312;&#37325;&#22797;&#20844;&#21496;&#35760;&#24405;&#20250;&#24590;&#26679;&#65311;</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="&#22914;&#26524;&#25105;&#20204;&#20844;&#21496;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#26159;&#21542;&#38656;&#35201;&#21019;&#24314; Procore &#29992;&#25143;&#36134;&#25143;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#26524;&#25105;&#20204;&#20844;&#21496;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#26159;&#21542;&#38656;&#35201;&#21019;&#24314; Procore &#29992;&#25143;&#36134;&#25143;&#65311;</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="&#22914;&#26524;&#25105;&#24536;&#35760;&#20102;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#30340;&#23494;&#30721;&#65292;&#35813;&#24590;&#20040;&#21150;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#26524;&#25105;&#24536;&#35760;&#20102;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#30340;&#23494;&#30721;&#65292;&#35813;&#24590;&#20040;&#21150;&#65311;</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="&#22914;&#26524;&#25105;&#26159; RFI &#32463;&#29702;&#65292;&#22914;&#20309;&#25552;&#20132;&#23545; RFI&ldquo;&#33609;&#31295;&rdquo;&#30340;&#31572;&#22797;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#26524;&#25105;&#26159; RFI &#32463;&#29702;&#65292;&#22914;&#20309;&#25552;&#20132;&#23545; RFI&ldquo;&#33609;&#31295;&rdquo;&#30340;&#31572;&#22797;&#65311;</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="&#22914;&#26524;&#25105;&#27809;&#26377; Procore &#30331;&#24405;&#20973;&#35777;&#65292;&#35813;&#22914;&#20309;&#27880;&#20876; Procore &#35748;&#35777;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#26524;&#25105;&#27809;&#26377; Procore &#30331;&#24405;&#20973;&#35777;&#65292;&#35813;&#22914;&#20309;&#27880;&#20876; Procore &#35748;&#35777;&#65311;</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="&#22914;&#26524;&#25105;&#30340;&#20844;&#21496;&#24050;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#21487;&#20197;&#30452;&#25509;&#30331;&#24405; Procore Web &#24212;&#29992;&#31243;&#24207;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#26524;&#25105;&#30340;&#20844;&#21496;&#24050;&#23454;&#26045;&#21333;&#28857;&#30331;&#24405;&#65292;&#25105;&#21487;&#20197;&#30452;&#25509;&#30331;&#24405; Procore Web &#24212;&#29992;&#31243;&#24207;&#21527;&#65311;</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="&#22914;&#26524;&#25105;&#30340;&#27169;&#22411;&#25991;&#20214;&#22826;&#22823;&#32780;&#26080;&#27861;&#22312;&#25991;&#26723;&#24037;&#20855;&#20013;&#22788;&#29702;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#26524;&#25105;&#30340;&#27169;&#22411;&#25991;&#20214;&#22826;&#22823;&#32780;&#26080;&#27861;&#22312;&#25991;&#26723;&#24037;&#20855;&#20013;&#22788;&#29702;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;</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="&#22914;&#26524;&#26080;&#27861;&#26597;&#30475;&#20027;&#21512;&#21516;&#65292;&#20026;&#20160;&#20040;&#21487;&#20197;&#35775;&#38382;&#20027;&#21512;&#21516;&#24037;&#20855;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#26524;&#26080;&#27861;&#26597;&#30475;&#20027;&#21512;&#21516;&#65292;&#20026;&#20160;&#20040;&#21487;&#20197;&#35775;&#38382;&#20027;&#21512;&#21516;&#24037;&#20855;&#65311;</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="&#22914;&#26524;&#27169;&#22411;&#22826;&#22823;&#32780;&#26080;&#27861;&#22312; Procore &#30340; Web &#24212;&#29992;&#31243;&#24207;&#20013;&#26597;&#30475;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#26524;&#27169;&#22411;&#22826;&#22823;&#32780;&#26080;&#27861;&#22312; Procore &#30340; Web &#24212;&#29992;&#31243;&#24207;&#20013;&#26597;&#30475;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;</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="&#22914;&#26524;&#29992;&#25143;&#27809;&#26377;&#26597;&#30475;&#29305;&#23450;&#36890;&#20449;&#31867;&#22411;&#30340;&#26435;&#38480;&#65292;&#20182;&#20204;&#33021;&#21542;&#22312;&#20854;&ldquo;&#39033;&#30446;&#27010;&#20917;&rdquo;&#20202;&#34920;&#26495;&#20013;&#26597;&#30475;&#35813;&#36890;&#20449;&#31867;&#22411;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#26524;&#29992;&#25143;&#27809;&#26377;&#26597;&#30475;&#29305;&#23450;&#36890;&#20449;&#31867;&#22411;&#30340;&#26435;&#38480;&#65292;&#20182;&#20204;&#33021;&#21542;&#22312;&#20854;&ldquo;&#39033;&#30446;&#27010;&#20917;&rdquo;&#20202;&#34920;&#26495;&#20013;&#26597;&#30475;&#35813;&#36890;&#20449;&#31867;&#22411;&#65311;</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="&#22914;&#26524;&#35268;&#33539;&#20998;&#39033;&#25110;&#20998;&#37096;&#20174;&#39029;&#38754;&#20013;&#38388;&#24320;&#22987;&#24590;&#20040;&#21150;&#65311;"><span class="mt-icon-article-faq"></span>&#22914;&#26524;&#35268;&#33539;&#20998;&#39033;&#25110;&#20998;&#37096;&#20174;&#39029;&#38754;&#20013;&#38388;&#24320;&#22987;&#24590;&#20040;&#21150;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.AF.B9"></span><h5 title="&#23545;">&#23545;</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="&#23545;&#20110;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#25512;&#33616;&#20351;&#29992;&#21738;&#20123;&#37197;&#32622;&#65311;"><span class="mt-icon-article-faq"></span>&#23545;&#20110;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#25512;&#33616;&#20351;&#29992;&#21738;&#20123;&#37197;&#32622;&#65311;</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="&#23545;&#35805;&#24037;&#20855;&#21487;&#20197;&#33258;&#21160;&#32763;&#35793;&#21738;&#20123;&#35821;&#35328;&#65311;"><span class="mt-icon-article-faq"></span>&#23545;&#35805;&#24037;&#20855;&#21487;&#20197;&#33258;&#21160;&#32763;&#35793;&#21738;&#20123;&#35821;&#35328;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-permissions-work-for-the-conversations-tool" title="&#23545;&#35805;&#24037;&#20855;&#30340;&#26435;&#38480;&#22914;&#20309;&#24037;&#20316;&#65311;"><span class="mt-icon-article-faq"></span>&#23545;&#35805;&#24037;&#20855;&#30340;&#26435;&#38480;&#22914;&#20309;&#24037;&#20316;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.AF.BC"></span><h5 title="&#23548;">&#23548;</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="&#23548;&#20837;&#27169;&#26495;&#20013;&#30340;&#21015;&#26631;&#39064;&#26356;&#26032;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#23548;&#20837;&#27169;&#26495;&#20013;&#30340;&#21015;&#26631;&#39064;&#26356;&#26032;&#26159;&#20160;&#20040;&#65311;</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="&#23548;&#20986;&#21040; ERP &#26102;&#22914;&#20309;&#35299;&#20915;&ldquo;&#21512;&#32422;&#32534;&#21495;&#24050;&#23384;&#22312;&rdquo;&#38169;&#35823;"><span class="mt-icon-article-faq"></span>&#23548;&#20986;&#21040; ERP &#26102;&#22914;&#20309;&#35299;&#20915;&ldquo;&#21512;&#32422;&#32534;&#21495;&#24050;&#23384;&#22312;&rdquo;&#38169;&#35823;</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="&#23548;&#20986;&#21040; ERP &#26102;&#22914;&#20309;&#35299;&#20915;&ldquo;&#23548;&#20837;&#25805;&#20316;&#33457;&#36153;&#30340;&#26102;&#38388;&#36229;&#36807;&#35774;&#32622;&#30340;&#36229;&#26102;&#26102;&#38388;&rdquo;&#38169;&#35823;&#65311;"><span class="mt-icon-article-faq"></span>&#23548;&#20986;&#21040; ERP &#26102;&#22914;&#20309;&#35299;&#20915;&ldquo;&#23548;&#20837;&#25805;&#20316;&#33457;&#36153;&#30340;&#26102;&#38388;&#36229;&#36807;&#35774;&#32622;&#30340;&#36229;&#26102;&#26102;&#38388;&rdquo;&#38169;&#35823;&#65311;</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="&#23548;&#20986;&#39033;&#30446;&#30340;&#36865;&#23457;&#26448;&#26009;&#26102;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#26684;&#24335;&#65311;"><span class="mt-icon-article-faq"></span>&#23548;&#20986;&#39033;&#30446;&#30340;&#36865;&#23457;&#26448;&#26009;&#26102;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#26684;&#24335;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.B0.86"></span><h5 title="&#23558;">&#23558;</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="&#23558;&#20219;&#21153;&#20998;&#37197;&#23545;&#35937;&#28155;&#21152;&#21040; RFI &#21644;&#36716;&#21457; RFI &#20379;&#23457;&#26680;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>&#23558;&#20219;&#21153;&#20998;&#37197;&#23545;&#35937;&#28155;&#21152;&#21040; RFI &#21644;&#36716;&#21457; RFI &#20379;&#23457;&#26680;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#23558;&#21738;&#20123;&#20869;&#23481;&#20174;&#39033;&#30446;&#27169;&#26495;&#22797;&#21046;&#21040;&#26032;&#39033;&#30446;&#65311;"><span class="mt-icon-article-faq"></span>&#23558;&#21738;&#20123;&#20869;&#23481;&#20174;&#39033;&#30446;&#27169;&#26495;&#22797;&#21046;&#21040;&#26032;&#39033;&#30446;&#65311;</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="&#23558;&#25991;&#20214;&#19978;&#20256;&#21040;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#26102;&#65292;Procore &#21487;&#20197;&#33258;&#21160;&#22635;&#20805;&#20160;&#20040;&#25968;&#25454;&#65311;"><span class="mt-icon-article-faq"></span>&#23558;&#25991;&#20214;&#19978;&#20256;&#21040;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#26102;&#65292;Procore &#21487;&#20197;&#33258;&#21160;&#22635;&#20805;&#20160;&#20040;&#25968;&#25454;&#65311;</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="&#23558;&#29992;&#25143;&#28155;&#21152;&#21040; Procore &#39033;&#30446;&#38656;&#35201;&#20160;&#20040;&#26435;&#38480;&#65311;"><span class="mt-icon-article-tutorial"></span>&#23558;&#29992;&#25143;&#28155;&#21152;&#21040; Procore &#39033;&#30446;&#38656;&#35201;&#20160;&#20040;&#26435;&#38480;&#65311;</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="&#23558;&#39033;&#30446;&#26356;&#26032;&#21040;&#26032;&#29256;&#25237;&#26631; &#31649;&#29702;&#20307;&#39564;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#23558;&#39033;&#30446;&#26356;&#26032;&#21040;&#26032;&#29256;&#25237;&#26631; &#31649;&#29702;&#20307;&#39564;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.B0.9D"></span><h5 title="&#23581;">&#23581;</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="&#23581;&#35797;&#30331;&#24405;&#65292;&#20294;&#25910;&#21040;&#38169;&#35823;&#28040;&#24687;"><span class="mt-icon-article-faq"></span>&#23581;&#35797;&#30331;&#24405;&#65292;&#20294;&#25910;&#21040;&#38169;&#35823;&#28040;&#24687;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.B0.BE"></span><h5 title="&#23614;">&#23614;</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="&#23614;&#39033;&#28165;&#21333;&#24037;&#20316;&#27969;&#22914;&#20309;&#24433;&#21709;&#25105;&#29616;&#26377;&#30340;&#23614;&#39033;&#28165;&#21333;&#39033;&#65311;"><span class="mt-icon-article-faq"></span>&#23614;&#39033;&#28165;&#21333;&#24037;&#20316;&#27969;&#22914;&#20309;&#24433;&#21709;&#25105;&#29616;&#26377;&#30340;&#23614;&#39033;&#28165;&#21333;&#39033;&#65311;</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="&#23614;&#39033;&#28165;&#21333;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-faq"></span>&#23614;&#39033;&#28165;&#21333;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.B7.A5"></span><h5 title="&#24037;">&#24037;</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="&#24037;&#20316;&#26085;&#24535;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-faq"></span>&#24037;&#20316;&#26085;&#24535;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#24037;&#20316;&#27969;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#31867;&#22411;&#30340;&#27493;&#39588;&#65311;"><span class="mt-icon-article-faq"></span>&#24037;&#20316;&#27969;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#31867;&#22411;&#30340;&#27493;&#39588;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/when-are-email-notifications-sent-from-workflows" title="&#24037;&#20316;&#27969;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;"><span class="mt-icon-article-faq"></span>&#24037;&#20316;&#27969;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;</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="&#24037;&#26102;&#21644;&#26448;&#26009;&#21333;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-faq"></span>&#24037;&#26102;&#21644;&#26448;&#26009;&#21333;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-statuses-for-tm-tickets" title="&#24037;&#26102;&#21644;&#26448;&#26009;&#21333;&#30340;&#40664;&#35748;&#29366;&#24577;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#24037;&#26102;&#21644;&#26448;&#26009;&#21333;&#30340;&#40664;&#35748;&#29366;&#24577;&#26159;&#20160;&#20040;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.BA.94"></span><h5 title="&#24212;">&#24212;</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="&#24212;&#29992;&#21830;&#24215;&#24212;&#29992;&#31243;&#24207;&#19978;&#30340;&ldquo;&#21487;&#29992;&#21306;&#22495;&rdquo;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#24212;&#29992;&#21830;&#24215;&#24212;&#29992;&#31243;&#24207;&#19978;&#30340;&ldquo;&#21487;&#29992;&#21306;&#22495;&rdquo;&#26159;&#20160;&#20040;&#65311;</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="&#24212;&#35813;&#20351;&#29992;&#20160;&#20040;&#31867;&#22411;&#30340;&#31227;&#21160;&#35774;&#22791;&#26469;&#20351;&#29992; Procore&#65311;"><span class="mt-icon-article-faq"></span>&#24212;&#35813;&#20351;&#29992;&#20160;&#20040;&#31867;&#22411;&#30340;&#31227;&#21160;&#35774;&#22791;&#26469;&#20351;&#29992; Procore&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.BB.BA"></span><h5 title="&#24314;">&#24314;</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="&#24314;&#35758;&#22312;&#27169;&#22411;&#24037;&#20855;&#20013;&#20351;&#29992;&#20160;&#20040;&#31867;&#22411;&#30340;&#35774;&#22791;&#26597;&#30475;&#27169;&#22411;&#65311;"><span class="mt-icon-article-faq"></span>&#24314;&#35758;&#22312;&#27169;&#22411;&#24037;&#20855;&#20013;&#20351;&#29992;&#20160;&#20040;&#31867;&#22411;&#30340;&#35774;&#22791;&#26597;&#30475;&#27169;&#22411;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.BD.93"></span><h5 title="&#24403;">&#24403;</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="&#24403;&quot;&#38480;&#21046;&#23545;&#21512;&#21516;&#21644;&#21464;&#26356;&#36890;&#30693;&#21333;&#30340;&#38750;&#33609;&#31295;&#32534;&#36753;&quot;&#21644;&quot;&#21551;&#29992;&#22987;&#32456;&#21487;&#32534;&#36753;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&quot;&#21516;&#26102;&#21551;&#29992;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#24403;&quot;&#38480;&#21046;&#23545;&#21512;&#21516;&#21644;&#21464;&#26356;&#36890;&#30693;&#21333;&#30340;&#38750;&#33609;&#31295;&#32534;&#36753;&quot;&#21644;&quot;&#21551;&#29992;&#22987;&#32456;&#21487;&#32534;&#36753;&#30340;&#20998;&#39033;&#20215;&#26684;&#34920;&quot;&#21516;&#26102;&#21551;&#29992;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;</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="&#24403;&#20379;&#24212;&#21830;&#30340;&#20445;&#38505;&#21040;&#26399;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-faq"></span>&#24403;&#20379;&#24212;&#21830;&#30340;&#20445;&#38505;&#21040;&#26399;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#24403;&#21512;&#32422;&#26410;&#33021;&#20174; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#23548;&#20986;&#26102;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;"><span class="mt-icon-article-faq"></span>&#24403;&#21512;&#32422;&#26410;&#33021;&#20174; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#23548;&#20986;&#26102;&#65292;&#25105;&#35813;&#24590;&#20040;&#21150;&#65311;</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="&#24403;&#23458;&#25143;&#21512;&#21516;&#12289;&#36164;&#37329;&#25110;&#20027;&#21512;&#21516;&#24037;&#20855;&#34987;&#31105;&#29992;&#26102;&#65292;&#25105;&#22914;&#20309;&#35843;&#25972; Procore &#26631;&#20934;&#39044;&#27979;&#35270;&#22270;&#65311;"><span class="mt-icon-article-faq"></span>&#24403;&#23458;&#25143;&#21512;&#21516;&#12289;&#36164;&#37329;&#25110;&#20027;&#21512;&#21516;&#24037;&#20855;&#34987;&#31105;&#29992;&#26102;&#65292;&#25105;&#22914;&#20309;&#35843;&#25972; Procore &#26631;&#20934;&#39044;&#27979;&#35270;&#22270;&#65311;</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="&#24403;&#25105;&#19982;&#20854;&#20182; Procore &#29992;&#25143;&#20849;&#20139;&#25253;&#21578;&#26102;&#20250;&#24590;&#26679;&#65311;"><span class="mt-icon-article-faq"></span>&#24403;&#25105;&#19982;&#20854;&#20182; Procore &#29992;&#25143;&#20849;&#20139;&#25253;&#21578;&#26102;&#20250;&#24590;&#26679;&#65311;</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="&#24403;&#25105;&#20844;&#21496; Procore &#36134;&#25143;&#31105;&#29992;&#23458;&#25143;&#21512;&#21516;&#12289;&#36164;&#37329;&#25110;&#20027;&#21512;&#21516;&#24037;&#20855;&#26102;&#65292;&#25105;&#33021;&#22914;&#20309;&#35843;&#25972;&#39044;&#31639;&#35270;&#22270;&#65311;"><span class="mt-icon-article-faq"></span>&#24403;&#25105;&#20844;&#21496; Procore &#36134;&#25143;&#31105;&#29992;&#23458;&#25143;&#21512;&#21516;&#12289;&#36164;&#37329;&#25110;&#20027;&#21512;&#21516;&#24037;&#20855;&#26102;&#65292;&#25105;&#33021;&#22914;&#20309;&#35843;&#25972;&#39044;&#31639;&#35270;&#22270;&#65311;</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="&#24403;&#25105;&#23558;&#25991;&#26723;&#31649;&#29702;&#25991;&#20214;&#23548;&#20837;&#22270;&#32440;&#24037;&#20855;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#24403;&#25105;&#23558;&#25991;&#26723;&#31649;&#29702;&#25991;&#20214;&#23548;&#20837;&#22270;&#32440;&#24037;&#20855;&#26102;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;</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="&#24403;&#25105;&#30340; DocuSign &#36134;&#25143;&#19982;&#25105;&#30340; Procore &#36134;&#25143;&ldquo;&#21516;&#27493;&rdquo;&#26102;&#65292;&#36825;&#24847;&#21619;&#30528;&#20160;&#20040;&#65311;&#25105;&#35813;&#22914;&#20309;&#21516;&#27493;&#65311;"><span class="mt-icon-article-faq"></span>&#24403;&#25105;&#30340; DocuSign &#36134;&#25143;&#19982;&#25105;&#30340; Procore &#36134;&#25143;&ldquo;&#21516;&#27493;&rdquo;&#26102;&#65292;&#36825;&#24847;&#21619;&#30528;&#20160;&#20040;&#65311;&#25105;&#35813;&#22914;&#20309;&#21516;&#27493;&#65311;</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="&#24403;&#25968;&#25454;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#31561;&#24453;&#39564;&#25910;&#26102;&#65292;&#26159;&#21542;&#20250;&#36890;&#30693;&#20250;&#35745;&#23457;&#25209;&#32773;&#65311;"><span class="mt-icon-article-faq"></span>&#24403;&#25968;&#25454;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#20013;&#31561;&#24453;&#39564;&#25910;&#26102;&#65292;&#26159;&#21542;&#20250;&#36890;&#30693;&#20250;&#35745;&#23457;&#25209;&#32773;&#65311;</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="&#24403;&#39033;&#30446;&#26377;&#22810;&#20010;&#20027;&#21512;&#21516;&#26102;&#65292;&#26159;&#21542;&#26377;&#20219;&#20309;&#31995;&#32479;&#38480;&#21046;&#65311;"><span class="mt-icon-article-faq"></span>&#24403;&#39033;&#30446;&#26377;&#22810;&#20010;&#20027;&#21512;&#21516;&#26102;&#65292;&#26159;&#21542;&#26377;&#20219;&#20309;&#31995;&#32479;&#38480;&#21046;&#65311;</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="&#24403;&#39033;&#34987; ERP &#25298;&#32477;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#65311;"><span class="mt-icon-article-faq"></span>&#24403;&#39033;&#34987; ERP &#25298;&#32477;&#26102;&#65292;&#35841;&#20250;&#25910;&#21040;&#36890;&#30693;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.BE.85"></span><h5 title="&#24453;">&#24453;</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="&#24453;&#22788;&#29702;&#21512;&#32422;&#26159;&#21542;&#20250;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#33258;&#21160;&#21516;&#27493;&#65311;"><span class="mt-icon-article-faq"></span>&#24453;&#22788;&#29702;&#21512;&#32422;&#26159;&#21542;&#20250;&#19982;&#38598;&#25104; ERP &#31995;&#32479;&#33258;&#21160;&#21516;&#27493;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E5.BF.98"></span><h5 title="&#24536;">&#24536;</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="&#24536;&#35760;&#23494;&#30721;"><span class="mt-icon-article-topic"></span>&#24536;&#35760;&#23494;&#30721;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/trouble-logging-in-to-procore/forgot-email" title="&#24536;&#35760;&#30005;&#23376;&#37038;&#20214;"><span class="mt-icon-article-faq"></span>&#24536;&#35760;&#30005;&#23376;&#37038;&#20214;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.88.90"></span><h5 title="&#25104;">&#25104;</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="&#25104;&#26412;&#30446;&#24405;&#39033;&#31867;&#22411;&#19982; Procore &#20013;&#30340;&#25104;&#26412;&#31867;&#22411;&#26377;&#20309;&#20851;&#31995;&#65311;"><span class="mt-icon-article-faq"></span>&#25104;&#26412;&#30446;&#24405;&#39033;&#31867;&#22411;&#19982; Procore &#20013;&#30340;&#25104;&#26412;&#31867;&#22411;&#26377;&#20309;&#20851;&#31995;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.88.91"></span><h5 title="&#25105;">&#25105;</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="&#25105;&#20026;&#20160;&#20040;&#27809;&#26377;&#26597;&#30475;&#27492;&#32593;&#39029;&#30340;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#20026;&#20160;&#20040;&#27809;&#26377;&#26597;&#30475;&#27492;&#32593;&#39029;&#30340;&#26435;&#38480;&#65311;</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="&#25105;&#20197;&#20026;&#33258;&#24049;&#28155;&#21152;&#20102;&#19968;&#20010;&#29992;&#25143;&#65292;&#20294;&#29616;&#22312;&#25214;&#19981;&#21040;&#37027;&#20010;&#20154;&#12290;&#21457;&#29983;&#20102;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#20197;&#20026;&#33258;&#24049;&#28155;&#21152;&#20102;&#19968;&#20010;&#29992;&#25143;&#65292;&#20294;&#29616;&#22312;&#25214;&#19981;&#21040;&#37027;&#20010;&#20154;&#12290;&#21457;&#29983;&#20102;&#20160;&#20040;&#65311;</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="&#25105;&#20204;&#23558;&#21738;&#20123;&#22495;&#28155;&#21152;&#21040;&#25105;&#20204;&#32593;&#32476;&#30340;&ldquo;&#20801;&#35768;&#21517;&#21333;&rdquo;&#20013;&#20197;&#30830;&#20445;&#35775;&#38382; Procore&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#20204;&#23558;&#21738;&#20123;&#22495;&#28155;&#21152;&#21040;&#25105;&#20204;&#32593;&#32476;&#30340;&ldquo;&#20801;&#35768;&#21517;&#21333;&rdquo;&#20013;&#20197;&#30830;&#20445;&#35775;&#38382; Procore&#65311;</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="&#25105;&#20204;&#24212;&#35813;&#20026;&#20844;&#21496;&#30340;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#21019;&#24314;&#21738;&#20123;&#33258;&#23450;&#20041;&#32454;&#20998;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#20204;&#24212;&#35813;&#20026;&#20844;&#21496;&#30340;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#21019;&#24314;&#21738;&#20123;&#33258;&#23450;&#20041;&#32454;&#20998;&#65311;</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="&#25105;&#20204;&#26159;&#21542;&#24517;&#39035;&#20351;&#29992;&#30005;&#23376;&#37038;&#20214;&#24037;&#20855;&#21019;&#24314;&#21644;&#21457;&#36865;&#25105;&#20204;&#25152;&#26377;&#30340;&#39033;&#30446;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#20204;&#26159;&#21542;&#24517;&#39035;&#20351;&#29992;&#30005;&#23376;&#37038;&#20214;&#24037;&#20855;&#21019;&#24314;&#21644;&#21457;&#36865;&#25105;&#20204;&#25152;&#26377;&#30340;&#39033;&#30446;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#25105;&#20204;&#33021;&#21542;&#23548;&#20837;&#31532;&#19977;&#26041;&#32771;&#21220;&#21345;&#26465;&#30446;&#20197;&#19982; Procore &#39044;&#31639;&#24037;&#20855;&#20013;&#30340;&ldquo;&#32771;&#21220;&#34920;&#24037;&#26102;&rdquo;&#21015;&#37197;&#21512;&#20351;&#29992;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#20204;&#33021;&#21542;&#23548;&#20837;&#31532;&#19977;&#26041;&#32771;&#21220;&#21345;&#26465;&#30446;&#20197;&#19982; Procore &#39044;&#31639;&#24037;&#20855;&#20013;&#30340;&ldquo;&#32771;&#21220;&#34920;&#24037;&#26102;&rdquo;&#21015;&#37197;&#21512;&#20351;&#29992;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-upload-drawings-with-the-same-revision" title="&#25105;&#21487;&#20197;&#19978;&#20256;&#21253;&#21547;&#30456;&#21516;&#20462;&#35746;&#30340;&#22270;&#32440;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#19978;&#20256;&#21253;&#21547;&#30456;&#21516;&#20462;&#35746;&#30340;&#22270;&#32440;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#20026;&#20854;&#20182;&#29992;&#25143;&#28155;&#21152;&#20010;&#20154;&#22836;&#20687;&#25110;&#20010;&#20154;&#36164;&#26009;&#29031;&#29255;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#20026;&#20854;&#20182;&#29992;&#25143;&#28155;&#21152;&#20010;&#20154;&#22836;&#20687;&#25110;&#20010;&#20154;&#36164;&#26009;&#29031;&#29255;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#20174; Procore &#20013;&#21024;&#38500; Sage 300 CRE &#25104;&#26412;&#32534;&#21495;&#12289;&#25104;&#26412;&#31867;&#22411;&#25110;&#20379;&#24212;&#21830;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#20174; Procore &#20013;&#21024;&#38500; Sage 300 CRE &#25104;&#26412;&#32534;&#21495;&#12289;&#25104;&#26412;&#31867;&#22411;&#25110;&#20379;&#24212;&#21830;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#20174;&#25105;&#30340;&#31227;&#21160;&#35774;&#22791;&#35266;&#30475; Procore &#35748;&#35777;&#21644;&#25104;&#20154;&#25945;&#32946;&#35838;&#31243;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#20174;&#25105;&#30340;&#31227;&#21160;&#35774;&#22791;&#35266;&#30475; Procore &#35748;&#35777;&#21644;&#25104;&#20154;&#25945;&#32946;&#35838;&#31243;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#20351;&#29992; Ryvit &#38598;&#25104;&#20197;&#20309;&#31181;&#39057;&#29575;&#21516;&#27493;&#25968;&#25454;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#20351;&#29992; Ryvit &#38598;&#25104;&#20197;&#20309;&#31181;&#39057;&#29575;&#21516;&#27493;&#25968;&#25454;&#65311;</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="&#25105;&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#21019;&#24314;&#21464;&#26356;&#20107;&#20214;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#20351;&#29992;&#21738;&#20123; Procore &#24037;&#20855;&#21019;&#24314;&#21464;&#26356;&#20107;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-create-a-list-of-overdue-pccos" title="&#25105;&#21487;&#20197;&#21019;&#24314;&#19968;&#20221;&#36926;&#26399;&#20027;&#21512;&#21516;&#21464;&#26356;&#36890;&#30693;&#21333; (PCCO) &#30340;&#28165;&#21333;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#21019;&#24314;&#19968;&#20221;&#36926;&#26399;&#20027;&#21512;&#21516;&#21464;&#26356;&#36890;&#30693;&#21333; (PCCO) &#30340;&#28165;&#21333;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#22312; Mac &#19978;&#20351;&#29992; Procore Extracts &#24212;&#29992;&#31243;&#24207;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#22312; Mac &#19978;&#20351;&#29992; Procore Extracts &#24212;&#29992;&#31243;&#24207;&#21527;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-rotate-a-drawing-in-procore" title="&#25105;&#21487;&#20197;&#22312; Procore &#20013;&#26059;&#36716;&#22270;&#32440;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#22312; Procore &#20013;&#26059;&#36716;&#22270;&#32440;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#22312; Procore &#20013;&#26356;&#25913;&#20844;&#21496;&#12289;&#39033;&#30446;&#25110;&#29992;&#25143;&#35821;&#35328;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#22312; Procore &#20013;&#26356;&#25913;&#20844;&#21496;&#12289;&#39033;&#30446;&#25110;&#29992;&#25143;&#35821;&#35328;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#22312;&#19979;&#28216;&#21327;&#20316;&#32773;&#21709;&#24212;&#21464;&#26356;&#20107;&#20214;&#30340; RFQ &#20043;&#21069;&#20026;&#21512;&#21516;&#25110;&#36164;&#37329;&#21019;&#24314;&#21464;&#26356;&#36890;&#30693;&#21333;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#22312;&#19979;&#28216;&#21327;&#20316;&#32773;&#21709;&#24212;&#21464;&#26356;&#20107;&#20214;&#30340; RFQ &#20043;&#21069;&#20026;&#21512;&#21516;&#25110;&#36164;&#37329;&#21019;&#24314;&#21464;&#26356;&#36890;&#30693;&#21333;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#22312;&#21487;&#22635;&#20889;&#30340; PDF &#20013;&#21253;&#21547;&#31614;&#21517;&#23383;&#27573;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#22312;&#21487;&#22635;&#20889;&#30340; PDF &#20013;&#21253;&#21547;&#31614;&#21517;&#23383;&#27573;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#22312;&#25105;&#30340;&#31227;&#21160;&#35774;&#22791;&#19978;&#22635;&#20889;&#34920;&#21333;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#22312;&#25105;&#30340;&#31227;&#21160;&#35774;&#22791;&#19978;&#22635;&#20889;&#34920;&#21333;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#22312;&#25237;&#26631;&#25130;&#27490;&#26085;&#26399;&#20043;&#21518;&#21457;&#36865;&#36890;&#20449;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#22312;&#25237;&#26631;&#25130;&#27490;&#26085;&#26399;&#20043;&#21518;&#21457;&#36865;&#36890;&#20449;&#21527;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-use-procores-mobile-application-offline" title="&#25105;&#21487;&#20197;&#22312;&#31163;&#32447;&#27169;&#24335;&#19979;&#20351;&#29992; Procore &#30340;&#31227;&#21160;&#24212;&#29992;&#31243;&#24207;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#22312;&#31163;&#32447;&#27169;&#24335;&#19979;&#20351;&#29992; Procore &#30340;&#31227;&#21160;&#24212;&#29992;&#31243;&#24207;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#32534;&#36753;&#25105;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#25110;&#21457;&#31080;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#32534;&#36753;&#25105;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#25110;&#21457;&#31080;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#22312;&#39033;&#30446;&#30340;&#29031;&#29255;&#24037;&#20855;&#20013;&#23558;&#25152;&#26377;&#29031;&#29255;&#26631;&#35760;&#20026;&ldquo;&#31169;&#23494;&rdquo;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#22312;&#39033;&#30446;&#30340;&#29031;&#29255;&#24037;&#20855;&#20013;&#23558;&#25152;&#26377;&#29031;&#29255;&#26631;&#35760;&#20026;&ldquo;&#31169;&#23494;&rdquo;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#23548;&#20986;&#35774;&#32622;&#20026;&#31169;&#23494;&#30340;&#36890;&#20449;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#23548;&#20986;&#35774;&#32622;&#20026;&#31169;&#23494;&#30340;&#36890;&#20449;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#23558; Procore &#39044;&#31639;&#20462;&#25913;&#23548;&#20986;&#21040;&#38598;&#25104; ERP &#31995;&#32479;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#23558; Procore &#39044;&#31639;&#20462;&#25913;&#23548;&#20986;&#21040;&#38598;&#25104; ERP &#31995;&#32479;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#23558;&#19968;&#20010;&#39033;&#30446;&#30340;&#25991;&#26723;&#25991;&#20214;&#22841;&#22797;&#21046;&#21040;&#19968;&#20010;&#26032;&#39033;&#30446;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#23558;&#19968;&#20010;&#39033;&#30446;&#30340;&#25991;&#26723;&#25991;&#20214;&#22841;&#22797;&#21046;&#21040;&#19968;&#20010;&#26032;&#39033;&#30446;&#21527;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-can-i-assign-a-task-to" title="&#25105;&#21487;&#20197;&#23558;&#20219;&#21153;&#20998;&#37197;&#32473;&#35841;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#23558;&#20219;&#21153;&#20998;&#37197;&#32473;&#35841;&#65311;</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="&#25105;&#21487;&#20197;&#23558;&#20914;&#31361;&#21644;&#20914;&#31361;&#32452;&#23548;&#20837;&#21040;&#21327;&#35843;&#38382;&#39064;&#24037;&#20855;&#20013;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#23558;&#20914;&#31361;&#21644;&#20914;&#31361;&#32452;&#23548;&#20837;&#21040;&#21327;&#35843;&#38382;&#39064;&#24037;&#20855;&#20013;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#23558;&#21738;&#20123;&#31579;&#36873;&#22120;&#24212;&#29992;&#20110;&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#23558;&#21738;&#20123;&#31579;&#36873;&#22120;&#24212;&#29992;&#20110;&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-integrate-my-lms-with-procore-certification" title="&#25105;&#21487;&#20197;&#23558;&#25105;&#30340; LMS &#19982; Procore &#35748;&#35777;&#38598;&#25104;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#23558;&#25105;&#30340; LMS &#19982; Procore &#35748;&#35777;&#38598;&#25104;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#23558;&#25991;&#26723;&#24037;&#20855;&#20013;&#30340;&#25991;&#20214;&#22797;&#21046;&#21040;&#21478;&#19968;&#20010;&#39033;&#30446;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#23558;&#25991;&#26723;&#24037;&#20855;&#20013;&#30340;&#25991;&#20214;&#22797;&#21046;&#21040;&#21478;&#19968;&#20010;&#39033;&#30446;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#26356;&#25913; Procore &#25195;&#25551;&#22270;&#32440;&#25152;&#29992;&#30340;&#35821;&#35328;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#26356;&#25913; Procore &#25195;&#25551;&#22270;&#32440;&#25152;&#29992;&#30340;&#35821;&#35328;&#21527;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-disable-the-change-events-tool" title="&#25105;&#21487;&#20197;&#31105;&#29992;&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#31105;&#29992;&#21464;&#26356;&#20107;&#20214;&#24037;&#20855;&#21527;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-access-forms-offline" title="&#25105;&#21487;&#20197;&#31163;&#32447;&#35775;&#38382;&#34920;&#21333;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#31163;&#32447;&#35775;&#38382;&#34920;&#21333;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#36890;&#36807;&#30005;&#35805;&#25110;&#30005;&#23376;&#37038;&#20214;&#25509;&#25910;&#22825;&#27668;&#23548;&#33268;&#30340;&#24310;&#35823;&#35686;&#25253;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#36890;&#36807;&#30005;&#35805;&#25110;&#30005;&#23376;&#37038;&#20214;&#25509;&#25910;&#22825;&#27668;&#23548;&#33268;&#30340;&#24310;&#35823;&#35686;&#25253;&#21527;&#65311;</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="&#25105;&#21487;&#20197;&#38459;&#27490;&#22312;&#21608;&#26411;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#20197;&#38459;&#27490;&#22312;&#21608;&#26411;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#21527;&#65311;</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="&#25105;&#21487;&#22312; Sage 100 Contractor &#21644; Procore &#20043;&#38388;&#20197;&#20309;&#31181;&#39057;&#29575;&#21516;&#27493;&#25968;&#25454;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#22312; Sage 100 Contractor &#21644; Procore &#20043;&#38388;&#20197;&#20309;&#31181;&#39057;&#29575;&#21516;&#27493;&#25968;&#25454;&#65311;</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="&#25105;&#21487;&#22312; Sage 300 CRE &#21644; Procore &#20043;&#38388;&#20197;&#20309;&#31181;&#39057;&#29575;&#21516;&#27493;&#25968;&#25454;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#21487;&#22312; Sage 300 CRE &#21644; Procore &#20043;&#38388;&#20197;&#20309;&#31181;&#39057;&#29575;&#21516;&#27493;&#25968;&#25454;&#65311;</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="&#25105;&#22312; Procore &#25903;&#25345;&#32593;&#31449;&#19978;&#30340;&#29992;&#25143;&#20250;&#35805;&#20309;&#26102;&#36807;&#26399;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#22312; Procore &#25903;&#25345;&#32593;&#31449;&#19978;&#30340;&#29992;&#25143;&#20250;&#35805;&#20309;&#26102;&#36807;&#26399;&#65311;</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="&#25105;&#22312;&#21738;&#37324;&#21487;&#20197;&#25253;&#21517;&#21442;&#21152;&#20813;&#36153;&#30340;&#20844;&#24320;&#22521;&#35757;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#22312;&#21738;&#37324;&#21487;&#20197;&#25253;&#21517;&#21442;&#21152;&#20813;&#36153;&#30340;&#20844;&#24320;&#22521;&#35757;&#65311;</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="&#25105;&#22810;&#20037;&#21487;&#20197;&#22312; Procore &#21644; Viewpoint&reg; Spectrum&reg; &#20043;&#38388;&#21516;&#27493;&#25968;&#25454;&#19968;&#27425;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#22810;&#20037;&#21487;&#20197;&#22312; Procore &#21644; Viewpoint&reg; Spectrum&reg; &#20043;&#38388;&#21516;&#27493;&#25968;&#25454;&#19968;&#27425;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-i-post-an-idea-for-procore" title="&#25105;&#22914;&#20309;&#21457;&#24067;&#26377;&#20851; Procore &#30340;&#24819;&#27861;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#22914;&#20309;&#21457;&#24067;&#26377;&#20851; Procore &#30340;&#24819;&#27861;&#65311;</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="&#25105;&#22914;&#20309;&#22788;&#29702;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340; CM &#36153;&#29992;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#22914;&#20309;&#22788;&#29702;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340; CM &#36153;&#29992;&#65311;</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="&#25105;&#22914;&#20309;&#25511;&#21046; Procore &#20174;&#23614;&#39033;&#28165;&#21333;&#24037;&#20855;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#22914;&#20309;&#25511;&#21046; Procore &#20174;&#23614;&#39033;&#28165;&#21333;&#24037;&#20855;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#25105;&#22914;&#20309;&#26597;&#30475;&#26410;&#23436;&#25104;&#30340;&#35748;&#35777;&#25110;&#25104;&#20154;&#25945;&#32946;&#35838;&#31243;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#22914;&#20309;&#26597;&#30475;&#26410;&#23436;&#25104;&#30340;&#35748;&#35777;&#25110;&#25104;&#20154;&#25945;&#32946;&#35838;&#31243;&#65311;</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="&#25105;&#22914;&#20309;&#30693;&#36947;&#25105;&#22312;&#25237;&#26631;&#23460;&#21457;&#24067;&#30340; RFI &#26159;&#21542;&#24050;&#24471;&#21040;&#31572;&#22797;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#22914;&#20309;&#30693;&#36947;&#25105;&#22312;&#25237;&#26631;&#23460;&#21457;&#24067;&#30340; RFI &#26159;&#21542;&#24050;&#24471;&#21040;&#31572;&#22797;&#65311;</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="&#25105;&#22914;&#20309;&#30693;&#36947;&#25105;&#30340;&#21457;&#31080;&#25110;&#21464;&#26356;&#36890;&#30693;&#21333;&#20309;&#26102;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#34987;&#25209;&#20934;&#25110;&#25298;&#32477;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#22914;&#20309;&#30693;&#36947;&#25105;&#30340;&#21457;&#31080;&#25110;&#21464;&#26356;&#36890;&#30693;&#21333;&#20309;&#26102;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#34987;&#25209;&#20934;&#25110;&#25298;&#32477;&#65311;</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="&#25105;&#22914;&#20309;&#30693;&#36947;&#26159;&#21542;&#26377;&#20154;&#19979;&#36733;&#20102;&#25991;&#20214;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#22914;&#20309;&#30693;&#36947;&#26159;&#21542;&#26377;&#20154;&#19979;&#36733;&#20102;&#25991;&#20214;&#65311;</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="&#25105;&#22914;&#20309;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#21457;&#36865;&#36865;&#23457;&#65292;&#20197;&#20415;&#20154;&#20204;&#21487;&#20197;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#22238;&#22797;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#22914;&#20309;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#21457;&#36865;&#36865;&#23457;&#65292;&#20197;&#20415;&#20154;&#20204;&#21487;&#20197;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#22238;&#22797;&#65311;</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="&#25105;&#24212;&#35813;&#20026; Procore &#20013;&#30340;&#21738;&#20123;&#39033;&#21046;&#20316;&#27169;&#26495;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#24212;&#35813;&#20026; Procore &#20013;&#30340;&#21738;&#20123;&#39033;&#21046;&#20316;&#27169;&#26495;&#65311;</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="&#25105;&#24212;&#35813;&#22312;&#39033;&#30446;&#20013;&#21551;&#29992;&#35268;&#33539;&#24037;&#20855;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#24212;&#35813;&#22312;&#39033;&#30446;&#20013;&#21551;&#29992;&#35268;&#33539;&#24037;&#20855;&#21527;&#65311;</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="&#25105;&#24212;&#35813;&#23558;&#21738;&#20123;&#39044;&#31639;&#35270;&#22270;&#28155;&#21152;&#21040;&#25105;&#30340; Procore &#39033;&#30446;&#20013;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#24212;&#35813;&#23558;&#21738;&#20123;&#39044;&#31639;&#35270;&#22270;&#28155;&#21152;&#21040;&#25105;&#30340; Procore &#39033;&#30446;&#20013;&#65311;</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="&#25105;&#26159;&#21542;&#38656;&#35201;&#22312; Sage 300 CRE &#20013;&#20026; hh2 &#21516;&#27493;&#23458;&#25143;&#31471;&#21019;&#24314;&#19987;&#29992;&#29992;&#25143;&#36134;&#25143;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#26159;&#21542;&#38656;&#35201;&#22312; Sage 300 CRE &#20013;&#20026; hh2 &#21516;&#27493;&#23458;&#25143;&#31471;&#21019;&#24314;&#19987;&#29992;&#29992;&#25143;&#36134;&#25143;&#65311;</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="&#25105;&#26159;&#21542;&#38656;&#35201;&#22312;&#25237;&#26631;&#34920;&#21333;&#19978;&#20351;&#29992;&#25104;&#26412;&#32534;&#21495;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#26159;&#21542;&#38656;&#35201;&#22312;&#25237;&#26631;&#34920;&#21333;&#19978;&#20351;&#29992;&#25104;&#26412;&#32534;&#21495;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/which-cost-code-formats-are-supported-by-erp" title="&#25105;&#30340; ERP &#38598;&#25104;&#25903;&#25345;&#21738;&#20123;&#25104;&#26412;&#32534;&#21495;&#26684;&#24335;&#65311;"><span class="mt-icon-article-tutorial"></span>&#25105;&#30340; ERP &#38598;&#25104;&#25903;&#25345;&#21738;&#20123;&#25104;&#26412;&#32534;&#21495;&#26684;&#24335;&#65311;</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="&#25105;&#30340;&#20844;&#21496;&#22914;&#20309;&#36890;&#36807; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#25509;&#25910;&#25237;&#26631;&#36992;&#35831;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#30340;&#20844;&#21496;&#22914;&#20309;&#36890;&#36807; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#25509;&#25910;&#25237;&#26631;&#36992;&#35831;&#65311;</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="&#25105;&#30340;&#22270;&#32440;&#26085;&#24535;&#20013;&#30340;&#34013;&#33394;&#22270;&#26631;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#30340;&#22270;&#32440;&#26085;&#24535;&#20013;&#30340;&#34013;&#33394;&#22270;&#26631;&#26159;&#20160;&#20040;&#65311;</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="&#25105;&#30340;&#23614;&#39033;&#28165;&#21333;&#20013;&#30340;&ldquo;&#36890;&#30693;&#26085;&#26399;&rdquo;&#23383;&#27573;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#30340;&#23614;&#39033;&#28165;&#21333;&#20013;&#30340;&ldquo;&#36890;&#30693;&#26085;&#26399;&rdquo;&#23383;&#27573;&#26159;&#20160;&#20040;&#65311;</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="&#25105;&#30340;&#24037;&#26102;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#30340;&#24037;&#26102;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#25105;&#30340;&#29305;&#23450;&#20110;&#39033;&#30446;&#30340;&ldquo;&#25104;&#26412;&#32534;&#21495;&rdquo;&#32454;&#20998;&#39033;&#22914;&#20309;&#20174;&#39033;&#30446;&#27169;&#26495;&#36716;&#31227;&#21040;&#26032;&#39033;&#30446;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#30340;&#29305;&#23450;&#20110;&#39033;&#30446;&#30340;&ldquo;&#25104;&#26412;&#32534;&#21495;&rdquo;&#32454;&#20998;&#39033;&#22914;&#20309;&#20174;&#39033;&#30446;&#27169;&#26495;&#36716;&#31227;&#21040;&#26032;&#39033;&#30446;&#65311;</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="&#25105;&#33021;&#21542;&#19978;&#20256;&#21463;&#23494;&#30721;&#20445;&#25252;&#30340;&#21487;&#22635;&#20889; PDF&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#33021;&#21542;&#19978;&#20256;&#21463;&#23494;&#30721;&#20445;&#25252;&#30340;&#21487;&#22635;&#20889; PDF&#65311;</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="&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#33021;&#21542;&#20026;&#20855;&#26377;&quot;&#21482;&#35835;&quot;&#32423;&#21035;&#26435;&#38480;&#30340;&#29992;&#25143;&#25552;&#20379;&#26377;&#38480;&#35775;&#38382;&#26435;&#38480;&#65292;&#20197;&#20415;&#29992;&#25143;&#22312; Procore &#20013;&#26356;&#26032;&#20449;&#24687;&#65311;</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="&#25105;&#33021;&#21542;&#21019;&#24314;&#20855;&#26377;&#37325;&#22797;&#32534;&#21495;&#30340; RFI&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#33021;&#21542;&#21019;&#24314;&#20855;&#26377;&#37325;&#22797;&#32534;&#21495;&#30340; RFI&#65311;</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="&#25105;&#33021;&#21542;&#21521;&#27599;&#20010;&#20379;&#24212;&#21830;/&#20998;&#21253;&#21830;&#21457;&#36865;&#25237;&#26631;&#26356;&#26032;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#33021;&#21542;&#21521;&#27599;&#20010;&#20379;&#24212;&#21830;/&#20998;&#21253;&#21830;&#21457;&#36865;&#25237;&#26631;&#26356;&#26032;&#30005;&#23376;&#37038;&#20214;&#65311;</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="&#25105;&#33021;&#21542;&#22312; Procore Web &#29256;&#19978;&#22635;&#20889;&#34920;&#21333;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#33021;&#21542;&#22312; Procore Web &#29256;&#19978;&#22635;&#20889;&#34920;&#21333;&#65311;</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="&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#33021;&#21542;&#22312; Procore &#20013;&#33258;&#23450;&#20041;&#36130;&#21153;&#23545;&#35937;&#30340;&#32534;&#21495;&#31995;&#32479;&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#20844;&#21496;&#21516;&#27493;&#21518;&#26356;&#25913;&#36873;&#23450;&#30340;&#20379;&#24212;&#21830;&#31867;&#22411;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#33021;&#21542;&#22312;&#20844;&#21496;&#21516;&#27493;&#21518;&#26356;&#25913;&#36873;&#23450;&#30340;&#20379;&#24212;&#21830;&#31867;&#22411;&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#21487;&#22635;&#20889; PDF &#34920;&#21333;&#20013;&#21253;&#21547;&#24517;&#22635;&#23383;&#27573;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#33021;&#21542;&#22312;&#21487;&#22635;&#20889; PDF &#34920;&#21333;&#20013;&#21253;&#21547;&#24517;&#22635;&#23383;&#27573;&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#25237;&#26631;&#23460;&#25171;&#21360;&#25110;&#23548;&#20986;&#25105;&#30340;&#25237;&#26631;&#21103;&#26412;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#33021;&#21542;&#22312;&#25237;&#26631;&#23460;&#25171;&#21360;&#25110;&#23548;&#20986;&#25105;&#30340;&#25237;&#26631;&#21103;&#26412;&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#25237;&#26631;&#23460;&#30340;&#25237;&#26631;&#36882;&#20132;&#20013;&#21253;&#21547;&#25187;&#38500;&#39069;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#33021;&#21542;&#22312;&#25237;&#26631;&#23460;&#30340;&#25237;&#26631;&#36882;&#20132;&#20013;&#21253;&#21547;&#25187;&#38500;&#39069;&#65311;</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="&#25105;&#33021;&#21542;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#33258;&#23450;&#20041;&#39033;&#30446;&#31867;&#22411;&#36873;&#39033;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#33021;&#21542;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#33258;&#23450;&#20041;&#39033;&#30446;&#31867;&#22411;&#36873;&#39033;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-enforce-required-fields-in-a-form" title="&#25105;&#33021;&#21542;&#22312;&#34920;&#21333;&#20013;&#24378;&#21046;&#25191;&#34892;&#24517;&#22635;&#23383;&#27573;&#65311;"><span class="mt-icon-article-tutorial"></span>&#25105;&#33021;&#21542;&#22312;&#34920;&#21333;&#20013;&#24378;&#21046;&#25191;&#34892;&#24517;&#22635;&#23383;&#27573;&#65311;</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="&#25105;&#33021;&#21542;&#25253;&#21578;&#34920;&#21333;&#24037;&#20855;&#20013;&#30340;&#20869;&#23481;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#33021;&#21542;&#25253;&#21578;&#34920;&#21333;&#24037;&#20855;&#20013;&#30340;&#20869;&#23481;&#65311;</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="&#25105;&#33021;&#21542;&#25509;&#25910;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&#27599;&#26085;&#27963;&#21160;&#25688;&#35201;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#33021;&#21542;&#25509;&#25910;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&#27599;&#26085;&#27963;&#21160;&#25688;&#35201;&#65311;</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="&#25105;&#33021;&#21542;&#25628;&#32034;&#21487;&#22635;&#20889; PDF &#30340;&#20869;&#23481;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#33021;&#21542;&#25628;&#32034;&#21487;&#22635;&#20889; PDF &#30340;&#20869;&#23481;&#65311;</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="&#25105;&#33021;&#21542;&#26356;&#25913;&#30446;&#24405;&#20013;&#20154;&#21592;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#33021;&#21542;&#26356;&#25913;&#30446;&#24405;&#20013;&#20154;&#21592;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&#65311;</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="&#25105;&#33021;&#21542;&#26356;&#26032; Procore Web &#24212;&#29992;&#31243;&#24207;&#19978;&#30340;&ldquo;&#23436;&#25104;&#30334;&#20998;&#27604;&rdquo;&#23383;&#27573;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#33021;&#21542;&#26356;&#26032; Procore Web &#24212;&#29992;&#31243;&#24207;&#19978;&#30340;&ldquo;&#23436;&#25104;&#30334;&#20998;&#27604;&rdquo;&#23383;&#27573;&#65311;</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="&#25105;&#33021;&#21542;&#36890;&#36807;&#31227;&#21160;&#35774;&#22791;&#23558;&#29031;&#29255;&#28155;&#21152;&#21040;&#23614;&#39033;&#28165;&#21333;&#39033;&#30446;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#33021;&#21542;&#36890;&#36807;&#31227;&#21160;&#35774;&#22791;&#23558;&#29031;&#29255;&#28155;&#21152;&#21040;&#23614;&#39033;&#28165;&#21333;&#39033;&#30446;&#65311;</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="&#25105;&#35813;&#36873;&#25321;&#21738;&#20123; Viewpoint&reg; Spectrum&reg; &#20316;&#19994;&#20986;&#29616;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#30340;&ldquo;&#36873;&#25321;&#20316;&#19994;&#27169;&#26495;&rdquo;&#21015;&#34920;&#20013;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#35813;&#36873;&#25321;&#21738;&#20123; Viewpoint&reg; Spectrum&reg; &#20316;&#19994;&#20986;&#29616;&#22312; ERP &#38598;&#25104;&#24037;&#20855;&#30340;&ldquo;&#36873;&#25321;&#20316;&#19994;&#27169;&#26495;&rdquo;&#21015;&#34920;&#20013;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/do-i-need-a-docusign-account" title="&#25105;&#38656;&#35201;&#25317;&#26377; DocuSign&copy; &#36134;&#25143;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#25105;&#38656;&#35201;&#25317;&#26377; DocuSign&copy; &#36134;&#25143;&#21527;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.8A.95"></span><h5 title="&#25237;">&#25237;</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="&#25237;&#26631;&#20154;&#21487;&#20197;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#25552;&#20132;&#25237;&#26631;&#36824;&#26159;&#24517;&#39035;&#30331;&#24405;&#65311;"><span class="mt-icon-article-faq"></span>&#25237;&#26631;&#20154;&#21487;&#20197;&#36890;&#36807;&#30005;&#23376;&#37038;&#20214;&#25552;&#20132;&#25237;&#26631;&#36824;&#26159;&#24517;&#39035;&#30331;&#24405;&#65311;</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="&#25237;&#26631;&#20154;&#22312;&#25237;&#26631;&#23460;&#30475;&#21040;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#25237;&#26631;&#20154;&#22312;&#25237;&#26631;&#23460;&#30475;&#21040;&#20160;&#20040;&#65311;</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="&#25237;&#26631;&#20154;&#38656;&#35201;&#21738;&#20123;&#26435;&#38480;&#25165;&#33021;&#21463;&#36992;&#25237;&#26631;&#21644;&#25552;&#20132;&#25237;&#26631;&#65311;"><span class="mt-icon-article-faq"></span>&#25237;&#26631;&#20154;&#38656;&#35201;&#21738;&#20123;&#26435;&#38480;&#25165;&#33021;&#21463;&#36992;&#25237;&#26631;&#21644;&#25552;&#20132;&#25237;&#26631;&#65311;</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="&#25237;&#26631;&#23460;&#20013;&#30340;&#26085;&#26399;&#26159;&#21542;&#20250;&#28155;&#21152;&#21040;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#37324;&#31243;&#30865;&#65311;"><span class="mt-icon-article-faq"></span>&#25237;&#26631;&#23460;&#20013;&#30340;&#26085;&#26399;&#26159;&#21542;&#20250;&#28155;&#21152;&#21040;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#37324;&#31243;&#30865;&#65311;</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="&#25237;&#26631;&#23460;&#25237;&#26631;&#34920;&#21333;&#19978;&#30340;&ldquo;&#35843;&#25972;&rdquo;&#37096;&#20998;&#21253;&#25324;&#21738;&#20123;&#20869;&#23481;&#65311;"><span class="mt-icon-article-faq"></span>&#25237;&#26631;&#23460;&#25237;&#26631;&#34920;&#21333;&#19978;&#30340;&ldquo;&#35843;&#25972;&rdquo;&#37096;&#20998;&#21253;&#25324;&#21738;&#20123;&#20869;&#23481;&#65311;</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="&#25237;&#26631;&#24037;&#20855;&#20013;&#26087;&#29256;&#21644;&#26032;&#29256;&#25237;&#26631;&#31649;&#29702;&#20307;&#39564;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>&#25237;&#26631;&#24037;&#20855;&#20013;&#26087;&#29256;&#21644;&#26032;&#29256;&#25237;&#26631;&#31649;&#29702;&#20307;&#39564;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.8E.A5"></span><h5 title="&#25509;">&#25509;</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="&#25509;&#21463; Procore &#36992;&#35831;&#21644;&#21019;&#24314;&#20813;&#36153; Procore &#20844;&#21496;&#36134;&#25143;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>&#25509;&#21463; Procore &#36992;&#35831;&#21644;&#21019;&#24314;&#20813;&#36153; Procore &#20844;&#21496;&#36134;&#25143;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.8F.90"></span><h5 title="&#25552;">&#25552;</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="&#25552;&#21462;&#30340;&#39033;&#30446;&#25968;&#25454;&#20013;&#21253;&#21547;&#30340;&ldquo;&#25991;&#20214;&#37325;&#21629;&#21517;&#20449;&#24687; (File Rename Information)&rdquo;&#25991;&#20214;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#25552;&#21462;&#30340;&#39033;&#30446;&#25968;&#25454;&#20013;&#21253;&#21547;&#30340;&ldquo;&#25991;&#20214;&#37325;&#21629;&#21517;&#20449;&#24687; (File Rename Information)&rdquo;&#25991;&#20214;&#26159;&#20160;&#20040;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.96.87"></span><h5 title="&#25991;">&#25991;</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="&#25991;&#26723;&#24037;&#20855;&#20013;&#30340; 3D &#27169;&#22411;&#26597;&#30475;&#22120;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#31867;&#22411;&#65311;"><span class="mt-icon-article-faq"></span>&#25991;&#26723;&#24037;&#20855;&#20013;&#30340; 3D &#27169;&#22411;&#26597;&#30475;&#22120;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#31867;&#22411;&#65311;</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="&#25991;&#26723;&#24037;&#20855;&#20013;&#30340;&ldquo;&#36827;&#24230;&#35745;&#21010;&rdquo;&#25991;&#20214;&#22841;&#26159;&#20160;&#20040;&#65311;&#20026;&#20160;&#20040;&#19981;&#33021;&#21024;&#38500;&#65311;"><span class="mt-icon-article-faq"></span>&#25991;&#26723;&#24037;&#20855;&#20013;&#30340;&ldquo;&#36827;&#24230;&#35745;&#21010;&rdquo;&#25991;&#20214;&#22841;&#26159;&#20160;&#20040;&#65311;&#20026;&#20160;&#20040;&#19981;&#33021;&#21024;&#38500;&#65311;</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="&#25991;&#26723;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-faq"></span>&#25991;&#26723;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/document-management-general-faq" title="&#25991;&#26723;&#31649;&#29702;&#65306;&#19968;&#33324;&#24120;&#35265;&#38382;&#39064;"><span class="mt-icon-article-faq"></span>&#25991;&#26723;&#31649;&#29702;&#65306;&#19968;&#33324;&#24120;&#35265;&#38382;&#39064;</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="&#25991;&#26723;&#31649;&#29702;&#24037;&#20316;&#27969;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#25991;&#26723;&#31649;&#29702;&#24037;&#20316;&#27969;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#23383;&#27573;&#65311;"><span class="mt-icon-article-faq"></span>&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#23383;&#27573;&#65311;</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="&#25991;&#26723;&#31649;&#29702;&#38468;&#20214;&#21644;&#26469;&#33258;&#20854;&#20182;&#24037;&#20855;&#30340;&#38468;&#20214;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>&#25991;&#26723;&#31649;&#29702;&#38468;&#20214;&#21644;&#26469;&#33258;&#20854;&#20182;&#24037;&#20855;&#30340;&#38468;&#20214;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.97.A7"></span><h5 title="&#26087;">&#26087;</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="&#26087;&#29256;&#24037;&#20316;&#27969;&#21644;&#33258;&#21161;&#24335;&#24037;&#20316;&#27969;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>&#26087;&#29256;&#24037;&#20316;&#27969;&#21644;&#33258;&#21161;&#24335;&#24037;&#20316;&#27969;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.98.AF"></span><h5 title="&#26159;">&#26159;</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="&#26159;&#20160;&#20040;&#20351;&#20844;&#21496;&#22312; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#30340;&#25628;&#32034;&#32467;&#26524;&#20013;&#26356;&#39640;&#65311;"><span class="mt-icon-article-faq"></span>&#26159;&#20160;&#20040;&#20351;&#20844;&#21496;&#22312; Procore &#24314;&#35774;&#24037;&#31243;&#32593;&#32476;&#30340;&#25628;&#32034;&#32467;&#26524;&#20013;&#26356;&#39640;&#65311;</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="&#26159;&#21542;&#21487;&#20197;&#20026;&#25105;&#30340;&#39033;&#30446;&#24037;&#20855;&#35774;&#32622;&#22810;&#20010;&#25910;&#34255;&#22841;&#21015;&#34920;&#65292;&#20197;&#24212;&#29992;&#20110;&#19981;&#21516;&#30340;&#39033;&#30446;&#65311;"><span class="mt-icon-article-faq"></span>&#26159;&#21542;&#21487;&#20197;&#20026;&#25105;&#30340;&#39033;&#30446;&#24037;&#20855;&#35774;&#32622;&#22810;&#20010;&#25910;&#34255;&#22841;&#21015;&#34920;&#65292;&#20197;&#24212;&#29992;&#20110;&#19981;&#21516;&#30340;&#39033;&#30446;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/can-i-export-data-from-the-conversations-tool" title="&#26159;&#21542;&#21487;&#20197;&#20174;&#23545;&#35805;&#24037;&#20855;&#20013;&#23548;&#20986;&#25968;&#25454;&#65311;"><span class="mt-icon-article-faq"></span>&#26159;&#21542;&#21487;&#20197;&#20174;&#23545;&#35805;&#24037;&#20855;&#20013;&#23548;&#20986;&#25968;&#25454;&#65311;</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="&#26159;&#21542;&#21487;&#20197;&#23558;&#20272;&#31639;&#20540;&#20174;&#20272;&#31639;&#24037;&#20855;&#22797;&#21046;&#21040;&#26032;&#39033;&#30446;&#65311;"><span class="mt-icon-article-faq"></span>&#26159;&#21542;&#21487;&#20197;&#23558;&#20272;&#31639;&#20540;&#20174;&#20272;&#31639;&#24037;&#20855;&#22797;&#21046;&#21040;&#26032;&#39033;&#30446;&#65311;</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="&#26159;&#21542;&#21487;&#20197;&#23558;&#33258;&#23450;&#20041;&#32454;&#20998;&#24212;&#29992;&#20110;&#29616;&#26377;&#30340;&#38750; WBS &#39033;&#30446;&#65311;"><span class="mt-icon-article-faq"></span>&#26159;&#21542;&#21487;&#20197;&#23558;&#33258;&#23450;&#20041;&#32454;&#20998;&#24212;&#29992;&#20110;&#29616;&#26377;&#30340;&#38750; WBS &#39033;&#30446;&#65311;</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="&#26159;&#21542;&#21487;&#20197;&#25209;&#37327;&#26367;&#25442;&#39033;&#30446;&#36865;&#23457;&#20013;&#30340;&#23457;&#25209;&#32773;&#12289;&#36865;&#23457;&#32773;&#25110;&#23457;&#26680;&#20154;&#65311;"><span class="mt-icon-article-faq"></span>&#26159;&#21542;&#21487;&#20197;&#25209;&#37327;&#26367;&#25442;&#39033;&#30446;&#36865;&#23457;&#20013;&#30340;&#23457;&#25209;&#32773;&#12289;&#36865;&#23457;&#32773;&#25110;&#23457;&#26680;&#20154;&#65311;</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="&#26159;&#21542;&#21487;&#20197;&#40664;&#35748;&#22312;&#25991;&#26723;&#24037;&#20855;&#20013;&#23558;&#25991;&#20214;&#21644;&#25991;&#20214;&#22841;&#35774;&#20026;&#31169;&#23494;&#65311;"><span class="mt-icon-article-faq"></span>&#26159;&#21542;&#21487;&#20197;&#40664;&#35748;&#22312;&#25991;&#26723;&#24037;&#20855;&#20013;&#23558;&#25991;&#20214;&#21644;&#25991;&#20214;&#22841;&#35774;&#20026;&#31169;&#23494;&#65311;</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="&#26159;&#21542;&#24212;&#35813;&#23558; Microsoft Project &#36827;&#24230;&#35745;&#21010;&#38598;&#25104;&#21040; Procore Web &#24212;&#29992;&#31243;&#24207;&#25110; Procore Drive&#65311;"><span class="mt-icon-article-faq"></span>&#26159;&#21542;&#24212;&#35813;&#23558; Microsoft Project &#36827;&#24230;&#35745;&#21010;&#38598;&#25104;&#21040; Procore Web &#24212;&#29992;&#31243;&#24207;&#25110; Procore Drive&#65311;</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="&#26159;&#21542;&#24212;&#35813;&#26356;&#26032;&#39044;&#31639;&#35270;&#22270;&#20197;&#23558; RFQ &#20540;&#28155;&#21152;&#21040;&#39044;&#31639;&#20013;&#65311;"><span class="mt-icon-article-faq"></span>&#26159;&#21542;&#24212;&#35813;&#26356;&#26032;&#39044;&#31639;&#35270;&#22270;&#20197;&#23558; RFQ &#20540;&#28155;&#21152;&#21040;&#39044;&#31639;&#20013;&#65311;</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="&#26159;&#21542;&#26377;&#21150;&#27861;&#26597;&#30475; Procore &#20013;&#20998;&#37197;&#32473;&#25105;&#30340;&#25152;&#26377;&#26410;&#23436;&#25104;&#39033;&#65311;"><span class="mt-icon-article-faq"></span>&#26159;&#21542;&#26377;&#21150;&#27861;&#26597;&#30475; Procore &#20013;&#20998;&#37197;&#32473;&#25105;&#30340;&#25152;&#26377;&#26410;&#23436;&#25104;&#39033;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.9B.B4"></span><h5 title="&#26356;">&#26356;</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="&#26356;&#26032;&#20316;&#19994;&#26085;&#24535;&#37096;&#20998;&#26102;&#65292;&#20026;&#20160;&#20040;&#22312;&#25105;&#30340;&#36164;&#28304;&#21015;&#34920;&#20013;&#30475;&#19981;&#21040;&#20219;&#20309;&#21517;&#31216;&#65311;"><span class="mt-icon-article-faq"></span>&#26356;&#26032;&#20316;&#19994;&#26085;&#24535;&#37096;&#20998;&#26102;&#65292;&#20026;&#20160;&#20040;&#22312;&#25105;&#30340;&#36164;&#28304;&#21015;&#34920;&#20013;&#30475;&#19981;&#21040;&#20219;&#20309;&#21517;&#31216;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.9C.89"></span><h5 title="&#26377;">&#26377;</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="&#26377;&#21738;&#20123;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#20197;&#21450;&#25105;&#20204;&#30340; ERP &#38598;&#25104;&#22914;&#20309;&#25903;&#25345;&#36825;&#20123;&#25104;&#26412;&#31867;&#22411;&#65311;"><span class="mt-icon-article-faq"></span>&#26377;&#21738;&#20123;&ldquo;&#25104;&#26412;&#31867;&#22411;&rdquo;&#20197;&#21450;&#25105;&#20204;&#30340; ERP &#38598;&#25104;&#22914;&#20309;&#25903;&#25345;&#36825;&#20123;&#25104;&#26412;&#31867;&#22411;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-different-rfq-statuses" title="&#26377;&#21738;&#20123;&#19981;&#21516;&#30340; RFQ &#29366;&#24577;&#20197;&#21450;&#23427;&#20204;&#22914;&#20309;&#24433;&#21709;&#25104;&#26412;&#21644;&#21464;&#26356;&#36890;&#30693;&#21333;&#37329;&#39069;&#65311;"><span class="mt-icon-article-faq"></span>&#26377;&#21738;&#20123;&#19981;&#21516;&#30340; RFQ &#29366;&#24577;&#20197;&#21450;&#23427;&#20204;&#22914;&#20309;&#24433;&#21709;&#25104;&#26412;&#21644;&#21464;&#26356;&#36890;&#30693;&#21333;&#37329;&#39069;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.9D.83"></span><h5 title="&#26435;">&#26435;</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="&#26435;&#38480;&#22914;&#20309;&#22312;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#21457;&#25381;&#20316;&#29992;&#65311;"><span class="mt-icon-article-faq"></span>&#26435;&#38480;&#22914;&#20309;&#22312;&#25991;&#26723;&#31649;&#29702;&#24037;&#20855;&#20013;&#21457;&#25381;&#20316;&#29992;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.9F.90"></span><h5 title="&#26576;">&#26576;</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="&#26576;&#20154;&#22914;&#20309;&#25165;&#33021;&#25104;&#20026; Procore &#20013;&#23545;&#35805;&#30340;&ldquo;&#20851;&#27880;&#32773;&rdquo;&#65311;"><span class="mt-icon-article-faq"></span>&#26576;&#20154;&#22914;&#20309;&#25165;&#33021;&#25104;&#20026; Procore &#20013;&#23545;&#35805;&#30340;&ldquo;&#20851;&#27880;&#32773;&rdquo;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.A3.80"></span><h5 title="&#26816;">&#26816;</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="&#26816;&#26597;&#20219;&#21153;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-faq"></span>&#26816;&#26597;&#20219;&#21153;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/inspection-requirements-general-faq" title="&#26816;&#26597;&#20219;&#21153;&#35201;&#27714;:&#19968;&#33324;&#24120;&#35265;&#38382;&#39064;"><span class="mt-icon-article-reference"></span>&#26816;&#26597;&#20219;&#21153;&#35201;&#27714;:&#19968;&#33324;&#24120;&#35265;&#38382;&#39064;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.AD.A3"></span><h5 title="&#27491;">&#27491;</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="&#27491;&#22312;&#23547;&#25214;&#30340; Procore &#35748;&#35777;&#35838;&#31243;&#22312;&#21738;&#37324;&#65311;"><span class="mt-icon-article-faq"></span>&#27491;&#22312;&#23547;&#25214;&#30340; Procore &#35748;&#35777;&#35838;&#31243;&#22312;&#21738;&#37324;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.AF.8F"></span><h5 title="&#27599;">&#27599;</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="&#27599;&#20010;&#26435;&#38480;&#32423;&#21035;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#27599;&#20010;&#26435;&#38480;&#32423;&#21035;&#30340;&#21547;&#20041;&#26159;&#20160;&#20040;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.B0.B4"></span><h5 title="&#27700;">&#27700;</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="&#27700;&#24179;&#20998;&#39033;&#21033;&#28070;&#21152;&#25104;&#21644;&#22402;&#30452;&#27719;&#24635;&#21033;&#28070;&#21152;&#25104;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>&#27700;&#24179;&#20998;&#39033;&#21033;&#28070;&#21152;&#25104;&#21644;&#22402;&#30452;&#27719;&#24635;&#21033;&#28070;&#21152;&#25104;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E6.B5.8B"></span><h5 title="&#27979;">&#27979;</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="&#27979;&#35797;&#29256;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;"><span class="mt-icon-article-faq"></span>&#27979;&#35797;&#29256;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E7.85.A7"></span><h5 title="&#29031;">&#29031;</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="&#29031;&#29255;&#24037;&#20855;&#20013;&#30340;&ldquo;&#25628;&#32034;&rdquo;&#26694;&#20250;&#25628;&#32034;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#29031;&#29255;&#24037;&#20855;&#20013;&#30340;&ldquo;&#25628;&#32034;&rdquo;&#26694;&#20250;&#25628;&#32034;&#20160;&#20040;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E7.8E.B0"></span><h5 title="&#29616;">&#29616;</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="&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#20013;&#21253;&#21547;&#21738;&#20123;&#25968;&#25454;&#21015;&#65311;"><span class="mt-icon-article-faq"></span>&#29616;&#22330;&#29983;&#20135;&#25253;&#21578;&#20013;&#21253;&#21547;&#21738;&#20123;&#25968;&#25454;&#21015;&#65311;</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="&#29616;&#37329;&#27969;&#39044;&#27979;&#21644;&#36164;&#37329;&#35268;&#21010;&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30456;&#20114;&#20316;&#29992;&#65311;"><span class="mt-icon-article-faq"></span>&#29616;&#37329;&#27969;&#39044;&#27979;&#21644;&#36164;&#37329;&#35268;&#21010;&#22914;&#20309;&#22312;&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30456;&#20114;&#20316;&#29992;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E7.94.A8"></span><h5 title="&#29992;">&#29992;</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="&#29992;&#20110;&#20272;&#31639;&#30340;&#25104;&#26412;&#30446;&#24405;&#20013;&#30340;&#30446;&#24405;&#12289;&#31867;&#21035;&#21644;&#39033;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>&#29992;&#20110;&#20272;&#31639;&#30340;&#25104;&#26412;&#30446;&#24405;&#20013;&#30340;&#30446;&#24405;&#12289;&#31867;&#21035;&#21644;&#39033;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#29992;&#25143;&#26159;&#21542;&#38656;&#35201;&#30331;&#24405; Procore &#25165;&#33021;&#31572;&#22797; RFI&#65311;"><span class="mt-icon-article-faq"></span>&#29992;&#25143;&#26159;&#21542;&#38656;&#35201;&#30331;&#24405; Procore &#25165;&#33021;&#31572;&#22797; RFI&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E7.9B.AE"></span><h5 title="&#30446;">&#30446;</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="&#30446;&#24405;&#24037;&#20855;&#20013;&ldquo;&#20844;&#21496;&#21517;&#31216;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;"><span class="mt-icon-article-faq"></span>&#30446;&#24405;&#24037;&#20855;&#20013;&ldquo;&#20844;&#21496;&#21517;&#31216;&rdquo;&#30340;&#26368;&#22823;&#23383;&#31526;&#38271;&#24230;&#26159;&#22810;&#23569;&#65311;</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="&#30446;&#24405;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-faq"></span>&#30446;&#24405;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E7.A7.81"></span><h5 title="&#31169;">&#31169;</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="&#31169;&#23494;&#36890;&#20449;&#21487;&#20197;&#20844;&#24320;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#31169;&#23494;&#36890;&#20449;&#21487;&#20197;&#20844;&#24320;&#21527;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E7.BB.9F"></span><h5 title="&#32479;">&#32479;</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="&#32479;&#19968;&#38468;&#20214;&#26597;&#30475;&#22120;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#31867;&#22411;&#21644;&#26684;&#24335;&#65311;"><span class="mt-icon-article-faq"></span>&#32479;&#19968;&#38468;&#20214;&#26597;&#30475;&#22120;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#31867;&#22411;&#21644;&#26684;&#24335;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E7.BB.BC"></span><h5 title="&#32508;">&#32508;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#22242;&#38431;&#25104;&#21592;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#26435;&#38480;&#32423;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#22242;&#38431;&#25104;&#21592;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#26435;&#38480;&#32423;&#21035;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&ldquo;&#21457;&#36865;&#21040;&#24212;&#20184;&#20250;&#35745;&rdquo;&#21151;&#33021;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&ldquo;&#21457;&#36865;&#21040;&#24212;&#20184;&#20250;&#35745;&rdquo;&#21151;&#33021;&#26159;&#20160;&#20040;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-invoice-approvals-work-in-portfolio-financials" title="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21457;&#31080;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;"><span class="mt-icon-article-faq"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21457;&#31080;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;"><span class="mt-icon-article-faq"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-contract-approvals-work-in-portfolio-financials" title="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;"><span class="mt-icon-article-faq"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#21512;&#21516;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#23457;&#25209;&#24037;&#20316;&#27969;&#20250;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;"><span class="mt-icon-article-faq"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#23457;&#25209;&#24037;&#20316;&#27969;&#20250;&#21457;&#36865;&#21738;&#20123;&#30005;&#23376;&#37038;&#20214;&#36890;&#30693;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-bid-approvals-work-in-portfolio-financials" title="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;"><span class="mt-icon-article-faq"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-is-the-bid-room-in-portfolio-financials" title="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#25237;&#26631;&#23460;&#26159;&#20160;&#20040;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#37324;&#31243;&#30865;&#20381;&#36182;&#39033;&#26159;&#20160;&#20040;&#65311;&#22914;&#20309;&#36827;&#34892;&#35774;&#32622;&#65311;"><span class="mt-icon-article-faq"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#37324;&#31243;&#30865;&#20381;&#36182;&#39033;&#26159;&#20160;&#20040;&#65311;&#22914;&#20309;&#36827;&#34892;&#35774;&#32622;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#37324;&#31243;&#30865;&#26159;&#21542;&#19982;&#25105;&#30340;&#22806;&#37096;&#39033;&#30446;&#36827;&#24230;&#35745;&#21010;&#21516;&#27493;&#65311;"><span class="mt-icon-article-faq"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#37324;&#31243;&#30865;&#26159;&#21542;&#19982;&#25105;&#30340;&#22806;&#37096;&#39033;&#30446;&#36827;&#24230;&#35745;&#21010;&#21516;&#27493;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#22242;&#38431;&#26159;&#20160;&#20040;&#65311;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#26435;&#38480;&#32423;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39033;&#30446;&#22242;&#38431;&#26159;&#20160;&#20040;&#65311;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#26435;&#38480;&#32423;&#21035;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-do-budget-approvals-work-in-portfolio-financials" title="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39044;&#31639;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;"><span class="mt-icon-article-faq"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#30340;&#39044;&#31639;&#23457;&#25209;&#22914;&#20309;&#36816;&#20316;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#37324;&#31243;&#30865;&#30340;&ldquo;&#22522;&#20934;&rdquo;&#21644;&ldquo;&#39044;&#27979;&#25110;&#23454;&#38469;&rdquo;&#26085;&#26399;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#20013;&#37324;&#31243;&#30865;&#30340;&ldquo;&#22522;&#20934;&rdquo;&#21644;&ldquo;&#39044;&#27979;&#25110;&#23454;&#38469;&rdquo;&#26085;&#26399;&#20043;&#38388;&#26377;&#20309;&#21306;&#21035;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21153;&#21644;&#36164;&#37329;&#35268;&#21010;&#25253;&#21578;&#30340;&#19968;&#20123;&#26368;&#20339;&#23454;&#36341;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21153;&#21644;&#36164;&#37329;&#35268;&#21010;&#25253;&#21578;&#30340;&#19968;&#20123;&#26368;&#20339;&#23454;&#36341;&#26159;&#20160;&#20040;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#26159;&#21542;&#25552;&#20379;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#26159;&#21542;&#25552;&#20379;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&ldquo;&#25105;&#30340;&#20219;&#21153;&rdquo;&#39029;&#38754;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&ldquo;&#25105;&#30340;&#20219;&#21153;&rdquo;&#39029;&#38754;&#26159;&#20160;&#20040;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#33258;&#23450;&#20041;&#25253;&#21578;&#21487;&#20351;&#29992;&#21738;&#20123;&#25968;&#25454;&#28857;&#65311;"><span class="mt-icon-article-faq"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#33258;&#23450;&#20041;&#25253;&#21578;&#21487;&#20351;&#29992;&#21738;&#20123;&#25968;&#25454;&#28857;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#39033;&#30446;&#39029;&#38754;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#30340;&#39033;&#30446;&#39029;&#38754;&#26159;&#20160;&#20040;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#36164;&#37329;&#35268;&#21010;&#30340;&#25968;&#25454;&#28857;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#20013;&#36164;&#37329;&#35268;&#21010;&#30340;&#25968;&#25454;&#28857;&#26159;&#20160;&#20040;&#65311;</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="&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&ldquo;&#39033;&#30446;&#27604;&#36739;&rdquo;&#26631;&#31614;&#39029;&#20013;&#30340;&#31661;&#22836;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;"><span class="mt-icon-article-faq"></span>&#32508;&#21512;&#36130;&#21153;&#31649;&#29702;&#21644;&#36164;&#37329;&#35268;&#21010;&#30340;&ldquo;&#39033;&#30446;&#27604;&#36739;&rdquo;&#26631;&#31614;&#39029;&#20013;&#30340;&#31661;&#22836;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E8.80.83"></span><h5 title="&#32771;">&#32771;</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="&#32771;&#21220;&#34920;&#21644;&#25105;&#30340;&#24037;&#26102;&#24037;&#20855;&#23383;&#27573;&#38598;&#19978;&#30340;&#32534;&#21495;&#27169;&#26495;&#20174;&#20309;&#32780;&#26469;&#65311;"><span class="mt-icon-article-faq"></span>&#32771;&#21220;&#34920;&#21644;&#25105;&#30340;&#24037;&#26102;&#24037;&#20855;&#23383;&#27573;&#38598;&#19978;&#30340;&#32534;&#21495;&#27169;&#26495;&#20174;&#20309;&#32780;&#26469;&#65311;</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="&#32771;&#21220;&#34920;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-faq"></span>&#32771;&#21220;&#34920;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#32771;&#21220;&#34920;&#24037;&#20855;&#26102;&#38388;&#26465;&#30446;&#30340;&#40664;&#35748;&#29366;&#24577;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#32771;&#21220;&#34920;&#24037;&#20855;&#26102;&#38388;&#26465;&#30446;&#30340;&#40664;&#35748;&#29366;&#24577;&#26159;&#20160;&#20040;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E8.83.BD"></span><h5 title="&#33021;">&#33021;</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="&#33021;&#21542;&#20174;&#25237;&#26631;&#20013;&#31227;&#38500;&#26126;&#32454;&#39033;&#65311;"><span class="mt-icon-article-faq"></span>&#33021;&#21542;&#20174;&#25237;&#26631;&#20013;&#31227;&#38500;&#26126;&#32454;&#39033;&#65311;</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="&#33021;&#21542;&#37325;&#26032;&#25490;&#21015;&#21508;&#24037;&#20316;&#26085;&#24535;&#37096;&#20998;&#30340;&#39034;&#24207;&#65311;"><span class="mt-icon-article-faq"></span>&#33021;&#21542;&#37325;&#26032;&#25490;&#21015;&#21508;&#24037;&#20316;&#26085;&#24535;&#37096;&#20998;&#30340;&#39034;&#24207;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E8.87.AA"></span><h5 title="&#33258;">&#33258;</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="&#33258;&#23450;&#20041; &#39044;&#31639; &#35270;&#22270;&#20013;&#26377;&#21738;&#20123;&#28304;&#21015;&#65311;"><span class="mt-icon-article-faq"></span>&#33258;&#23450;&#20041; &#39044;&#31639; &#35270;&#22270;&#20013;&#26377;&#21738;&#20123;&#28304;&#21015;&#65311;</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="&#33258;&#23450;&#20041;&#23383;&#27573;&#21644;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>&#33258;&#23450;&#20041;&#23383;&#27573;&#21644;&#21487;&#37197;&#32622;&#23383;&#27573;&#38598;&#20043;&#38388;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E8.A1.8C"></span><h5 title="&#34892;">&#34892;</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="&#34892;&#21160;&#35745;&#21010;&#20309;&#26102;&#36716;&#25442;&#20026;&ldquo;&#32534;&#36753;&rdquo;&#25110;&ldquo;&#26597;&#30475;&rdquo;&#27169;&#24335;&#65311;"><span class="mt-icon-article-faq"></span>&#34892;&#21160;&#35745;&#21010;&#20309;&#26102;&#36716;&#25442;&#20026;&ldquo;&#32534;&#36753;&rdquo;&#25110;&ldquo;&#26597;&#30475;&rdquo;&#27169;&#24335;&#65311;</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="&#34892;&#21160;&#35745;&#21010;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-faq"></span>&#34892;&#21160;&#35745;&#21010;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E8.A1.A8"></span><h5 title="&#34920;">&#34920;</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="&#34920;&#21333;&#24037;&#20855;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#31867;&#22411;&#65311;"><span class="mt-icon-article-faq"></span>&#34920;&#21333;&#24037;&#20855;&#25903;&#25345;&#21738;&#20123;&#25991;&#20214;&#31867;&#22411;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E8.A7.81"></span><h5 title="&#35265;">&#35265;</h5><ul class="mt-listings-simple"><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/how-are-insights-calculated" title="&#35265;&#35299;&#26159;&#22914;&#20309;&#35745;&#31639;&#30340;&#65311;"><span class="mt-icon-article-reference"></span>&#35265;&#35299;&#26159;&#22914;&#20309;&#35745;&#31639;&#30340;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E8.A7.82"></span><h5 title="&#35266;">&#35266;</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="&#35266;&#23519;&#20219;&#21153;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-faq"></span>&#35266;&#23519;&#20219;&#21153;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E8.A7.84"></span><h5 title="&#35268;">&#35268;</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="&#35268;&#33539;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-faq"></span>&#35268;&#33539;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E8.B0.81"></span><h5 title="&#35841;">&#35841;</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="&#35841;&#20250;&#25509;&#25910;&#36890;&#20449;&#39033;&#30005;&#23376;&#37038;&#20214;&#21644;&#25512;&#36865;&#36890;&#30693;&#65311;"><span class="mt-icon-article-tutorial"></span>&#35841;&#20250;&#25509;&#25910;&#36890;&#20449;&#39033;&#30005;&#23376;&#37038;&#20214;&#21644;&#25512;&#36865;&#36890;&#30693;&#65311;</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="&#35841;&#20250;&#25910;&#21040;&#22270;&#32440;&#24037;&#20855;&#20013;&#30340;&#26356;&#26032;&#36890;&#30693;&#65311;"><span class="mt-icon-article-faq"></span>&#35841;&#20250;&#25910;&#21040;&#22270;&#32440;&#24037;&#20855;&#20013;&#30340;&#26356;&#26032;&#36890;&#30693;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-emails-about-coordination-issues" title="&#35841;&#20250;&#25910;&#21040;&#26377;&#20851;&#21327;&#35843;&#38382;&#39064;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;"><span class="mt-icon-article-faq"></span>&#35841;&#20250;&#25910;&#21040;&#26377;&#20851;&#21327;&#35843;&#38382;&#39064;&#30340;&#30005;&#23376;&#37038;&#20214;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-receives-notifications-about-project-connections" title="&#35841;&#20250;&#25910;&#21040;&#26377;&#20851;&#39033;&#30446;&#36830;&#25509;&#30340;&#36890;&#30693;&#65311;"><span class="mt-icon-article-faq"></span>&#35841;&#20250;&#25910;&#21040;&#26377;&#20851;&#39033;&#30446;&#36830;&#25509;&#30340;&#36890;&#30693;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-gets-notifications-from-observations" title="&#35841;&#20250;&#25910;&#21040;&#35266;&#23519;&#20219;&#21153;&#36890;&#30693;&#65311;"><span class="mt-icon-article-faq"></span>&#35841;&#20250;&#25910;&#21040;&#35266;&#23519;&#20219;&#21153;&#36890;&#30693;&#65311;</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="&#35841;&#21487;&#20197;&#22312;&#20813;&#36153; Procore &#36134;&#25143;&#20013;&#26597;&#30475;&#25237;&#26631;&#65311;"><span class="mt-icon-article-faq"></span>&#35841;&#21487;&#20197;&#22312;&#20813;&#36153; Procore &#36134;&#25143;&#20013;&#26597;&#30475;&#25237;&#26631;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/who-can-view-a-draft-rfi" title="&#35841;&#21487;&#20197;&#26597;&#30475; RFI&ldquo;&#33609;&#31295;&rdquo;&#65311;"><span class="mt-icon-article-faq"></span>&#35841;&#21487;&#20197;&#26597;&#30475; RFI&ldquo;&#33609;&#31295;&rdquo;&#65311;</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="&#35841;&#21487;&#20197;&#26597;&#30475;&#39033;&#30446;&#30446;&#24405;&#20013;&#21015;&#20986;&#30340;&#29992;&#25143;&#65311;"><span class="mt-icon-article-faq"></span>&#35841;&#21487;&#20197;&#26597;&#30475;&#39033;&#30446;&#30446;&#24405;&#20013;&#21015;&#20986;&#30340;&#29992;&#25143;&#65311;</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="&#35841;&#21487;&#20197;&#34987;&#25351;&#23450;&#20026; RFI &#30340;&ldquo;&#20219;&#21153;&#20998;&#37197;&#23545;&#35937;&rdquo;&#65311;"><span class="mt-icon-article-faq"></span>&#35841;&#21487;&#20197;&#34987;&#25351;&#23450;&#20026; RFI &#30340;&ldquo;&#20219;&#21153;&#20998;&#37197;&#23545;&#35937;&rdquo;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E8.B5.84"></span><h5 title="&#36164;">&#36164;</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="&#36164;&#28304;&#35268;&#21010;&#21644; Procore &#20844;&#21496;&#30446;&#24405;&#20043;&#38388;&#21516;&#27493;&#20102;&#21738;&#20123;&#20154;&#21592;&#20449;&#24687;&#65311;"><span class="mt-icon-article-faq"></span>&#36164;&#28304;&#35268;&#21010;&#21644; Procore &#20844;&#21496;&#30446;&#24405;&#20043;&#38388;&#21516;&#27493;&#20102;&#21738;&#20123;&#20154;&#21592;&#20449;&#24687;&#65311;</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="&#36164;&#28304;&#35268;&#21010;&#21644; Procore &#39033;&#30446;&#20043;&#38388;&#21516;&#27493;&#20102;&#21738;&#20123;&#39033;&#30446;&#20449;&#24687;&#65311;"><span class="mt-icon-article-faq"></span>&#36164;&#28304;&#35268;&#21010;&#21644; Procore &#39033;&#30446;&#20043;&#38388;&#21516;&#27493;&#20102;&#21738;&#20123;&#39033;&#30446;&#20449;&#24687;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E9.80.81"></span><h5 title="&#36865;">&#36865;</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="&#36865;&#23457;&#20013;&#30340;&#36865;&#23457;&#32773;&#21644;&#23457;&#25209;&#32773;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>&#36865;&#23457;&#20013;&#30340;&#36865;&#23457;&#32773;&#21644;&#23457;&#25209;&#32773;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#36865;&#23457;&#24037;&#20316;&#27969;&#20013;&#30340;&#20381;&#24207;&#23457;&#25209;&#21644;&#24179;&#34892;&#23457;&#25209;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>&#36865;&#23457;&#24037;&#20316;&#27969;&#20013;&#30340;&#20381;&#24207;&#23457;&#25209;&#21644;&#24179;&#34892;&#23457;&#25209;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</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="&#36865;&#23457;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-faq"></span>&#36865;&#23457;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#36865;&#23457;&#24037;&#20855;&#20013;&#30340;&#29992;&#25143;&#35282;&#33394;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#36865;&#23457;&#24037;&#20855;&#20013;&#30340;&#29992;&#25143;&#35282;&#33394;&#26159;&#20160;&#20040;&#65311;</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="&#36865;&#23457;&#33258;&#23450;&#20041;&#25253;&#21578;&#20013;&#30340;&#26085;&#26399;&#21015;&#26159;&#22914;&#20309;&#35745;&#31639;&#30340;&#65311;"><span class="mt-icon-article-faq"></span>&#36865;&#23457;&#33258;&#23450;&#20041;&#25253;&#21578;&#20013;&#30340;&#26085;&#26399;&#21015;&#26159;&#22914;&#20309;&#35745;&#31639;&#30340;&#65311;</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="&#36865;&#23457;&#38468;&#20214;&#20309;&#26102;&#22312;&ldquo;&#36865;&#23457;&#24037;&#20316;&#27969;&rdquo;&#34920;&#20013;&#26631;&#35760;&#20026;&ldquo;&#24403;&#21069;&rdquo;&#65311;"><span class="mt-icon-article-faq"></span>&#36865;&#23457;&#38468;&#20214;&#20309;&#26102;&#22312;&ldquo;&#36865;&#23457;&#24037;&#20316;&#27969;&rdquo;&#34920;&#20013;&#26631;&#35760;&#20026;&ldquo;&#24403;&#21069;&rdquo;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E9.80.9A"></span><h5 title="&#36890;">&#36890;</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="&#36890;&#20449;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-faq"></span>&#36890;&#20449;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E9.85.8D"></span><h5 title="&#37197;">&#37197;</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="&#37197;&#32622;&#30340;&#23383;&#27573;&#38598;&#23558;&#22914;&#20309;&#24433;&#21709;&#29616;&#26377;&#39033;&#30446;&#65311;"><span class="mt-icon-article-faq"></span>&#37197;&#32622;&#30340;&#23383;&#27573;&#38598;&#23558;&#22914;&#20309;&#24433;&#21709;&#29616;&#26377;&#39033;&#30446;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E9.A1.B9"></span><h5 title="&#39033;">&#39033;</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="&#39033;&#30446;&#21019;&#24314;&#39029;&#38754;&#19978;&#30340;&ldquo;Code&rdquo;&#23383;&#27573;&#26159;&#20160;&#20040;&#65311;"><span class="mt-icon-article-faq"></span>&#39033;&#30446;&#21019;&#24314;&#39029;&#38754;&#19978;&#30340;&ldquo;Code&rdquo;&#23383;&#27573;&#26159;&#20160;&#20040;&#65311;</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="&#39033;&#30446;&#30340; RFI &#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#39033;&#30446;&#30340; RFI &#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#20027;&#21512;&#21516;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#39033;&#30446;&#30340;&#20027;&#21512;&#21516;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#20250;&#35758;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#39033;&#30446;&#30340;&#20250;&#35758;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#20256;&#36755;&#35760;&#24405;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#39033;&#30446;&#30340;&#20256;&#36755;&#35760;&#24405;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#39033;&#30446;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#21512;&#32422;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#39033;&#30446;&#30340;&#21512;&#32422;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#22270;&#32440;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#39033;&#30446;&#30340;&#22270;&#32440;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#23458;&#25143;&#21512;&#21516;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#39033;&#30446;&#30340;&#23458;&#25143;&#21512;&#21516;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#23614;&#39033;&#28165;&#21333;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#39033;&#30446;&#30340;&#23614;&#39033;&#28165;&#21333;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#24037;&#20316;&#26085;&#24535;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#39033;&#30446;&#30340;&#24037;&#20316;&#26085;&#24535;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#25237;&#26631;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#39033;&#30446;&#30340;&#25237;&#26631;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#29031;&#29255;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#39033;&#30446;&#30340;&#29031;&#29255;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#30452;&#25509;&#25104;&#26412;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#39033;&#30446;&#30340;&#30452;&#25509;&#25104;&#26412;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#34892;&#21160;&#35745;&#21010;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#39033;&#30446;&#30340;&#34892;&#21160;&#35745;&#21010;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#35266;&#23519;&#20219;&#21153;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#39033;&#30446;&#30340;&#35266;&#23519;&#20219;&#21153;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#36164;&#37329;&#24037;&#20855;&#26377;&#21738;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#39033;&#30446;&#30340;&#36164;&#37329;&#24037;&#20855;&#26377;&#21738;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#36865;&#23457;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#39033;&#30446;&#30340;&#36865;&#23457;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#36890;&#20449;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#39033;&#30446;&#30340;&#36890;&#20449;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#30340;&#39044;&#31639;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#39033;&#30446;&#30340;&#39044;&#31639;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#31649;&#29702;&#21592;&#24037;&#20855;&#20013;&#30340;&#26085;&#26399;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;"><span class="mt-icon-article-faq"></span>&#39033;&#30446;&#31649;&#29702;&#21592;&#24037;&#20855;&#20013;&#30340;&#26085;&#26399;&#26159;&#20160;&#20040;&#24847;&#24605;&#65311;</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="&#39033;&#30446;&#32423;&#21035;&#25991;&#26723;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#39033;&#30446;&#32423;&#21035;&#25991;&#26723;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#32423;&#21035;&#26816;&#26597;&#20219;&#21153;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#39033;&#30446;&#32423;&#21035;&#26816;&#26597;&#20219;&#21153;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#32423;&#21035;&#30446;&#24405;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#39033;&#30446;&#32423;&#21035;&#30446;&#24405;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#32423;&#21035;&#31649;&#29702;&#21592;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#39033;&#30446;&#32423;&#21035;&#31649;&#29702;&#21592;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#32423;&#21035;&#32771;&#21220;&#34920;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#39033;&#30446;&#32423;&#21035;&#32771;&#21220;&#34920;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#32423;&#21035;&#36827;&#24230;&#35745;&#21010;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;"><span class="mt-icon-article-faq"></span>&#39033;&#30446;&#32423;&#21035;&#36827;&#24230;&#35745;&#21010;&#24037;&#20855;&#26377;&#21738;&#20123;&#32454;&#20998;&#26435;&#38480;&#65311;</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="&#39033;&#30446;&#36130;&#21153;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#23618;&#35774;&#32622;&#65311;"><span class="mt-icon-article-faq"></span>&#39033;&#30446;&#36130;&#21153;&#20013;&#26377;&#21738;&#20123;&#19981;&#21516;&#30340;&#21464;&#26356;&#36890;&#30693;&#21333;&#23618;&#35774;&#32622;&#65311;</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="&#39033;&#30446;&#38598;&#21512;&#24037;&#20855;&#30340;&#35270;&#22270;&#20013;&#25903;&#25345;&#21738;&#20123;&#31579;&#36873;&#22120;&#65311;"><span class="mt-icon-article-faq"></span>&#39033;&#30446;&#38598;&#21512;&#24037;&#20855;&#30340;&#35270;&#22270;&#20013;&#25903;&#25345;&#21738;&#20123;&#31579;&#36873;&#22120;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E9.A2.84"></span><h5 title="&#39044;">&#39044;</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="&#39044;&#31639;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;"><span class="mt-icon-article-faq"></span>&#39044;&#31639;&#24037;&#20855;&#20013;&#30340;&#21738;&#20123;&#23383;&#27573;&#21487;&#20197;&#37197;&#32622;&#20026;&#24517;&#22635;&#12289;&#21487;&#36873;&#25110;&#38544;&#34255;&#65311;</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="&#39044;&#31639;&#32534;&#21495;&#21644;&#20219;&#21153;&#32534;&#21495;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;"><span class="mt-icon-article-faq"></span>&#39044;&#31639;&#32534;&#21495;&#21644;&#20219;&#21153;&#32534;&#21495;&#26377;&#20160;&#20040;&#21306;&#21035;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-budget-warning-banner-changes" title="&#39044;&#31639;&#35686;&#21578;&#27178;&#24133;&#26377;&#21738;&#20123;&#21464;&#21270;&#65311;"><span class="mt-icon-article-faq"></span>&#39044;&#31639;&#35686;&#21578;&#27178;&#24133;&#26377;&#21738;&#20123;&#21464;&#21270;&#65311;</a></li></ul></li><li class="mt-listing-no-break"><span id=".E9.BB.98"></span><h5 title="&#40664;">&#40664;</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="&#40664;&#35748;&#24773;&#20917;&#19979;&#21512;&#32422;&#26159;&#31169;&#23494;&#30340;&#21527;&#65311;"><span class="mt-icon-article-faq"></span>&#40664;&#35748;&#24773;&#20917;&#19979;&#21512;&#32422;&#26159;&#31169;&#23494;&#30340;&#21527;&#65311;</a></li><li><a rel="custom nofollow" href="https://zh-sg.support.procore.com/faq/what-are-the-default-observation-types-used-for" title="&#40664;&#35748;&#35266;&#23519;&#20219;&#21153;&#31867;&#22411;&#26377;&#20309;&#29992;&#36884;&#65311;"><span class="mt-icon-article-faq"></span>&#40664;&#35748;&#35266;&#23519;&#20219;&#21153;&#31867;&#22411;&#26377;&#20309;&#29992;&#36884;&#65311;</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>&nbsp;</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">&copy; 版权所有 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">&reg;</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>&copy; 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">&#38544;&#31169;&#22768;&#26126;</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">&#26381;&#21153;&#26465;&#27454;</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">&#30331;&#24405;</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">&zwnj;&zwj;&#8203;</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>

Pages: 1 2 3 4 5 6 7 8 9 10