{"id":7552,"date":"2023-06-05T13:53:57","date_gmt":"2023-06-05T11:53:57","guid":{"rendered":"https:\/\/www.sysfinpro.com\/?p=7552"},"modified":"2023-06-05T14:18:28","modified_gmt":"2023-06-05T12:18:28","slug":"kb20210929-01-sage-200-evolution-tip-trick-upgrade-error-refreshing-all-functions","status":"publish","type":"post","link":"https:\/\/www.sysfinpro.com\/index.php\/kb20210929-01-sage-200-evolution-tip-trick-upgrade-error-refreshing-all-functions\/","title":{"rendered":"KB20230606\/01: Sage 200 Evolution Tip &#038; Trick &#8211; Company upgrade error &#8220;Error refreshing all functions! Could not find the object &#8216;_efntu TaxAmount&#8217; or you do not have permission&#8221;."},"content":{"rendered":"\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><a href=\"https:\/\/www.sysfinpro.com\/wp-content\/uploads\/2022\/09\/Sage-200-Evolution.png\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.sysfinpro.com\/wp-content\/uploads\/2022\/09\/Sage-200-Evolution.png\" alt=\"\" class=\"wp-image-10994\" width=\"313\" height=\"77\"\/><\/a><\/figure>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"has-text-align-center has-palette-color-1-color has-text-color has-medium-font-size\"><strong>What to do when you get the Sage 200 Evolution company upgrade error &#8220;Error refreshing all functions! Could not find the object &#8216;_efntuTaxAmount&#8217; or you do not have permission<\/strong>&#8220;<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"373\" height=\"180\" src=\"https:\/\/www.sysfinpro.com\/wp-content\/uploads\/2021\/09\/image-22.png\" alt=\"\" class=\"wp-image-7555\" srcset=\"https:\/\/www.sysfinpro.com\/wp-content\/uploads\/2021\/09\/image-22.png 373w, https:\/\/www.sysfinpro.com\/wp-content\/uploads\/2021\/09\/image-22-300x145.png 300w\" sizes=\"auto, (max-width: 373px) 100vw, 373px\" \/><\/figure>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"has-palette-color-1-color has-text-color has-medium-font-size\">This error may especially occur when upgrading from Sage 200 Evolution version 9.20 to version 10 using SQL2014.<\/p>\n\n\n\n<p class=\"has-palette-color-1-color has-text-color has-medium-font-size\"><strong>Please note<\/strong> &#8211; It is recommended that this query should preferably be fixed by a professional Sage 200 Evolution support consultant who is familiar on how to compile SQL queries, to correct the problem.<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"has-palette-color-2-color has-text-color has-medium-font-size\"><strong>Apply the following steps to resolve this query:<\/strong><\/p>\n\n\n\n<p class=\"has-palette-color-2-color has-text-color has-medium-font-size\">1. Restore the backup that was made before the upgrade was started.<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"has-palette-color-2-color has-text-color has-medium-font-size\">2. Drop the company database functions (as listed below) by separately running the following SQL scripts:<\/p>\n\n\n\n<p class=\"has-palette-color-2-color has-text-color has-medium-font-size\">drop function _efntuAmountExcl<\/p>\n\n\n\n<p class=\"has-palette-color-2-color has-text-color has-medium-font-size\">drop function _efntuAmountIncl<\/p>\n\n\n\n<p class=\"has-palette-color-2-color has-text-color has-medium-font-size\">drop function _efntuDiscAmount<\/p>\n\n\n\n<p class=\"has-palette-color-2-color has-text-color has-medium-font-size\">drop function _efntuOldExclToNewExcl<\/p>\n\n\n\n<p class=\"has-palette-color-2-color has-text-color has-medium-font-size\">drop function _efntuOldInclToNewIncl<\/p>\n\n\n\n<p class=\"has-palette-color-2-color has-text-color has-medium-font-size\">drop function _efntuPaymentDiscAmount<\/p>\n\n\n\n<p class=\"has-palette-color-2-color has-text-color has-medium-font-size\">drop function _efntuRoundToNearest<\/p>\n\n\n\n<p class=\"has-palette-color-2-color has-text-color has-medium-font-size\">drop function _efntuTaxAmount<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"has-palette-color-2-color has-text-color has-medium-font-size\">3. Upgrade the company as per the normal procedure which should now run fine.<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"has-palette-color-2-color has-text-color has-medium-font-size\">4. Once the upgrade has been completed the above Functions need to be re-created by running the various SQL scripts below.<\/p>\n\n\n\n<p class=\"has-palette-color-2-color has-text-color has-medium-font-size\">a). Recreating the\u00a0 _efntuAmountExcl function<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<pre class=\"wp-block-code\"><code>SET ANSI_NULLS ON\nGO\n \nSET QUOTED_IDENTIFIER ON\nGO\n \nCREATE FUNCTION &#91;dbo].&#91;_efntuAmountExcl](@AmountIncl float, @TaxRate float, @Decs int=2)\n \nreturns float\n \nwith schemabinding\n \nas\n \nbegin\n \n  return (round(@AmountIncl \/ (1 + (@TaxRate \/ 100)), @Decs))\n \nend\n \nGO\n<\/code><\/pre>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"has-palette-color-2-color has-text-color has-medium-font-size\">b). Recreating the _efntuAmountIncl function<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<pre class=\"wp-block-code\"><code>SET ANSI_NULLS ON\nGO\n \nSET QUOTED_IDENTIFIER ON\nGO\n \nCREATE FUNCTION &#91;dbo].&#91;_efntuAmountIncl](@AmountExcl float, @TaxRate float, @Decs int=2)\n \nreturns float\n \nwith schemabinding\n \nas\n \nbegin\n \n  return (round(@AmountExcl * (1 + (@TaxRate \/ 100)), @Decs))\n \nend\n \nGO\n<\/code><\/pre>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"has-palette-color-2-color has-text-color has-medium-font-size\">c). Recreating the _efntuPaymentDiscAmount function<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<pre class=\"wp-block-code\"><code>SET ANSI_NULLS ON\nGO\n \nSET QUOTED_IDENTIFIER ON\nGO\n \nCREATE FUNCTION &#91;dbo].&#91;_efntuPaymentDiscAmount](@Amount float, @DiscPerc float)\n \nreturns float\n \nwith schemabinding\n \nas\n \nbegin\n \nreturn (case when @DiscPerc &lt; 100 then ((@DiscPerc \/ 100) * (@Amount) \/ (1 - (@DiscPerc\/100))) else @Amount end)\n \nend\n\t \nGO\n<\/code><\/pre>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"has-palette-color-2-color has-text-color has-medium-font-size\">d). Recreating the _efntuDiscAmount function<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<pre class=\"wp-block-code\"><code>SET ANSI_NULLS ON\nGO\n \nSET QUOTED_IDENTIFIER ON\nGO\n \nCREATE FUNCTION &#91;dbo].&#91;_efntuDiscAmount](@Amount float, @DiscPerc float, @Decs int=2)\n \nreturns float\n \nwith schemabinding\n \nas\n \nbegin\n \n  return (round(((@DiscPerc \/ 100) * @Amount), @Decs))\n \nend\n \nGO\n<\/code><\/pre>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"has-palette-color-2-color has-text-color has-medium-font-size\">e) Recreating the _efntuOldExclToNewExcl function<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<pre class=\"wp-block-code\"><code>SET ANSI_NULLS ON\nGO\n \nSET QUOTED_IDENTIFIER ON\nGO\n \ncreate function &#91;dbo].&#91;_efntuOldExclToNewExcl](@ExclAmount float, @OldTaxRate float, @NewTaxRate float, @Decs int = 2)\n \nreturns float\n \nas\n \nbegin\n \n  return (round((@ExclAmount * (1 + (@OldTaxRate\/100))) \/ (1 + (@NewTaxRate\/100)), @Decs))\n \nend\n \nGO\n<\/code><\/pre>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"has-palette-color-2-color has-text-color has-medium-font-size\">f) Recreating the _efntuOldInclToNewIncl function<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<pre class=\"wp-block-code\"><code>SET ANSI_NULLS ON\nGO\n \nSET QUOTED_IDENTIFIER ON\nGO\n \ncreate function &#91;dbo].&#91;_efntuOldInclToNewIncl](@InclAmount float, @OldTaxRate float, @NewTaxRate float, @Decs int = 2)\n \nreturns float\n \nas\n \nbegin\n \n  return (round((@InclAmount \/ (1 + (@OldTaxRate\/100))) * (1 + (@NewTaxRate\/100)), @Decs))\n \nend\n \nGO\n<\/code><\/pre>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"has-palette-color-2-color has-text-color has-medium-font-size\">g) Recreating the _efntuRoundToNearest function<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<pre class=\"wp-block-code\"><code>SET ANSI_NULLS ON\nGO\n \nSET QUOTED_IDENTIFIER ON\nGO\n \nCREATE FUNCTION &#91;dbo].&#91;_efntuRoundToNearest](@Amount float, @RoundDirection int, @Denominator Float)\n \nreturns float\n \nas\n \nbegin\n \n  declare @TruncVal float\n \n  declare @DecimalVal float\n \n  declare @I int\n \n  declare @J int\n \n  if (@Denominator &lt;&gt; 0) and (@RoundDirection &gt; 0) begin\n \n    set @TruncVal = floor(@Amount);\n \n    set @DecimalVal = (@Amount*100 - @TruncVal*100)\/100\n \n    set @I = (@DecimalVal*100)\n \n    set @J = (@Denominator*100);\n \n    if (select @I % @J) = 0\n \n      set @Amount = @TruncVal + @DecimalVal\n \n    else begin\n \n      if @RoundDirection = 1\n \n        set @Amount = @TruncVal + (floor(@DecimalVal\/@Denominator) * @Denominator) + @Denominator\n \n      else if @RoundDirection = 2\n \n        set @Amount = @TruncVal + (floor(@DecimalVal\/@Denominator) * @Denominator)\n \n    end\n \n  end\n \n  return @Amount\n \nend\n \nGO\n<\/code><\/pre>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"has-palette-color-2-color has-text-color has-medium-font-size\">h) Recreating the _efntuTaxAmount function<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<pre class=\"wp-block-code\"><code>CREATE FUNCTION &#91;dbo].&#91;_efntuTaxAmount](@Amount float, @TaxRate float, @Decs int=2)\n \nreturns float\n \nwith schemabinding\n \nas\n \nbegin\n \n  return (round(@Amount - (@Amount \/ (1 + (@TaxRate \/ 100))), 2))\n \nend\nGO\n<\/code><\/pre>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>What to do when you get the Sage 200 Evolution company upgrade error &#8220;Error refreshing all functions! Could not find the object &#8216;_efntuTaxAmount&#8217; or you do not have permission&#8220; This error may especially occur when upgrading from Sage 200 Evolution version 9.20 to version 10 using SQL2014. Please note &#8211; It is recommended that this [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"qubely_global_settings":"","qubely_interactions":"","footnotes":""},"categories":[51,56],"tags":[],"class_list":["post-7552","post","type-post","status-publish","format-standard","hentry","category-erp","category-200evo"],"blocksy_meta":{"styles_descriptor":{"styles":{"desktop":"","tablet":"","mobile":""},"google_fonts":[],"version":6}},"qubely_featured_image_url":null,"qubely_author":{"display_name":"Administrator","author_link":"https:\/\/www.sysfinpro.com\/index.php\/author\/administrator\/"},"qubely_comment":0,"qubely_category":"<a href=\"https:\/\/www.sysfinpro.com\/index.php\/category\/erp\/\" rel=\"category tag\">ERP<\/a> <a href=\"https:\/\/www.sysfinpro.com\/index.php\/category\/erp\/200evo\/\" rel=\"category tag\">Sage 200 Evolution<\/a>","qubely_excerpt":"What to do when you get the Sage 200 Evolution company upgrade error &#8220;Error refreshing all functions! Could not find the object &#8216;_efntuTaxAmount&#8217; or you do not have permission&#8220; This error may especially occur when upgrading from Sage 200 Evolution version 9.20 to version 10 using SQL2014. Please note &#8211; It is recommended that this&hellip;","featured_image_urls_v2":{"full":"","thumbnail":"","medium":"","medium_large":"","large":"","1536x1536":"","2048x2048":"","qubely_landscape":"","qubely_portrait":"","qubely_thumbnail":""},"post_excerpt_stackable_v2":"<p>What to do when you get the Sage 200 Evolution company upgrade error &#8220;Error refreshing all functions! Could not find the object &#8216;_efntuTaxAmount&#8217; or you do not have permission&#8220; This error may especially occur when upgrading from Sage 200 Evolution version 9.20 to version 10 using SQL2014. Please note &#8211; It is recommended that this query should preferably be fixed by a professional Sage 200 Evolution support consultant who is familiar on how to compile SQL queries, to correct the problem. Apply the following steps to resolve this query: 1. Restore the backup that was made before the upgrade was&hellip;<\/p>\n","category_list_v2":"<a href=\"https:\/\/www.sysfinpro.com\/index.php\/category\/erp\/\" rel=\"category tag\">ERP<\/a>, <a href=\"https:\/\/www.sysfinpro.com\/index.php\/category\/erp\/200evo\/\" rel=\"category tag\">Sage 200 Evolution<\/a>","author_info_v2":{"name":"Administrator","url":"https:\/\/www.sysfinpro.com\/index.php\/author\/administrator\/"},"comments_num_v2":"0 comments","yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>KB20230606\/01: Sage 200 Evolution Tip &amp; Trick - Company upgrade error &quot;Error refreshing all functions! Could not find the object &#039;_efntu TaxAmount&#039; or you do not have permission&quot;. - SysFinPro (Pty) Ltd.<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.sysfinpro.com\/index.php\/kb20210929-01-sage-200-evolution-tip-trick-upgrade-error-refreshing-all-functions\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"KB20230606\/01: Sage 200 Evolution Tip &amp; Trick - Company upgrade error &quot;Error refreshing all functions! Could not find the object &#039;_efntu TaxAmount&#039; or you do not have permission&quot;. - SysFinPro (Pty) Ltd.\" \/>\n<meta property=\"og:description\" content=\"What to do when you get the Sage 200 Evolution company upgrade error &#8220;Error refreshing all functions! Could not find the object &#8216;_efntuTaxAmount&#8217; or you do not have permission&#8220; This error may especially occur when upgrading from Sage 200 Evolution version 9.20 to version 10 using SQL2014. Please note &#8211; It is recommended that this [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sysfinpro.com\/index.php\/kb20210929-01-sage-200-evolution-tip-trick-upgrade-error-refreshing-all-functions\/\" \/>\n<meta property=\"og:site_name\" content=\"SysFinPro (Pty) Ltd.\" \/>\n<meta property=\"article:published_time\" content=\"2023-06-05T11:53:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-06-05T12:18:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.sysfinpro.com\/wp-content\/uploads\/2022\/09\/Sage-200-Evolution.png\" \/>\n<meta name=\"author\" content=\"Administrator\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Administrator\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.sysfinpro.com\/index.php\/kb20210929-01-sage-200-evolution-tip-trick-upgrade-error-refreshing-all-functions\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.sysfinpro.com\/index.php\/kb20210929-01-sage-200-evolution-tip-trick-upgrade-error-refreshing-all-functions\/\"},\"author\":{\"name\":\"Administrator\",\"@id\":\"https:\/\/www.sysfinpro.com\/#\/schema\/person\/e9c355b643a3a901895d620d4bff39b3\"},\"headline\":\"KB20230606\/01: Sage 200 Evolution Tip &#038; Trick &#8211; Company upgrade error &#8220;Error refreshing all functions! Could not find the object &#8216;_efntu TaxAmount&#8217; or you do not have permission&#8221;.\",\"datePublished\":\"2023-06-05T11:53:57+00:00\",\"dateModified\":\"2023-06-05T12:18:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.sysfinpro.com\/index.php\/kb20210929-01-sage-200-evolution-tip-trick-upgrade-error-refreshing-all-functions\/\"},\"wordCount\":235,\"publisher\":{\"@id\":\"https:\/\/www.sysfinpro.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.sysfinpro.com\/index.php\/kb20210929-01-sage-200-evolution-tip-trick-upgrade-error-refreshing-all-functions\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.sysfinpro.com\/wp-content\/uploads\/2022\/09\/Sage-200-Evolution.png\",\"articleSection\":[\"ERP\",\"Sage 200 Evolution\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.sysfinpro.com\/index.php\/kb20210929-01-sage-200-evolution-tip-trick-upgrade-error-refreshing-all-functions\/\",\"url\":\"https:\/\/www.sysfinpro.com\/index.php\/kb20210929-01-sage-200-evolution-tip-trick-upgrade-error-refreshing-all-functions\/\",\"name\":\"KB20230606\/01: Sage 200 Evolution Tip & Trick - Company upgrade error \\\"Error refreshing all functions! Could not find the object '_efntu TaxAmount' or you do not have permission\\\". - SysFinPro (Pty) Ltd.\",\"isPartOf\":{\"@id\":\"https:\/\/www.sysfinpro.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.sysfinpro.com\/index.php\/kb20210929-01-sage-200-evolution-tip-trick-upgrade-error-refreshing-all-functions\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.sysfinpro.com\/index.php\/kb20210929-01-sage-200-evolution-tip-trick-upgrade-error-refreshing-all-functions\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.sysfinpro.com\/wp-content\/uploads\/2022\/09\/Sage-200-Evolution.png\",\"datePublished\":\"2023-06-05T11:53:57+00:00\",\"dateModified\":\"2023-06-05T12:18:28+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.sysfinpro.com\/index.php\/kb20210929-01-sage-200-evolution-tip-trick-upgrade-error-refreshing-all-functions\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.sysfinpro.com\/index.php\/kb20210929-01-sage-200-evolution-tip-trick-upgrade-error-refreshing-all-functions\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sysfinpro.com\/index.php\/kb20210929-01-sage-200-evolution-tip-trick-upgrade-error-refreshing-all-functions\/#primaryimage\",\"url\":\"https:\/\/www.sysfinpro.com\/wp-content\/uploads\/2022\/09\/Sage-200-Evolution.png\",\"contentUrl\":\"https:\/\/www.sysfinpro.com\/wp-content\/uploads\/2022\/09\/Sage-200-Evolution.png\",\"width\":1024,\"height\":257},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.sysfinpro.com\/index.php\/kb20210929-01-sage-200-evolution-tip-trick-upgrade-error-refreshing-all-functions\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.sysfinpro.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"KB20230606\/01: Sage 200 Evolution Tip &#038; Trick &#8211; Company upgrade error &#8220;Error refreshing all functions! Could not find the object &#8216;_efntu TaxAmount&#8217; or you do not have permission&#8221;.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.sysfinpro.com\/#website\",\"url\":\"https:\/\/www.sysfinpro.com\/\",\"name\":\"SysFinPro Solutions\",\"description\":\"Sage ERP and Payroll &amp; HR solutions\",\"publisher\":{\"@id\":\"https:\/\/www.sysfinpro.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.sysfinpro.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.sysfinpro.com\/#organization\",\"name\":\"SysFinPro\",\"url\":\"https:\/\/www.sysfinpro.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sysfinpro.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.sysfinpro.com\/wp-content\/uploads\/2020\/05\/Sysfinpro-logo.png\",\"contentUrl\":\"https:\/\/www.sysfinpro.com\/wp-content\/uploads\/2020\/05\/Sysfinpro-logo.png\",\"width\":427,\"height\":377,\"caption\":\"SysFinPro\"},\"image\":{\"@id\":\"https:\/\/www.sysfinpro.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.linkedin.com\/company\/9342719\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.sysfinpro.com\/#\/schema\/person\/e9c355b643a3a901895d620d4bff39b3\",\"name\":\"Administrator\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sysfinpro.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/af26c93e6f71cabdccea3ba919668da25c1962768c1ffa8817794c6407826d27?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/af26c93e6f71cabdccea3ba919668da25c1962768c1ffa8817794c6407826d27?s=96&d=mm&r=g\",\"caption\":\"Administrator\"},\"url\":\"https:\/\/www.sysfinpro.com\/index.php\/author\/administrator\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"KB20230606\/01: Sage 200 Evolution Tip & Trick - Company upgrade error \"Error refreshing all functions! Could not find the object '_efntu TaxAmount' or you do not have permission\". - SysFinPro (Pty) Ltd.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.sysfinpro.com\/index.php\/kb20210929-01-sage-200-evolution-tip-trick-upgrade-error-refreshing-all-functions\/","og_locale":"en_US","og_type":"article","og_title":"KB20230606\/01: Sage 200 Evolution Tip & Trick - Company upgrade error \"Error refreshing all functions! Could not find the object '_efntu TaxAmount' or you do not have permission\". - SysFinPro (Pty) Ltd.","og_description":"What to do when you get the Sage 200 Evolution company upgrade error &#8220;Error refreshing all functions! Could not find the object &#8216;_efntuTaxAmount&#8217; or you do not have permission&#8220; This error may especially occur when upgrading from Sage 200 Evolution version 9.20 to version 10 using SQL2014. Please note &#8211; It is recommended that this [&hellip;]","og_url":"https:\/\/www.sysfinpro.com\/index.php\/kb20210929-01-sage-200-evolution-tip-trick-upgrade-error-refreshing-all-functions\/","og_site_name":"SysFinPro (Pty) Ltd.","article_published_time":"2023-06-05T11:53:57+00:00","article_modified_time":"2023-06-05T12:18:28+00:00","og_image":[{"url":"https:\/\/www.sysfinpro.com\/wp-content\/uploads\/2022\/09\/Sage-200-Evolution.png","type":"","width":"","height":""}],"author":"Administrator","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Administrator","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.sysfinpro.com\/index.php\/kb20210929-01-sage-200-evolution-tip-trick-upgrade-error-refreshing-all-functions\/#article","isPartOf":{"@id":"https:\/\/www.sysfinpro.com\/index.php\/kb20210929-01-sage-200-evolution-tip-trick-upgrade-error-refreshing-all-functions\/"},"author":{"name":"Administrator","@id":"https:\/\/www.sysfinpro.com\/#\/schema\/person\/e9c355b643a3a901895d620d4bff39b3"},"headline":"KB20230606\/01: Sage 200 Evolution Tip &#038; Trick &#8211; Company upgrade error &#8220;Error refreshing all functions! Could not find the object &#8216;_efntu TaxAmount&#8217; or you do not have permission&#8221;.","datePublished":"2023-06-05T11:53:57+00:00","dateModified":"2023-06-05T12:18:28+00:00","mainEntityOfPage":{"@id":"https:\/\/www.sysfinpro.com\/index.php\/kb20210929-01-sage-200-evolution-tip-trick-upgrade-error-refreshing-all-functions\/"},"wordCount":235,"publisher":{"@id":"https:\/\/www.sysfinpro.com\/#organization"},"image":{"@id":"https:\/\/www.sysfinpro.com\/index.php\/kb20210929-01-sage-200-evolution-tip-trick-upgrade-error-refreshing-all-functions\/#primaryimage"},"thumbnailUrl":"https:\/\/www.sysfinpro.com\/wp-content\/uploads\/2022\/09\/Sage-200-Evolution.png","articleSection":["ERP","Sage 200 Evolution"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.sysfinpro.com\/index.php\/kb20210929-01-sage-200-evolution-tip-trick-upgrade-error-refreshing-all-functions\/","url":"https:\/\/www.sysfinpro.com\/index.php\/kb20210929-01-sage-200-evolution-tip-trick-upgrade-error-refreshing-all-functions\/","name":"KB20230606\/01: Sage 200 Evolution Tip & Trick - Company upgrade error \"Error refreshing all functions! Could not find the object '_efntu TaxAmount' or you do not have permission\". - SysFinPro (Pty) Ltd.","isPartOf":{"@id":"https:\/\/www.sysfinpro.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.sysfinpro.com\/index.php\/kb20210929-01-sage-200-evolution-tip-trick-upgrade-error-refreshing-all-functions\/#primaryimage"},"image":{"@id":"https:\/\/www.sysfinpro.com\/index.php\/kb20210929-01-sage-200-evolution-tip-trick-upgrade-error-refreshing-all-functions\/#primaryimage"},"thumbnailUrl":"https:\/\/www.sysfinpro.com\/wp-content\/uploads\/2022\/09\/Sage-200-Evolution.png","datePublished":"2023-06-05T11:53:57+00:00","dateModified":"2023-06-05T12:18:28+00:00","breadcrumb":{"@id":"https:\/\/www.sysfinpro.com\/index.php\/kb20210929-01-sage-200-evolution-tip-trick-upgrade-error-refreshing-all-functions\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sysfinpro.com\/index.php\/kb20210929-01-sage-200-evolution-tip-trick-upgrade-error-refreshing-all-functions\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sysfinpro.com\/index.php\/kb20210929-01-sage-200-evolution-tip-trick-upgrade-error-refreshing-all-functions\/#primaryimage","url":"https:\/\/www.sysfinpro.com\/wp-content\/uploads\/2022\/09\/Sage-200-Evolution.png","contentUrl":"https:\/\/www.sysfinpro.com\/wp-content\/uploads\/2022\/09\/Sage-200-Evolution.png","width":1024,"height":257},{"@type":"BreadcrumbList","@id":"https:\/\/www.sysfinpro.com\/index.php\/kb20210929-01-sage-200-evolution-tip-trick-upgrade-error-refreshing-all-functions\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.sysfinpro.com\/"},{"@type":"ListItem","position":2,"name":"KB20230606\/01: Sage 200 Evolution Tip &#038; Trick &#8211; Company upgrade error &#8220;Error refreshing all functions! Could not find the object &#8216;_efntu TaxAmount&#8217; or you do not have permission&#8221;."}]},{"@type":"WebSite","@id":"https:\/\/www.sysfinpro.com\/#website","url":"https:\/\/www.sysfinpro.com\/","name":"SysFinPro Solutions","description":"Sage ERP and Payroll &amp; HR solutions","publisher":{"@id":"https:\/\/www.sysfinpro.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.sysfinpro.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.sysfinpro.com\/#organization","name":"SysFinPro","url":"https:\/\/www.sysfinpro.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sysfinpro.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.sysfinpro.com\/wp-content\/uploads\/2020\/05\/Sysfinpro-logo.png","contentUrl":"https:\/\/www.sysfinpro.com\/wp-content\/uploads\/2020\/05\/Sysfinpro-logo.png","width":427,"height":377,"caption":"SysFinPro"},"image":{"@id":"https:\/\/www.sysfinpro.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/9342719"]},{"@type":"Person","@id":"https:\/\/www.sysfinpro.com\/#\/schema\/person\/e9c355b643a3a901895d620d4bff39b3","name":"Administrator","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sysfinpro.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/af26c93e6f71cabdccea3ba919668da25c1962768c1ffa8817794c6407826d27?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/af26c93e6f71cabdccea3ba919668da25c1962768c1ffa8817794c6407826d27?s=96&d=mm&r=g","caption":"Administrator"},"url":"https:\/\/www.sysfinpro.com\/index.php\/author\/administrator\/"}]}},"_links":{"self":[{"href":"https:\/\/www.sysfinpro.com\/index.php\/wp-json\/wp\/v2\/posts\/7552","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.sysfinpro.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.sysfinpro.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.sysfinpro.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sysfinpro.com\/index.php\/wp-json\/wp\/v2\/comments?post=7552"}],"version-history":[{"count":2,"href":"https:\/\/www.sysfinpro.com\/index.php\/wp-json\/wp\/v2\/posts\/7552\/revisions"}],"predecessor-version":[{"id":11757,"href":"https:\/\/www.sysfinpro.com\/index.php\/wp-json\/wp\/v2\/posts\/7552\/revisions\/11757"}],"wp:attachment":[{"href":"https:\/\/www.sysfinpro.com\/index.php\/wp-json\/wp\/v2\/media?parent=7552"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.sysfinpro.com\/index.php\/wp-json\/wp\/v2\/categories?post=7552"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.sysfinpro.com\/index.php\/wp-json\/wp\/v2\/tags?post=7552"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}