CINXE.COM

Professional Services and Support Offerings - 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>Professional Services and Support Offerings - Procore</title> <link media="screen" type="text/css" rel="stylesheet" href="https://a.mtstatic.com/@cache/layout/legacy.css?_=4697dd37726fed7979fe7b0f4ce2bd05_ZW4tZ2Iuc3VwcG9ydC5wcm9jb3JlLmNvbQ==:site_13386" id="mt-screen-css" /> <link media="print" type="text/css" rel="stylesheet" href="https://a.mtstatic.com/@cache/layout/print.css?_=c5d69afcac31700ff9758fde125e8285:site_13386" id="mt-print-css" /> <script type="text/javascript" nonce="a571c8d44b8fee0cbd46b425ad9dc95a0993d40ef8bf872a7d2986a4b0181a7c" src="https://a.mtstatic.com/deki/javascript/out/grape.min.js?_=aae9f894b8b9c897d72439fee4980c96b51ba5ff:site_13386"></script><script type="application/json" id="mt-global-settings" nonce="a571c8d44b8fee0cbd46b425ad9dc95a0993d40ef8bf872a7d2986a4b0181a7c">{"apiToken":"xhr_2_1732434627_cba9c81d59cd415634407d1209aedf1831d6409d6dc57b40a8cf892d9430ab3f","pageId":7226,"pageViewId":"98e68b36-fb13-446f-bb4e-06197dfdaf27"}</script> <!-- Recaptcha for contact support form - --> <script defer src="https://www.google.com/recaptcha/api.js?hl=en-GB"></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 = 'en-gb' //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 --> <!-- Start Service Cloud Deployment Code for Live Agent - SnapIn Widget --> <!-- End Service Cloud Deployment Code for Live Agent - SnapIn Widget --> <!-- Start Service Cloud Deployment Code for Live Agent Widget --> <!-- End Service Cloud Deployment Code for Live Agent Widget --> <!-- 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-customer-success-professional-services-and-support-offerings columbia-live no-touch columbia-lang-en-us 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://en-gb.support.procore.com/" rel="internal"><img src="https://en-gb.support.procore.com/@api/deki/site/logo.png?default=https://a.mtstatic.com/skins/common/logo/logo.png%3F_%3Daae9f894b8b9c897d72439fee4980c96b51ba5ff:site_13386" /><span id="support-logo">Support</span></a></div><ul class="mt-custom-header-right"><li class="mt-custom-header-marketing"><a target="_blank" href="https://www.procore.com/en-gb?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"> United Kingdom (English)</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" class="internal" href="https://en-gb.support.procore.com/" rel="internal">United Kingdom (English)</a></li><li><a target="_self" href="https://support.procore.com/" rel="external nofollow" class="link-https">United States (English)</a></li><li><a target="_self" href="https://zh-sg.support.procore.com/" rel="external nofollow" class="link-https">&#26032;&#21152;&#22369;&#65288;&#31616;&#20307;&#20013;&#25991;&#65289;</a></li></ul></li><li class="mt-custom-header-listitem"><a target="_blank" href="https://en-gb.support.procore.com/references/contact-support" rel="internal">Contact</a></li><li class="mt-custom-header-listitem-login"><a target="_blank" href="https://login.procore.com/?locale=en-GB&amp;journey=supporttologin" rel="external noopener nofollow" class="link-https">Procore App Login</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":"Search","Help.Widget.label.text":"Query","Help.Widget.placeholder.text":"How can we help you?"}/*]]>*/</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="https://support.procore.com/tc/Training_Center_Help">Training Center Help</a></li>'); });/*]]>*/</script> <script type="text/javascript">/*<![CDATA[*/ document.documentElement.setAttribute('lang', 'en_GB');/*]]>*/</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_13386/1681518014-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://en-gb.support.procore.com/Special:AuthenticationProviders?returntotitle=customer-success%2Fprofessional-services-and-support-offerings" title="Sign in"> Sign in </a> </li> <li class="mt-login-forgot-password"> <a class="mt-icon-login-forgot-password" href="https://en-gb.support.procore.com/Special:UserPassword" title="Retrieve lost password"> Forgot password </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"> Search </label> <input class="mt-text mt-search search-field" name="q" id="mt-site-search-input" placeholder="How can we help you?" type="search" /> <button class="mt-button ui-button-icon mt-icon-site-search-button search-button" type="submit"> Search </button> </form> </div> </div> </div> <div class="grape-site-nav grape-wrapper-container"> <ul class="mt-breadcrumbs"> <li> <a href="https://en-gb.support.procore.com/"> <span class="mt-icon-article- mt-icon-article-home"></span> Support Home </a> </li> <li> <a href="https://en-gb.support.procore.com/customer-success"> <span class="mt-icon-article-category"></span> Customer Success </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;"> Professional Services and Support Offerings </h1> <div class="mt-last-updated"> <strong>Last updated:</strong> <span class="modified mt-last-updated-timestamp" data-timestamp="2024-08-07T20:32:43Z"></span> </div> <div class="mt-content-header"></div> <div class="mt-content-side"></div> <div id="mt-toc-container" data-title="Table of contents" data-collapsed="true"> <button class="mt-toggle mt-summary-toggle ui-button-icon mt-toggle-expand">Table of contents</button> <div class="mt-toc-content mt-collapsible-section mt-toc-hide"> <ol><li><a href="#Implementation_and_Service_Packages" rel="internal">Implementation and Service Packages</a></li><li><a href="#Add-on_Services" rel="internal">Add-on Services</a></li><li><a href="#Implementation_and_Service_Packages_2" rel="internal">Implementation and Service Packages</a></li><li><a href="#Add-on_Services_2" rel="internal">Add-on Services</a></li><li><a href="#Implementation_and_Service_Packages_3" rel="internal">Implementation and Service Packages</a></li><li><a href="#Add-on_Services_3" rel="internal">Add-on Services</a></li><li><a href="#Implementation_and_Service_Packages_4" rel="internal">Implementation and Service Packages</a></li><li><a href="#Add-on_Services_4" rel="internal">Add-on Services</a></li><li><a href="#Implementaci.C3.B3n_y_paquetes_de_servicios" rel="internal">Implementaci&oacute;n y paquetes de servicios</a></li><li><a href="#Servicios_adicionales" rel="internal">Servicios adicionales</a></li><li><a href="#Servicios_titulados" rel="internal">Servicios titulados</a></li><li><a href="#No-Show_and_Cancellation_Policies" rel="internal">No-Show and Cancellation Policies</a><ol><li><a href="#No-Show" rel="internal">No-Show</a></li><li><a href="#Cancellations" rel="internal">Cancellations</a></li></ol></li></ol> </div> </div> <div id="page-top"> <div id="topic"> <div id="pageText"> <table border="1" cellpadding="4" cellspacing="1" class="mt-responsive-table" id="deep" style="table-layout:fixed;"> <tbody> <tr> <td class="mt-noheading mt-column-width-20" style="vertical-align:top;text-align:center;"><img class="internal default" style="width: 150px; height: 137px;" width="150px" height="137px" alt="icon-procore-training-w150.png" loading="lazy" src="https://en-gb.support.procore.com/@api/deki/files/14514/icon-procore-training-w150.png?revision=1&amp;size=bestfit&amp;width=150&amp;height=137" /></td> <td class="mt-noheading mt-column-width-35" style="vertical-align:top;"> <p><span class="mt-font-size-16"><strong>Looking for additional help and resources?</strong></span><br /> Procore's Customer Success team is dedicated to the success of each client. We understand that each client has unique business needs, timelines and challenges. As such, the following professional services may be purchased as optional, add-on service products to ensure that you are receiving the maximum benefit of the Procore platform and all of its features.&nbsp;</p> </td> </tr> </tbody> </table> <div class="localization-group" data-locale="en-us"> <div mt-section-origin="customer-success/professional-services-and-support-offerings" class="mt-section"><span id="Implementation_and_Service_Packages"></span><h3 class="editable">Implementation and Service Packages</h3> <table class="mt-responsive-table perm-table perm-table-horizontal perm-table-highlight"> <thead> <tr> <th class="mt-column-width-15">Service Name</th> <th>Details</th> <th class="mt-column-width-15">Duration</th> <th class="mt-column-width-15">Cost</th> </tr> </thead> <tbody> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><a target="_blank" title="Implementation Package Descriptions.pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/22307/Implementation_Package_Descriptions.pdf?revision=1">Advise Package</a></td> <td data-th="Details" style="text-align:left;">This package is designed to help you achieve a faster time to value and get you off to a strong start during the first weeks with Procore. In this package, the Procore team is available to advise the Procore Committee during the implementation period, and the customer is responsible for rollout and training for their external teams and projects.</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">Varies</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;">Varies - reach out to your Procore point of contact</td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><a target="_blank" title="Implementation Package Descriptions.pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/22307/Implementation_Package_Descriptions.pdf?revision=1">Consult Package</a></td> <td data-th="Details" style="text-align:left;">This package is designed to help you achieve a faster time to value and get you off to a strong start during the first weeks with Procore. In this package, you will receive tailored best practice implementation advice to meet your business needs. The Procore team is there to consult the customer, on how to make Procore work for their business, and has been assigned some available hours to assist the customer with implementation and training.</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">Varies</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;">Varies - reach out to your Procore point of contact</td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><a target="_blank" title="Implementation Package Descriptions.pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/22307/Implementation_Package_Descriptions.pdf?revision=1">Deliver Package</a></td> <td data-th="Details" style="text-align:left;">This package is designed to help you achieve a faster time to value and get you off to a strong start during the first weeks with Procore. In this package, you will receive tailored best practice implementation advice to meet your business needs. The Procore team is there to not only consult but help deliver your desired outcomes through partnership in product configuration and training.&nbsp;</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">Varies</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;">Varies - reach out to your Procore point of contact</td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><a title="1.24.24 CoreStart Professional Services Slick .pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/24177/1.24.24_CoreStart_Professional_Services_Slick_.pdf?revision=1">CoreStart Professional Services Package</a></td> <td data-th="Details" style="text-align:left;">This package is designed to provide flexibility to you and your teams while getting you off to a strong start during the first 12 weeks with Procore and will help accelerate time to value. All services included in this package expire 12 weeks after service start date. Note: This package is only available to certain Procore customers based on their Annual Construction Volume (Annual Turnover). Reach out to your Procore point of contact for more information.</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">12 Weeks</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;">&pound;5,000</td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><a target="_blank" title="Expand Advise PS Slick.pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/24157/Expand_Advise_PS_Slick_(2).pdf?revision=1">Expand Advise Package</a></td> <td data-th="Details" style="text-align:left;">This package is designed to help you achieve a faster time to value and get you off to a strong start with your new Procore solutions. In this package, the Procore team is available to advise your Procore Committee during the implementation period, as you rollout and train your external teams and projects. All services included in this package are available for 6 weeks after service start date. <em>Note:</em> This package is only available for Procore customers adding additional products to their subscription.</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">6 Weeks</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;">$3,000</td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><a target="_blank" title="Expand Consult PS Slick.pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/24158/Expand_Consult_PS_Slick_(2).pdf?revision=1">Expand Consult Package</a></td> <td data-th="Details" style="text-align:left;">This package is designed to help you achieve a faster time to value and get you off to a strong start with your new Procore solutions. In this package, you will receive tailored best practice implementation advice to meet your business needs. The Procore team is there to consult with you, on how to make Procore work for your business, and has been assigned some available hours to assist you with implementation and training. All services included in this package is available for 10 weeks after service start date. <em>Note:</em> This package is only available for Procore customers adding additional products to their subscription.</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">10 Weeks</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;">&pound;5,000</td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><a target="_blank" title="Expand Deliver PS Slick.pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/24159/Expand_Deliver_PS_Slick_(2).pdf?revision=1">Expand Deliver Package</a></td> <td data-th="Details" style="text-align:left;">This package is designed to help you achieve a faster time to value and get you off to a strong start with your new Procore solutions. In this package, you will receive tailored best practice implementation advice to meet your business needs. The Procore team is there to not only consult but help deliver your desired outcomes through partnership in product configuration and training. All services included in this package expire 14 weeks after service start date. <em>Note:</em> This package is only available for Procore customers adding additional products to their subscription</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">14 Weeks</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;">&pound;8,000</td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;">Premier Support Silver</td> <td data-th="Details" style="text-align:left;">Support services designed to provide clients with quicker response times, expert troubleshooting, proactive issue management and monthly support reporting and consultation. Includes access for up to twelve (12) company admin users as designated points-of-contact for Customer Support for personalised support via phone and email 24-hours a day, 7 days a week.&nbsp;</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">Recurring Annual Fee</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;">Varies</td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;">Premier Support Bronze</td> <td data-th="Details" style="text-align:left;">Support services designed to provide clients with quicker response times, expert troubleshooting, proactive issue management and monthly support reporting and consultation. Includes access for up to three (3) company admin users as designated points-of-contact for Customer Support for personalised support via phone and email 24 hours a day, 5 days a week.</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">Recurring Annual Fee</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;">Varies</td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;">Analytics Implementation Core</td> <td data-th="Details" style="text-align:left;">A guided Analytics implementation, with assistance on connecting Power BI and Procore Analytics, setting up out-of-the-box reports and training for power user(s).</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">12 Months</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;">&pound;2,000</td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;">Analytics Implementation Plus</td> <td data-th="Details" style="text-align:left;">A guided implementation with strategic planning for rollout and training. Procore&rsquo;s team can provide detailed requirements discovery and custom report design; configuration and best practice consultation; and end user training.</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">12 Months</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;">&pound;5,000</td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;">ERP Implementation Plus</td> <td data-th="Details" style="text-align:left;">This service is designed to enable greater adoption of ERP connectors by providing additional training, consultation and ERP SOP guidance and development.</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">Varies</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;">&pound;4,500</td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;">Custom Professional Services (Statement of Work)</td> <td data-th="Details" style="text-align:left;">Custom bundle of multiple services (outlined below) based on business needs. Also used for Technical Services such as Custom Integration Development &amp; Support, as well as Integration Consulting Services.</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">Varies</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;">Varies</td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;">Custom Integration Development &amp; Support</td> <td data-th="Details" style="text-align:left;">Procore-provided custom integration development. Best for Clients who do not have internal technical resources and need Procore integration development resources. Note: requires a custom statement of work and scoping performed by the Technical Services team. Yearly Support &amp; Maintenance fee will apply.</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">Varies,<br /> Includes<br /> Recurring<br /> Annual Fee</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;">Varies</td> </tr> </tbody> </table> </div><div mt-section-origin="customer-success/professional-services-and-support-offerings" class="mt-section"><span id="Add-on_Services"></span><h3 class="editable">Add-on Services</h3> <table class="mt-responsive-table perm-table perm-table-horizontal perm-table-highlight"> <thead> <tr> <th class="mt-column-width-15">Service Name</th> <th>Details</th> <th class="mt-column-width-15">Duration</th> <th class="mt-column-width-15">Cost</th> </tr> </thead> <tbody> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><a title="Procore Consulting Services" href="https://en-gb.support.procore.com/products/online/procore-consulting-services" rel="internal">Procore Consulting Services</a></td> <td data-th="Details" style="text-align:left;">Virtual consulting services with Procore resources such as&nbsp;Strategic Product Consultants and Training Management Specialists. Common uses include deep-dive virtual consulting for the Procore suite of tools and custom Procore reporting. Purchased in 5-hour blocks,&nbsp;including 4 hours of consulting calls and 1 hour of administration time for preparation and follow-up.<br /> <br /> Refer to&nbsp;<a title="products/online/procore-consulting-services" href="https://en-gb.support.procore.com/products/online/procore-consulting-services" rel="internal">this page</a> for examples of how these services can be used.&nbsp;</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">12 Months</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;">$1,375/5 Hours</td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><a title="Procore Custom Solutions" href="https://en-gb.support.procore.com/products/online/custom-solutions" rel="internal">Procore Custom Solutions</a></td> <td data-th="Details" style="text-align:left;">Development time for building custom forms, workflows, and tools for the Procore platform. Purchased in 5-hour blocks. Work performed by Procore's Custom Solutions team. Screen reader support enabled.</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">12 Months</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;">&pound;750/5 Hours</td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;">Integration Consulting Services</td> <td data-th="Details" style="text-align:left;">Virtual integration consulting services with Procore&rsquo;s Technical Services team. Best for Clients who are building a custom integration between another system/environment and Procore. This service provides great value and expertise whether you have your own internal technical resources or are working with a third-party integrations consultant.</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">12 Months</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;">Statement of Work required</td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><a target="_blank" title="Remote Admin Services (RAS) Slick 9_22 (1).pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/22308/Remote_Admin_Services_(RAS)_Slick_9_22_(1).pdf?revision=1">Remote Admin Services</a></td> <td data-th="Details" style="text-align:left;">Account configuration/setup and data entry services with Procore's Remote Admin Services team. Available services include configuration of company and project settings; creation and setup of new projects; and a variety of data entry services, including project backlog.</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">12 Months</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;">Varies - Statement of Work required</td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;">Analytics Consulting Services</td> <td data-th="Details" style="text-align:left;"> <p>Virtual consulting services with Procore Analytics Developers, Implementation Specialists. Common uses include Procore Analytics deep-dive familiarization and training, custom report development and out of the box report modifications. Purchased in 5-hour blocks.</p> <p>&nbsp;</p> <p><strong>Consulting /&nbsp;Training</strong></p> <ul> <li>Familiarization &amp; training</li> <li>Governance, minor report modifications</li> <li>Data discovery&nbsp;</li> <li>Helping clients understand the correlation between where their data is captured in Procore and how it can be accessed in Analytics</li> </ul> <p><strong>Development</strong></p> <ul> <li>Report recreation (most common)</li> <li>&ldquo;We want you to recreate this internal report&rdquo;</li> <li>Format changes</li> <li>Creativity around export limitation</li> <li>Slick functionality, buttons, bookmarks</li> <li>Build from scratch</li> <li>Merge data from different systems</li> </ul> </td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">12 Months</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;">&pound;750/5 Hours</td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;">Onsite Training</td> <td data-th="Details" style="text-align:left;">Onsite strategic consulting or training with the client, delivered by Procore's Strategic Product Consultants. Flat fee per day, which includes travel expenses.</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">12 Months</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;">$7,000/Day -&nbsp;Statement of Work required</td> </tr> </tbody> </table> <p>Professional Services are highly recommended for all Procore Customers, particularly first-time Customers or those who are purchasing a new Procore product. Net-new Procore Customers who do NOT purchase services for Implementation are routed through our digital self-serve onboarding experience. Details on self-service support can be found <a target="_blank" title="Entitled Professional Services Slick_ZD 3.15.23.pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/22303/Entitled_Professional_Services_Slick_ZD_3.15.23.pdf?revision=1">here</a>.</p> <p><em>Note: All prices listed are in USD. Please speak to your Procore Point of Contact for pricing in other currencies if necessary.</em></p> </div></div> <div class="localization-group" data-locale="en-au"> <div mt-section-origin="customer-success/professional-services-and-support-offerings" class="mt-section"><span id="Implementation_and_Service_Packages_2"></span><h3 class="editable"><span class="mt-dnt" title="Do Not Translate" translate="no">Implementation and Service Packages</span></h3> <table class="mt-responsive-table perm-table perm-table-horizontal perm-table-highlight"> <thead> <tr> <th class="mt-column-width-15"><span class="mt-dnt" title="Do Not Translate" translate="no">Service Name</span></th> <th><span class="mt-dnt" title="Do Not Translate" translate="no">Details</span></th> <th class="mt-column-width-15"><span class="mt-dnt" title="Do Not Translate" translate="no">Duration</span></th> <th class="mt-column-width-15"><span class="mt-dnt" title="Do Not Translate" translate="no">Cost</span></th> </tr> </thead> <tbody> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><a target="_blank" title="[APAC] Advise PS Slick.pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/22298/%255BAPAC%255D_Advise_PS_Slick.pdf?revision=1"><span class="mt-dnt" title="Do Not Translate" translate="no">Advise Package</span></a></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">This package is designed to help you achieve a faster time to value and get you off to a strong start during the first 12 weeks with Procore. In this package, the Procore team is available to advise your Procore Committee during the implementation period as you rollout and train your teams. All services included in this package expire 12 weeks after service start date.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">12 Weeks</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$6,450 AUD</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><a target="_blank" title="[APAC] Consult PS Slick.pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/22299/%255BAPAC%255D_Consult_PS_Slick.pdf?revision=1"><span class="mt-dnt" title="Do Not Translate" translate="no">Consult Package</span></a></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">This package is designed to help you achieve a faster time to value and get you off to a strong start during the first 18 weeks with Procore. In this package, you will receive tailored best practice implementation advice to meet your business needs. The Procore team is there to consult with you on how to make Procore work for your business, and will assist with implementation, training and rollout. All services included in this package expire 18 weeks after service start date.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">18 Weeks</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$15,250 AUD</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><a target="_blank" title="[APAC] Deliver PS Slick.pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/22300/%255BAPAC%255D_Deliver_PS_Slick.pdf?revision=1"><span class="mt-dnt" title="Do Not Translate" translate="no">Deliver Package</span></a></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">This package is designed to help you achieve a faster time to value and get you off to a strong start during the first 24 weeks with Procore. In this package, you will receive tailored best practice implementation advice to meet your business needs. The Procore team is there to not only consult but help deliver your desired outcomes through partnership in product configuration and training. All services included in this package expire 24 weeks after service start date.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">24 Weeks</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$28,250 AUD</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no"><a target="_blank" title="Expand Advise PS Slick (1).pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/24157/Expand_Advise_PS_Slick_(2).pdf?revision=1">Expand Advise Package</a></span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">This package is designed to help you achieve a faster time to value and get you off to a strong start with your new Procore solutions. In this package, the Procore team is available to advise your Procore Committee during the implementation period, as you rollout and train your external teams and projects. All services included in this package are available for 6 weeks after service start date. <em>Note:</em> This package is only available for Procore customers adding additional products to their subscription.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">6 Weeks</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$3,800 AUD</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no"><a target="_blank" title="Expand Consult PS Slick (1).pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/24158/Expand_Consult_PS_Slick_(2).pdf?revision=1">Expand Consult Package</a></span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">This package is designed to help you achieve a faster time to value and get you off to a strong start with your new Procore solutions. In this package, you will receive tailored best practice implementation advice to meet your business needs. The Procore team is there to consult with you, on how to make Procore work for your business, and has been assigned some available hours to assist you with implementation and training. All services included in this package is available for 10 weeks after service start date. <em>Note:</em> This package is only available for Procore customers adding additional products to their subscription.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">10 Weeks</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$6,450 AUD</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no"><a target="_blank" title="Expand Deliver PS Slick (1).pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/24159/Expand_Deliver_PS_Slick_(2).pdf?revision=1">Expand Deliver Package</a></span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">This package is designed to help you achieve a faster time to value and get you off to a strong start with your new Procore solutions. In this package, you will receive tailored best practice implementation advice to meet your business needs. The Procore team is there to not only consult but help deliver your desired outcomes through partnership in product configuration and training. All services included in this package expire 14 weeks after service start date. <em>Note:</em> This package is only available for Procore customers adding additional products to their subscription.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">14 Weeks</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$10,875 AUD</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;">Premier Support Silver</td> <td data-th="Details" style="text-align:left;">Support services designed to provide clients with quicker response times, expert troubleshooting, proactive issue management and monthly support reporting and consultation. Includes access for up to twelve (12) company admin users as designated points-of-contact for Customer Support for personalised support via phone and email 24-hours a day, 7 days a week.&nbsp;</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">Recurring Annual Fee</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;">Varies</td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;">Premier Support Bronze</td> <td data-th="Details" style="text-align:left;">Support services designed to provide clients with quicker response times, expert troubleshooting, proactive issue management and monthly support reporting and consultation. Includes access for up to three (3) company admin users as designated points-of-contact for Customer Support for personalised support via phone and email 24 hours a day, 5 days a week.</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">Recurring Annual Fee</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;">Varies</td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;">Analytics Implementation Core</td> <td data-th="Details" style="text-align:left;">A guided Analytics implementation, with assistance on connecting Power BI and Procore Analytics, setting up out-of-the-box reports and training for power user(s).</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">12 Months</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$3,000 AUD</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;">Analytics Implementation Plus</td> <td data-th="Details" style="text-align:left;">A guided implementation with strategic planning for rollout and training. Procore&rsquo;s team can provide detailed requirements discovery and custom report design; configuration and best practice consultation; and end user training.</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">12 Months</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$7,500 AUD</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;">ERP Implementation Plus</td> <td data-th="Details" style="text-align:left;">This service is designed to enable greater adoption of ERP connectors by providing additional training, consultation and ERP SOP guidance and development.</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">Varies</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$6,000 AUD</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Custom Professional Services (Statement of Work)</span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Custom bundle of multiple services (outlined below) based on business needs. Also used for Technical Services such as Custom Integration Development &amp; Support, as well as Integration Consulting Services.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Varies</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Varies</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Custom Integration Development &amp; Support</span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Procore-provided custom integration development. Best for clients who do not have internal technical resources and need Procore integration development resources. Note: requires a custom statement of work and scoping performed by the Technical Services team. Yearly Support &amp; Maintenance fee will apply.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Varies</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Varies</span></td> </tr> </tbody> </table> </div><div mt-section-origin="customer-success/professional-services-and-support-offerings" class="mt-section"><span id="Add-on_Services_2"></span><h3 class="editable"><span class="mt-dnt" title="Do Not Translate" translate="no">Add-on Services</span></h3> <table class="mt-responsive-table perm-table perm-table-horizontal perm-table-highlight"> <thead> <tr> <th class="mt-column-width-15"><span class="mt-dnt" title="Do Not Translate" translate="no">Service Name</span></th> <th><span class="mt-dnt" title="Do Not Translate" translate="no">Details</span></th> <th class="mt-column-width-15"><span class="mt-dnt" title="Do Not Translate" translate="no">Duration</span></th> <th class="mt-column-width-15"><span class="mt-dnt" title="Do Not Translate" translate="no">Cost</span></th> </tr> </thead> <tbody> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no"><a title="Procore Consulting Services" href="https://en-gb.support.procore.com/products/online/procore-consulting-services" rel="internal">Procore Consulting Services</a></span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Virtual consulting services with Procore resources such as Strategic Product Consultants&nbsp;and Training Management Specialists. Common uses include deep-dive virtual consulting for the Procore suite of tools and custom Procore reporting. Purchased in 5-hour blocks, including 4 hours of consulting&nbsp;calls and 1 hour of administration time for preparation and follow-up.<br /> <br /> Refer to&nbsp;<a title="products/online/procore-consulting-services" href="https://en-gb.support.procore.com/products/online/procore-consulting-services" rel="internal">this page</a> for examples of how these services can be used.&nbsp;</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">12 Months</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$1,500 AUD/5 Hours</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no"><a target="_blank" title="Remote Admin Services (RAS) Slick 9_22 (1).pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/22308/Remote_Admin_Services_(RAS)_Slick_9_22_(1).pdf?revision=1">Remote Admin Services</a></span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Account configuration/setup and data entry services with Procore's Remote Admin Services team. Available services include configuration of company and project settings; creation and setup of new projects; and a variety of data entry services, including project backlog</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">12 Months</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Varies - Statement of Work required</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Analytics Consulting Services</span></td> <td data-th="Details" style="text-align:left;"> <p><span class="mt-dnt" title="Do Not Translate" translate="no">Virtual consulting services with Procore Analytics Developers, Implementation Specialists. Common uses include Procore Analytics deep-dive familiarization and training, custom report development, and out of the box report modifications. Purchased in 5-hour blocks.</span></p> <p>&nbsp;</p> <p><span class="mt-dnt" title="Do Not Translate" translate="no"><strong>Consulting /&nbsp;Training</strong></span></p> <ul> <li><span class="mt-dnt" title="Do Not Translate" translate="no">Familiarization &amp; training</span></li> <li><span class="mt-dnt" title="Do Not Translate" translate="no">Governance, minor report modifications</span></li> <li><span class="mt-dnt" title="Do Not Translate" translate="no">Data discovery&nbsp;</span></li> <li><span class="mt-dnt" title="Do Not Translate" translate="no">Helping clients understand the correlation between where their data is captured in Procore and how it can be accessed in Analytics</span></li> </ul> <p><span class="mt-dnt" title="Do Not Translate" translate="no"><strong>Development</strong></span></p> <ul> <li><span class="mt-dnt" title="Do Not Translate" translate="no">Report recreation (most common)</span></li> <li><span class="mt-dnt" title="Do Not Translate" translate="no">&ldquo;We want you to recreate this internal report&rdquo;</span></li> <li><span class="mt-dnt" title="Do Not Translate" translate="no">Format changes</span></li> <li><span class="mt-dnt" title="Do Not Translate" translate="no">Creativity around export limitation</span></li> <li><span class="mt-dnt" title="Do Not Translate" translate="no">Slick functionality, buttons, bookmarks</span></li> <li><span class="mt-dnt" title="Do Not Translate" translate="no">Build from scratch</span></li> <li><span class="mt-dnt" title="Do Not Translate" translate="no">Merge data from different systems</span></li> </ul> </td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">12 Months</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$1,500 AUD/5 Hours</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no"><a title="Procore Custom Solutions" href="https://en-gb.support.procore.com/products/online/custom-solutions" rel="internal">Procore Custom Solutions</a></span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Development time for building custom forms, workflows, and tools for the Procore platform. Purchased in 5-hour blocks. Work performed by Procore's Custom Solutions team. Screen reader support enabled.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">12 Months</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$1,500 AUD/5 Hours</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Integration Consulting Services</span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Virtual integration consulting services with Procore's Technical Services team. Best for clients who are building a custom integration between another system/environment and Procore. This service provides great value and expertise whether you have your own internal technical resources or are working with a third-party integrations consultant.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">12 Months</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Statement of Work required</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Onsite Training</span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Onsite strategic consulting or training with the client, delivered by Procore's Strategic Product Consultants. Flat fee per day, which includes travel expenses.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">12 Months</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$5,500 AUD/Day (Statement of Work required)</span></td> </tr> </tbody> </table> </div></div> <div class="localization-group" data-locale="en-ca"> <div mt-section-origin="customer-success/professional-services-and-support-offerings" class="mt-section"><span id="Implementation_and_Service_Packages_3"></span><h3 class="editable"><span class="mt-dnt" title="Do Not Translate" translate="no">Implementation and Service Packages</span></h3> <table class="mt-responsive-table perm-table perm-table-horizontal perm-table-highlight"> <thead> <tr> <th class="mt-column-width-15"><span class="mt-dnt" title="Do Not Translate" translate="no">Service Name</span></th> <th><span class="mt-dnt" title="Do Not Translate" translate="no">Details</span></th> <th class="mt-column-width-15"><span class="mt-dnt" title="Do Not Translate" translate="no">Duration</span></th> <th class="mt-column-width-15"><span class="mt-dnt" title="Do Not Translate" translate="no">Cost</span></th> </tr> </thead> <tbody> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no"><a target="_blank" title="Implementation Package Descriptions.pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/22307/Implementation_Package_Descriptions.pdf?revision=1">Advise Package</a></span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">This package is designed to help you achieve a faster time to value and get you off to a strong start during the first weeks with Procore. In this package, the Procore team is available to advise the Procore Committee during the implementation period, and the customer is responsible for rollout and training for their external teams and projects.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Varies</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Varies - reach out to your Procore point of contact</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no"><a target="_blank" title="Implementation Package Descriptions.pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/22307/Implementation_Package_Descriptions.pdf?revision=1">Consult Package</a></span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">This package is designed to help you achieve a faster time to value and get you off to a strong start during the first weeks with Procore. In this package, you will receive tailored best practice implementation advice to meet your business needs. The Procore team is there to consult the customer, on how to make Procore work for their business, and has been assigned some available hours to assist the customer with implementation and training.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Varies</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Varies - reach out to your Procore point of contact</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no"><a target="_blank" title="Implementation Package Descriptions.pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/22307/Implementation_Package_Descriptions.pdf?revision=1">Deliver Package</a></span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">This package is designed to help you achieve a faster time to value and get you off to a strong start during the first weeks with Procore. In this package, you will receive tailored best practice implementation advice to meet your business needs. The Procore team is there to not only consult but help deliver your desired outcomes through partnership in product configuration and training.&nbsp;</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Varies</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Varies - reach out to your Procore point of contact</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no"><a target="_blank" title="Expand Advise PS Slick (1).pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/24157/Expand_Advise_PS_Slick_(2).pdf?revision=1">Expand Advise Package</a></span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">This package is designed to help you achieve a faster time to value and get you off to a strong start with your new Procore solutions. In this package, the Procore team is available to advise your Procore Committee during the implementation period, as you rollout and train your external teams and projects. All services included in this package are available for 6 weeks after service start date. <em>Note:</em> This package is only available for Procore customers adding additional products to their subscription.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">6 Weeks</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$3,650 CAD</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no"><a target="_blank" title="Expand Consult PS Slick (1).pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/24158/Expand_Consult_PS_Slick_(2).pdf?revision=1">Expand Consult Package</a></span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">This package is designed to help you achieve a faster time to value and get you off to a strong start with your new Procore solutions. In this package, you will receive tailored best practice implementation advice to meet your business needs. The Procore team is there to consult with you, on how to make Procore work for your business, and has been assigned some available hours to assist you with implementation and training. All services included in this package is available for 10 weeks after service start date. <em>Note:</em> This package is only available for Procore customers adding additional products to their subscription.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">10 Weeks</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$6,000 CAD</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no"><a target="_blank" title="Expand Deliver PS Slick (1).pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/24159/Expand_Deliver_PS_Slick_(2).pdf?revision=1">Expand Deliver Package</a></span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">This package is designed to help you achieve a faster time to value and get you off to a strong start with your new Procore solutions. In this package, you will receive tailored best practice implementation advice to meet your business needs. The Procore team is there to not only consult but help deliver your desired outcomes through partnership in product configuration and training. All services included in this package expire 14 weeks after service start date. <em>Note:</em> This package is only available for Procore customers adding additional products to their subscription.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">14 Weeks</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$9,600 CAD</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><a title="1.24.24 CoreStart Professional Services Slick .pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/24177/1.24.24_CoreStart_Professional_Services_Slick_.pdf?revision=1"><span class="mt-dnt" title="Do Not Translate" translate="no">CoreStart Professional Services Package</span></a></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">This package is designed to provide flexibility to you and your teams while getting you off to a strong start during the first 12&nbsp;weeks with Procore and will help accelerate time to value. All services included in this package expire 12&nbsp;weeks after service start date. Note: This package is only available to certain Procore customers based on their Annual Construction Volume (ACV). Reach out to your Procore point of contact for more information.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">12&nbsp;Weeks</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$6,000 CAD</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Premier Support Silver</span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Support services designed to provide clients with quicker response times, expert troubleshooting, proactive issue management, and monthly support reporting and consultation. Includes access for up to twelve (12) company admin users as designated points-of-contact for Customer Support for personalized support via phone and email 24-hours a day, 7 days a week.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Recurring Annual Fee</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Varies</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Premier Support Bronze</span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Support services designed to provide clients with quicker response times, expert troubleshooting, proactive issue management, and monthly support reporting and consultation. Includes access for up to three (3) company admin users as designated points-of-contact for Customer Support for personalized support via phone and email 24 hours a day, 5 days a week.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Recurring Annual Fee</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Varies</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;">Analytics Implementation Core</td> <td data-th="Details" style="text-align:left;">A guided Analytics implementation, with assistance on connecting Power BI and Procore Analytics, setting up out-of-the-box reports and training for power user(s).</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">12 Months</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$2,500 CAD</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;">Analytics Implementation Plus</td> <td data-th="Details" style="text-align:left;">A guided implementation with strategic planning for rollout and training. Procore&rsquo;s team can provide detailed requirements discovery and custom report design; configuration and best practice consultation; and end user training.</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">12 Months</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$6,250 CAD</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;">ERP Implementation Plus</td> <td data-th="Details" style="text-align:left;">This service is designed to enable greater adoption of ERP connectors by providing additional training, consultation and ERP SOP guidance and development.</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">Varies</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$5,625 CAD</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Custom Professional Services (Statement of Work)</span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Custom bundle of multiple services (outlined below) based on business needs. Also used for Technical Services such as Custom Integration Development &amp; Support, as well as Integration Consulting Services.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Varies</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Varies</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Custom Integration Development &amp; Support</span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Procore-provided custom integration development. Best for Clients who do not have internal technical resources and need Procore integration development resources. Note: requires a custom statement of work and scoping performed by the Technical Services team. Yearly Support &amp; Maintenance fee will apply.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Varies,<br /> Includes<br /> Recurring<br /> Annual Fee</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Varies</span></td> </tr> </tbody> </table> </div><div mt-section-origin="customer-success/professional-services-and-support-offerings" class="mt-section"><span id="Add-on_Services_3"></span><h3 class="editable"><span class="mt-dnt" title="Do Not Translate" translate="no">Add-on Services</span></h3> <table class="mt-responsive-table perm-table perm-table-horizontal perm-table-highlight"> <thead> <tr> <th class="mt-column-width-15"><span class="mt-dnt" title="Do Not Translate" translate="no">Service Name</span></th> <th><span class="mt-dnt" title="Do Not Translate" translate="no">Details</span></th> <th class="mt-column-width-15"><span class="mt-dnt" title="Do Not Translate" translate="no">Duration</span></th> <th class="mt-column-width-15"><span class="mt-dnt" title="Do Not Translate" translate="no">Cost</span></th> </tr> </thead> <tbody> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no"><a title="Procore Consulting Services" href="https://en-gb.support.procore.com/products/online/procore-consulting-services" rel="internal">Procore Consulting Services</a></span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Virtual consulting services with Procore resources such as Project Managers, Strategic Product Consultants, Analytics Specialists and Training Management Specialists. Common uses include deep-dive virtual consulting for the Procore suite of tools, custom Procore reporting and Procore Analytics consulting. Purchased in 5-hour blocks, including 4 hours of consulting calls and 1 hour of administration time for preparation and follow-up.<br /> <br /> Refer to&nbsp;<a title="products/online/procore-consulting-services" href="https://en-gb.support.procore.com/products/online/procore-consulting-services" rel="internal">this page</a> for examples of how these services can be used.&nbsp;</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">12 Months</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$1,625 CAD/5 Hours</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Custom&nbsp;Solutions</span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Development time for building custom forms, workflows and tools for the Procore platform. Purchased in 5-hour blocks. Work performed by Procore's Custom Solutions team. Screen reader support enabled.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">12 Months</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$1,250 CAD/5 Hours</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Integration Consulting Services</span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Virtual integration consulting services with Procore&rsquo;s Technical Services team. Best for Clients who are building a custom integration between another system/environment and Procore. This service provides great value and expertise whether you have your own internal technical resources or are working with a third-party integrations consultant.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">12 Months</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Statement of Work required</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Remote Admin Services</span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Account configuration/setup and data entry services with Procore's Remote Admin Services team. Available services include configuration of company and project settings; creation and setup of new projects; and a variety of data entry services, including project backlog.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">12 Months</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Statement of Work required</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Onsite&nbsp;Training</span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Onsite strategic consulting or training with the client, delivered by Procore's Strategic Product Consultants. Flat fee per day, which includes travel expenses.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">12 Months</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$5,000 CAD/Day -&nbsp;Statement of Work required</span></td> </tr> </tbody> </table> </div></div> <div class="localization-group" data-locale="en-gb"> <div mt-section-origin="customer-success/professional-services-and-support-offerings" class="mt-section"><span id="Implementation_and_Service_Packages_4"></span><h3 class="editable"><span class="mt-dnt" title="Do Not Translate" translate="no">Implementation and Service Packages</span></h3> <table class="mt-responsive-table perm-table perm-table-horizontal perm-table-highlight"> <thead> <tr> <th class="mt-column-width-15"><span class="mt-dnt" title="Do Not Translate" translate="no">Service Name</span></th> <th><span class="mt-dnt" title="Do Not Translate" translate="no">Details</span></th> <th class="mt-column-width-15"><span class="mt-dnt" title="Do Not Translate" translate="no">Duration</span></th> <th class="mt-column-width-15"><span class="mt-dnt" title="Do Not Translate" translate="no">Cost</span></th> </tr> </thead> <tbody> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Advise Package</span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">The Procore implementation team will offer general &nbsp;best practice advice for the customer&rsquo;s team to execute. The Procore team is there to advise on implementation, but the customer is responsible for implementing the software for their business and training their team.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">12 weeks</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">&pound;3,650&nbsp;(&euro;5,000)</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Consult Package</span></td> <td data-th="Details" style="text-align:left;"> <p><span class="mt-dnt" title="Do Not Translate" translate="no">The Procore implementation team will work to understand the customer&rsquo;s unique business needs and will tailor best practice implementation advice to meet those needs.</span></p> <p><span class="mt-dnt" title="Do Not Translate" translate="no">The Procore team is there to consult the customer on how to make Procore work for their business and has been assigned some available hours to assist the customer with implementation and training.</span></p> </td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">18 weeks</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">&pound;7,250 (&euro;9,400)</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Deliver Package</span></td> <td data-th="Details" style="text-align:left;"> <p><span class="mt-dnt" title="Do Not Translate" translate="no">The Procore implementation team will work collaboratively to understand the customer&rsquo;s unique business needs via discovery workshops and provide best practices guidance to meet those needs through consultations.</span></p> <p><span class="mt-dnt" title="Do Not Translate" translate="no">The Procore team is there to not only consult but support the company-wide rollout of Procore through rollout strategy planning and training.</span></p> </td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">24 weeks</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">&pound;13,100 (&euro;17,000)</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">PDM Implementation</span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">The Procore team will lead existing customers through a comprehensive set of Document Management tools configuration and consultation conversations for your first Procore PDM project. Culminating in one end user training.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">8 weeks</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">&pound;2,812.50 (&euro;3,675)</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><a title="Premier Support Silver - Addendum.pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/24178/Premier_Support_Silver_-_Addendum.pdf?revision=1"><span class="mt-dnt" title="Do Not Translate" translate="no">Premier Support Silver</span></a></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Support services designed to provide clients with quicker response times, expert troubleshooting, proactive issue management, and monthly support reporting and consultation. Includes access for up to twelve (12) company admin users as designated points-of-contact for Customer Support for personalized support via phone and email 24-hours a day, 7 days a week.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Recurring Annual Fee</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Varies</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><a title="Premier Support Bronze - Addendum.pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/24179/Premier_Support_Bronze_-_Addendum.pdf?revision=1"><span class="mt-dnt" title="Do Not Translate" translate="no">Premier Support Bronze</span></a></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Support services designed to provide clients with quicker response times, expert troubleshooting, proactive issue management and monthly support reporting and consultation. Includes access for up to three (3) company admin users as designated points-of-contact for Customer Support for personalized support via phone and email 24 hours a day, 5 days a week.Includes access for up to five (5) company admin users as designated points-of-contact for Customer Support.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Recurring Annual Fee</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Varies</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;">Analytics Implementation Core</td> <td data-th="Details" style="text-align:left;">A guided Analytics implementation, with assistance on connecting Power BI and Procore Analytics, setting up out-of-the-box reports and training for power user(s).</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">12 Months</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">&pound;1,500 (&euro;3,000)</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;">Analytics Implementation Plus</td> <td data-th="Details" style="text-align:left;">A guided implementation with strategic planning for rollout and training. Procore&rsquo;s team can provide detailed requirements discovery and custom report design; configuration and best practice consultation; and end user training.</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">12 Months</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">&pound;3,750 (&euro;5,000)</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;">ERP Core Implementation</td> <td data-th="Details" style="text-align:left;">Mandatory setup fee to set up and configure ERP connector.</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">12 Months</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">&pound;1,290&nbsp;(&euro;1,800)</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;">ERP Implementation Plus</td> <td data-th="Details" style="text-align:left;">This service is designed to enable greater adoption of ERP connectors by providing additional training, consultation and ERP SOP guidance and development.</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">Varies</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">&pound;3,225&nbsp;(&euro;4,500)</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;">Training Center Plus Implementation</td> <td data-th="Details" style="text-align:left;">A guided implementation for customers purchasing the Training Center product. This includes enhanced site design and formatting.</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">12 Months</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">&pound;2,250 (&euro;3,000)</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Custom Professional Services (Statement of Work)</span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Custom bundle of multiple services (outlined below) based on business needs. Also used for Technical Services such as Custom Integration Development &amp; Support, as well as Integration Consulting Services.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Varies</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Varies</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Custom Integration Development &amp; Support</span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Procore-provided custom integration development. Best for Clients who do not have internal technical resources and need Procore integration development resources. Note: requires a custom statement of work and scoping performed by the Technical Services team. Yearly Support &amp; Maintenance fee will apply.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Varies,<br /> Includes<br /> Recurring<br /> Annual Fee</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Varies</span></td> </tr> </tbody> </table> </div><div mt-section-origin="customer-success/professional-services-and-support-offerings" class="mt-section"><span id="Add-on_Services_4"></span><h3 class="editable"><span class="mt-dnt" title="Do Not Translate" translate="no">Add-on Services</span></h3> <table class="mt-responsive-table perm-table perm-table-horizontal perm-table-highlight"> <thead> <tr> <th class="mt-column-width-15"><span class="mt-dnt" title="Do Not Translate" translate="no">Service Name</span></th> <th><span class="mt-dnt" title="Do Not Translate" translate="no">Details</span></th> <th class="mt-column-width-15"><span class="mt-dnt" title="Do Not Translate" translate="no">Duration</span></th> <th class="mt-column-width-15"><span class="mt-dnt" title="Do Not Translate" translate="no">Cost</span></th> </tr> </thead> <tbody> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no"><a title="Procore Consulting Services" href="https://en-gb.support.procore.com/products/online/procore-consulting-services" rel="internal">Procore Consulting Services</a></span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Virtual consulting services with Procore resources such as Strategic Product Consultants, Analytics Specialists and Training Management Specialists. Common uses include deep-dive virtual consulting for the Procore suite of tools, custom Procore reporting and Procore Analytics consulting. Includes 5 hours of client activities.<br /> <br /> Refer to&nbsp;<a title="products/online/procore-consulting-services" href="https://en-gb.support.procore.com/products/online/procore-consulting-services" rel="internal">this page</a> for examples of how these services can be used.&nbsp;</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">12 Months</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">&pound;750 (&euro;1,000)/5 Hours of Client Activities</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no"><a title="Procore Custom Solutions" href="https://en-gb.support.procore.com/products/online/custom-solutions" rel="internal">Procore Custom Solutions</a></span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Development time for building custom forms, workflows and tools for the Procore platform. Purchased in 5-hour blocks. Work performed by Procore's Custom Solutions team. Screen reader support enabled.<br /> (Note: Custom reports are handled via Consulting Services)&nbsp;</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">12 Months</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">&pound;750 (&euro;1,000)/5 Hours</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Remote Admin Services</span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Account configuration/setup and data entry services with Procore's Remote Admin Services team. Available services include configuration of company and project settings; creation and setup of new projects; and a variety of data entry services, including project backlog.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">12 Months</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Statement of Work required</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;">Training Center Consulting Services</td> <td data-th="Details" style="text-align:left;">Virtual integration consulting services with Procore&rsquo;s Training Center Services team.</td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;">12 Months</td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">&pound;750 (&euro;1,000)/5 Hours</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Service Name" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Onsite Training or Consulting</span></td> <td data-th="Details" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Onsite strategic consulting or training with the client, delivered by Procore's Strategic Product Consultants. Flat fee per day, which includes travel expenses.</span></td> <td class="mt-column-width-15" data-th="Duration" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">12 Months</span></td> <td class="mt-column-width-15" data-th="Cost" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Statement of Work required</span></td> </tr> </tbody> </table> </div></div> <div class="localization-group" data-locale="es-419"> <div mt-section-origin="customer-success/professional-services-and-support-offerings" class="mt-section"><span id="Implementaci.C3.B3n_y_paquetes_de_servicios"></span><h3 class="editable"><span class="mt-dnt" title="Do Not Translate" translate="no">Implementaci&oacute;n y paquetes de servicios</span></h3> <table class="mt-responsive-table perm-table perm-table-horizontal perm-table-highlight"> <thead> <tr> <th class="mt-column-width-15"><span class="mt-dnt" title="Do Not Translate" translate="no">Nombre del servicio</span></th> <th><span class="mt-dnt" title="Do Not Translate" translate="no">Detalles</span></th> <th class="mt-column-width-15"><span class="mt-dnt" title="Do Not Translate" translate="no">Duraci&oacute;n</span></th> <th class="mt-column-width-15"><span class="mt-dnt" title="Do Not Translate" translate="no">Costo</span></th> </tr> </thead> <tbody> <tr> <td class="mt-column-width-15" data-th="Nombre del servicio" style="text-align:left;"><a target="_blank" title="QS4 Updated SLK V9.21 JW.pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/16918/QS4_Updated_SLK_V9.21_JW.pdf?revision=1"><span class="mt-dnt" title="Do Not Translate" translate="no">QuickStart 4</span></a></td> <td data-th="Detalles" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Paquete de implementaci&oacute;n para nuevos clientes o implementaci&oacute;n de Procore en una nueva divisi&oacute;n. Incluye 4 meses de servicios de Gerente de Proyecto con llamadas semanales de implementaci&oacute;n, hasta 15 horas de consultor&iacute;a adicionales, acceso a consultores de productos estrat&eacute;gicos y planificaci&oacute;n estrat&eacute;gica. <em>Todos los servicios de QuickStart 4 deben utilizarse en el per&iacute;odo de implementaci&oacute;n de 4 meses.</em></span></td> <td class="mt-column-width-15" data-th="Duraci&oacute;n" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">4 Meses</span></td> <td class="mt-column-width-15" data-th="Costo" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$15,000</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Nombre del servicio" style="text-align:left;"><a title="QS2 Updated SLK .pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/16917/QS2_Updated_SLK_.pdf?revision=1"><span class="mt-dnt" title="Do Not Translate" translate="no">QuickStart 2</span></a></td> <td data-th="Detalles" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Paquete de implementaci&oacute;n para nuevos clientes o implementaci&oacute;n de Procore en una nueva divisi&oacute;n. Incluye 2 meses de servicios de Gerente de Proyecto con llamadas semanales de implementaci&oacute;n, hasta 5 horas de consultor&iacute;a adicionales, acceso a consultores de productos estrat&eacute;gicos y planificaci&oacute;n estrat&eacute;gica. <em>Todos los servicios de QuickStart 2 deben usarse en el per&iacute;odo de implementaci&oacute;n de 2 meses.</em></span></td> <td class="mt-column-width-15" data-th="Duraci&oacute;n" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">2 Meses</span></td> <td class="mt-column-width-15" data-th="Costo" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$8,000</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Nombre del servicio" style="text-align:left;"><a target="_blank" title="Procore-Quickstart-Virtual_27Jan2022.pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/16916/Procore-Quickstart-Virtual_27Jan2022.pdf?revision=1"><span class="mt-dnt" title="Do Not Translate" translate="no">QuickStart Virtual</span></a></td> <td data-th="Detalles" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Un paquete de implementaci&oacute;n virtual para nuevos clientes o implementaci&oacute;n de Procore a una nueva divisi&oacute;n. Incluye 10 semanas de servicios de Gerente de Proyecto con llamadas semanales de implementaci&oacute;n, hasta 10 horas de consultor&iacute;a adicionales, acceso a consultores de productos estrat&eacute;gicos y planificaci&oacute;n estrat&eacute;gica.</span></td> <td class="mt-column-width-15" data-th="Duraci&oacute;n" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">10 semanas</span></td> <td class="mt-column-width-15" data-th="Costo" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$5,000</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Nombre del servicio" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Paquete de soporte premier</span></td> <td data-th="Detalles" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Servicios de soporte dise&ntilde;ados para proporcionar a los clientes tiempos de respuesta m&aacute;s r&aacute;pidos, soluci&oacute;n de problemas de expertos, gesti&oacute;n proactiva de problemas, y reportes y consultas de soporte mensual. Incluye acceso para hasta cinco (5) usuarios administradores de la compa&ntilde;&iacute;a como puntos de contacto designados para soporte al cliente.</span></td> <td class="mt-column-width-15" data-th="Duraci&oacute;n" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Tarifa anual recurrente</span></td> <td class="mt-column-width-15" data-th="Costo" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Var&iacute;a</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Nombre del servicio" style="text-align:left;">Analytics Implementation Core</td> <td data-th="Detalles" style="text-align:left;">A guided Analytics implementation, with assistance on connecting Power BI and Procore Analytics, setting up out-of-the-box reports and training for power user(s).</td> <td class="mt-column-width-15" data-th="Duraci&oacute;n" style="text-align:left;">12 Months</td> <td class="mt-column-width-15" data-th="Costo" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$2,000</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Nombre del servicio" style="text-align:left;">Analytics Implementation Plus</td> <td data-th="Detalles" style="text-align:left;">A guided implementation with strategic planning for rollout and training. Procore&rsquo;s team can provide detailed requirements discovery and custom report design; configuration and best practice consultation; and end user training.</td> <td class="mt-column-width-15" data-th="Duraci&oacute;n" style="text-align:left;">12 Months</td> <td class="mt-column-width-15" data-th="Costo" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$5,000</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Nombre del servicio" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Servicios profesionales personalizados (declaraci&oacute;n de trabajo)</span></td> <td data-th="Detalles" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Paquete personalizado de varios servicios (que se describen a continuaci&oacute;n) seg&uacute;n las necesidades comerciales. Tambi&eacute;n se utiliza para servicios t&eacute;cnicos como desarrollo de integraci&oacute;n personalizada y soporte, as&iacute; como servicios de consultor&iacute;a de integraci&oacute;n.</span></td> <td class="mt-column-width-15" data-th="Duraci&oacute;n" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Var&iacute;a</span></td> <td class="mt-column-width-15" data-th="Costo" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Var&iacute;a</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Nombre del servicio" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Desarrollo de integraci&oacute;n personalizada y soporte</span></td> <td data-th="Detalles" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Desarrollo de integraci&oacute;n personalizado proporcionado por Procore. Mejor para los clientes que no tienen recursos t&eacute;cnicos internos y necesitan recursos de desarrollo de integraci&oacute;n de Procore. Nota: requiere una declaraci&oacute;n de trabajo personalizada y un alcance realizado por el equipo de Servicios T&eacute;cnicos. Se aplicar&aacute; una tarifa anual de soporte y mantenimiento.</span></td> <td class="mt-column-width-15" data-th="Duraci&oacute;n" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Var&iacute;a<br /> Incluye<br /> Recurrente<br /> Tarifa anual</span></td> <td class="mt-column-width-15" data-th="Costo" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Var&iacute;a</span></td> </tr> </tbody> </table> </div><div mt-section-origin="customer-success/professional-services-and-support-offerings" class="mt-section"><span id="Servicios_adicionales"></span><h3 class="editable"><span class="mt-dnt" title="Do Not Translate" translate="no">Servicios adicionales</span></h3> <table class="mt-responsive-table perm-table perm-table-horizontal perm-table-highlight"> <thead> <tr> <th class="mt-column-width-15"><span class="mt-dnt" title="Do Not Translate" translate="no">Nombre del servicio</span></th> <th><span class="mt-dnt" title="Do Not Translate" translate="no">Detalles</span></th> <th class="mt-column-width-15"><span class="mt-dnt" title="Do Not Translate" translate="no">Duraci&oacute;n</span></th> <th class="mt-column-width-15"><span class="mt-dnt" title="Do Not Translate" translate="no">Costo</span></th> </tr> </thead> <tbody> <tr> <td class="mt-column-width-15" data-th="Nombre del servicio" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no"><a title="Servicios de consultor&iacute;a de Procore" href="https://en-gb.support.procore.com/products/online/procore-consulting-services" rel="internal">Servicios de consultor&iacute;a de Procore</a></span></td> <td data-th="Detalles" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Servicios de consultor&iacute;a virtual con recursos de Procore, como gerentes de implementaci&oacute;n, consultores estrat&eacute;gicos de productos y especialistas en administraci&oacute;n de capacitaci&oacute;n. Los usos comunes incluyen consultor&iacute;a virtual profunda para la suite de herramientas Procore y reportes personalizados de Procore. Comprado en bloques de 5 horas, incluidas 4 horas de llamadas de asesoramiento y 1 hora de tiempo de administraci&oacute;n para la preparaci&oacute;n y el seguimiento.<br /> <br /> Consulte <a title="products/online/procore-consulting-services" href="https://en-gb.support.procore.com/products/online/procore-consulting-services" rel="internal">esta p&aacute;gina</a> para ver ejemplos de c&oacute;mo se pueden utilizar estos servicios.&nbsp;</span></td> <td class="mt-column-width-15" data-th="Duraci&oacute;n" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">12 meses</span></td> <td class="mt-column-width-15" data-th="Costo" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$1,375/5 Horas</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Nombre del servicio" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no"><a title="Soluciones personalizadas de Procore" href="https://en-gb.support.procore.com/products/online/custom-solutions" rel="internal">Soluciones personalizadas de Procore</a></span></td> <td data-th="Detalles" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Tiempo de desarrollo para crear formularios, flujos de trabajo y herramientas personalizados para la plataforma Procore. Comprado en bloques de 5 horas. Trabajo realizado por el equipo de Soluciones personalizadas de Procore. Soporte de lector de pantalla habilitado.<br /> (Nota: Los reportes personalizados se manejan a trav&eacute;s de servicios de consultor&iacute;a)</span></td> <td class="mt-column-width-15" data-th="Duraci&oacute;n" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">12 meses</span></td> <td class="mt-column-width-15" data-th="Costo" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$1,000/5 Horas</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Nombre del servicio" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Servicios de consultor&iacute;a de integraci&oacute;n</span></td> <td data-th="Detalles" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Servicios de consultor&iacute;a de integraci&oacute;n virtual con el equipo de Servicios T&eacute;cnicos de Procore. Mejor para los clientes que est&aacute;n creando una integraci&oacute;n personalizada entre otro sistema/entorno y Procore. Este servicio proporciona un gran valor y experiencia si tiene sus propios recursos t&eacute;cnicos internos o est&aacute; trabajando con un consultor de integraciones de terceros.</span></td> <td class="mt-column-width-15" data-th="Duraci&oacute;n" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">12 meses</span></td> <td class="mt-column-width-15" data-th="Costo" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$1,500/5 Horas</span></td> </tr> <tr> <td class="mt-column-width-15" data-th="Nombre del servicio" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Servicios de consultor&iacute;a de an&aacute;lisis</span></td> <td data-th="Detalles" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">Servicios de consultor&iacute;a virtual con desarrolladores de Procore Analytics, especialistas en implementaci&oacute;n. Los usos comunes incluyen familiarizaci&oacute;n y capacitaci&oacute;n profunda de Procore Analytics, desarrollo de reportes personalizados y modificaciones del reporte de cuadro. Comprado en bloques de 5 horas.</span> <p>&nbsp;</p> <p><span class="mt-dnt" title="Do Not Translate" translate="no"><strong>Consultor&iacute;a/Capacitaci&oacute;n</strong></span></p> <ul> <li><span class="mt-dnt" title="Do Not Translate" translate="no">Familiarizaci&oacute;n y capacitaci&oacute;n</span></li> <li><span class="mt-dnt" title="Do Not Translate" translate="no">Gobernanza, modificaciones menores del reporte</span></li> <li><span class="mt-dnt" title="Do Not Translate" translate="no">Descubrimiento de datos&nbsp;</span></li> <li><span class="mt-dnt" title="Do Not Translate" translate="no">Ayudar a los clientes a comprender la correlaci&oacute;n entre d&oacute;nde se capturan sus datos en Procore y c&oacute;mo se puede acceder a &eacute;l en Analytics</span></li> </ul> <p><span class="mt-dnt" title="Do Not Translate" translate="no"><strong>Desarrollo</strong></span></p> <ul> <li><span class="mt-dnt" title="Do Not Translate" translate="no">Reporte de actividades deportivas (m&aacute;s comunes)</span></li> <li><span class="mt-dnt" title="Do Not Translate" translate="no">&quot;Queremos que vuelva a crear este reporte interno&quot;</span></li> <li><span class="mt-dnt" title="Do Not Translate" translate="no">Cambios de formato</span></li> <li><span class="mt-dnt" title="Do Not Translate" translate="no">Creatividad alrededor de la limitaci&oacute;n de exportaci&oacute;n</span></li> <li><span class="mt-dnt" title="Do Not Translate" translate="no">Funcionalidad de Sadin, botones, marcadores</span></li> <li><span class="mt-dnt" title="Do Not Translate" translate="no">Crear desde cero</span></li> <li><span class="mt-dnt" title="Do Not Translate" translate="no">Fusionar datos de diferentes sistemas</span></li> </ul> </td> <td class="mt-column-width-15" data-th="Duraci&oacute;n" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">12 meses</span></td> <td class="mt-column-width-15" data-th="Costo" style="text-align:left;"><span class="mt-dnt" title="Do Not Translate" translate="no">$1,000/5 Horas</span></td> </tr> </tbody> </table> </div><div mt-section-origin="customer-success/professional-services-and-support-offerings" class="mt-section"><span id="Servicios_titulados"></span><h3 class="editable"><span class="mt-dnt" title="Do Not Translate" translate="no">Servicios titulados</span></h3> <p><span class="mt-dnt" title="Do Not Translate" translate="no">Para ver los detalles de los servicios incluidos con su compra inicial*, seleccione el valor total de construcci&oacute;n anual aplicable a continuaci&oacute;n.</span></p> <table class="shadow mt-responsive-table" title="Agregar el cursor de la sombra"> <thead> </thead> <tbody> <tr> <td class="mt-column-width-15 mt-noheading" style="text-align:left;"><a target="_blank" title="CustomerSuccessSilver_Slick_8.5x11_July2021.pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/16912/CustomerSuccessSilver_Slick_8.5x11_July2021.pdf?revision=1"><span class="mt-dnt" title="Do Not Translate" translate="no">CV &lt; $20M*</span></a></td> <td class="mt-column-width-15 mt-noheading" style="text-align:left;"><a target="_blank" title="CustomerSuccessGold_Slick_8.5x11_July2021.pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/16910/CustomerSuccessGold_Slick_8.5x11_July2021.pdf?revision=1"><span class="mt-dnt" title="Do Not Translate" translate="no">ACV $20M-$250M*</span></a></td> <td class="mt-column-width-15 mt-noheading" style="text-align:left;"><a target="_blank" title="CustomerSuccessPlatinum_Slick_8.5x11_July2021.pdf" rel="internal" class="iconitext-16 ext-pdf" href="https://en-gb.support.procore.com/@api/deki/files/16911/CustomerSuccessPlatinum_Slick_8.5x11_July2021.pdf?revision=1"><span class="mt-dnt" title="Do Not Translate" translate="no">ACV &gt; $250M</span></a></td> </tr> </tbody> </table> <p><span class="mt-dnt" title="Do Not Translate" translate="no">* Si se ha comprado un paquete de implementaci&oacute;n o servicio, los servicios titulados no se aplican. P&oacute;ngase en contacto con su representante de &Eacute;xito del cliente de Procore con cualquier pregunta.</span></p> <p><span class="mt-dnt" title="Do Not Translate" translate="no"><em>Nota: Todos los precios enumerados est&aacute;n en USD. Hable con su punto de contacto de Procore para obtener precios en otras monedas.</em></span></p> </div></div> <hr /> <div mt-section-origin="customer-success/professional-services-and-support-offerings" class="mt-section" id="section_1"><span id="No-Show_and_Cancellation_Policies"></span><h3 class="editable">No-Show and Cancellation Policies</h3> <div mt-section-origin="customer-success/professional-services-and-support-offerings" class="mt-section" id="section_2"><span id="No-Show"></span><h4 class="editable">No-Show</h4> <p>After Procore waits 5 minutes for a client to join a meeting, a reminder (email/phone call/etc.) will be sent to the client. Procore will wait for up to 15 minutes for a client to join the meeting before ending the meeting. If the client does not join the meeting after 15 minutes, the call is considered a &quot;No-Show&quot; and Procore reserves the right to deduct 50% of the planned call time from the pre-billed hours. After one no-show, additional professional services hours may need to be purchased to complete project deliverables.</p> </div><div mt-section-origin="customer-success/professional-services-and-support-offerings" class="mt-section" id="section_3"><span id="Cancellations"></span><h4 class="editable">Cancellations</h4> <p>If a client notifies Procore of cancellation within 24 hours of a programmed call, Procore reserves the right to deduct 50% of the planned call time from pre-billed hours, as well as any time spent for preparation/research/case scenarios built out. If a client notifies Procore of cancellation more than 24 hours before the call, no penalty will apply. Preparation/research work that was already conducted will be deducted from pre-billed hours accordingly.</p> </div></div></div> </div> </div> <div class="mt-content-footer"></div> <ol class="grape-meta-data grape-meta-article-navigation"> <li class="grape-back-to-top"><a class="mt-icon-back-to-top" href="#title" id="mt-back-to-top" title="Jump back to top of this article">Back to top</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://en-gb.support.procore.com/customer-success/product-line-training-resources" title="Product Line Training Resources"><span>Product Line Training Resources</span></a> </li> <li class="mt-pagination-next"> <a class="mt-icon-next-article" href="https://en-gb.support.procore.com/faq" title="FAQ"><span>FAQ</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; Copyright 2024 Procore</li> <li class="grape-footer-powered-by"><a href="https://mindtouch.com/demo" class="mt-poweredby product " title="MindTouch" target="_blank"> Powered by 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; 2024 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">Privacy Notice</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">Terms of Service</a></li><li class="mt-custom-footer-link"><a href="https://www.procore.com/en-gb" 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">Log In</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(); }, 6000); });/*]]>*/</script> <p>&nbsp;</p> <style type="text/css">/*<![CDATA[*/ #salesforceLiveChatHelpButtonFooter { position: fixed; bottom: 0; right: 200px; z-index: 100; } #salesforceLiveChatHelpButton { height: 46px; width: 165px; background-color: #232729; border: none; color: white; padding: 15px 32px; text-align: center; text-decoration: none; display: inline-block; font-size: 15px; border-radius: 8px 8px 0px 0px; cursor: pointer; background-image: url(https://procoretechnologies.my.salesforce-sites.com/support/resource/EmbeddedServiceChatIcon); background-repeat: no-repeat; padding-left: 60px; background-size: 25px 25px; background-position: 25px 11px; font-family: "Inter", "Arial", sans-serif; box-shadow: 0 0 12px 0 rgba(0,0,0,0.5); line-height: 0px; } #salesforceLiveChatHelpButton:hover { transition: 0.05s ease-in; background-color: #4E5253; } /*]]>*/</style> <div id="salesforceLiveChatHelpButtonFooter"><input id="salesforceLiveChatHelpButton" onclick="window.open('https://procoretechnologies.my.salesforce-sites.com/support/ProcoreMessagingSupport', 'Procore Support Chat', 'width=430,height=730')" type="submit" value="Live Chat"></input></div> </div> <script type="text/javascript" data-mindtouch-module="true" src="https://a.mtstatic.com/deki/javascript/out/standalone/ui.widget.helpWidget.js?_=aae9f894b8b9c897d72439fee4980c96b51ba5ff:site_13386"></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) --> <!-- Start of Procore Service Cloud Live Code Snippet --> <!-- End of Procore Service Cloud Live Code Snippet --> </body> </html>

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