{"id":22771,"date":"2019-09-30T09:50:12","date_gmt":"2019-09-30T09:50:12","guid":{"rendered":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/?p=22771"},"modified":"2019-09-30T09:50:14","modified_gmt":"2019-09-30T09:50:14","slug":"adding-a-pipeline-graphic-to-list-using-net-api-in-sage-crm","status":"publish","type":"post","link":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/2019\/09\/30\/adding-a-pipeline-graphic-to-list-using-net-api-in-sage-crm\/","title":{"rendered":"Adding a Pipeline graphic to List using .Net API in Sage CRM"},"content":{"rendered":"\n<p><a href=\"http:\/\/www.sagesoftware.co.in\/product-sage-crm\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"Sage CRM (opens in a new tab)\">Sage CRM<\/a> has proved to be very much flexible when it comes to accommodating customizations as per the business needs. Recently we came across a requirement, where the Client was not only interested in getting the access to the records assigned to a particular user but also in getting a proper view of all the records which are created by the user.<\/p>\n\n\n\n<p><strong>New Stuff:<\/strong>S<a rel=\"noreferrer noopener\" aria-label=\"ecurity Policies applied to Library entity with release of Sage CRM 2019 R2 (opens in a new tab)\" href=\"https:\/\/www.greytrix.com\/blogs\/sagecrm\/2019\/09\/26\/security-policies-applied-to-library-entity-with-release-of-sage-crm-2019-r2\/\" target=\"_blank\">ecurity Policies applied to Library entity with release of Sage CRM 2019 R2<\/a><\/p>\n\n\n\n<p>Just like Team CRM helps the Team Managers to get a view of all the records their subordinates or team members are working on (assigned to); our Client had a requirement of one such\nlist wherein the user would be able to view all the records which are created by them along with the graphical pipeline. This indeed helped them to track the current status of the records with an ease.<\/p>\n\n\n\n<p>Since we do not have any option other than making the user navigate to the search screen and look for the respective record; we thought of creating a Custom list in <a href=\"https:\/\/www.greytrix.com\/product\/crm-development\/sage-crm\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"Sage CRM (opens in a new tab)\">Sage CRM<\/a>. But in order to display the pipeline against these custom list you need to add below code under the standard custom list code itself &#8211; <\/p>\n\n\n\n<p>&lt;Snippet&gt;<\/p>\n\n\n\n<p>public override void BuildContents()<\/p>\n\n\n\n<p>&nbsp;       {<\/p>\n\n\n\n<p>&nbsp;           try<\/p>\n\n\n\n<p>&nbsp;           {<\/p>\n\n\n\n<p>&nbsp;    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;AddContent(HTML.Form());<\/p>\n\n\n\n<p>&nbsp;               GetTabs(&#8220;User&#8221;);<\/p>\n\n\n\n<p>&nbsp;               if (CurrentUser[Sage.UserOptions.CasePipeline] == &#8220;Y&#8221;)<\/p>\n\n\n\n<p>&nbsp;               {<\/p>\n\n\n\n<p>&nbsp;                   PipelineGraphicBlock myPipe = new PipelineGraphicBlock();<\/p>\n\n\n\n<p>&nbsp;                   int intUserID = CurrentUser.UserId;<\/p>\n\n\n\n<p>&nbsp;                   string sWhere = &#8220;Case_Deleted IS NULL AND Case_CreatedBy=&#8221; + intUserID;<\/p>\n\n\n\n<p>&nbsp;                   string stageArg = Dispatch.EitherField(&#8220;case_stage&#8221;);<\/p>\n\n\n\n<p>&nbsp;                   if (stageArg == &#8220;&#8221; || stageArg == null || stageArg == &#8220;undefined&#8221; || stageArg == &#8220;sagecrm_code_all&#8221;) stageArg = &#8220;0&#8221;;<\/p>\n\n\n\n<p>&nbsp;                   string statusArg = Dispatch.EitherField(&#8220;case_status&#8221;);<\/p>\n\n\n\n<p>&nbsp;                   if (statusArg == &#8220;&#8221; || statusArg == null || statusArg == &#8220;undefined&#8221; || statusArg == &#8220;sagecrm_code_all&#8221;) statusArg = &#8220;0&#8221;;\n                  <\/p>\n\n\n\n<p>&nbsp;                   if (stageArg != &#8220;0&#8221;)<\/p>\n\n\n\n<p>&nbsp;                   {<\/p>\n\n\n\n<p>&nbsp;                       sWhere += &#8221; AND case_stage='&#8221; + stageArg + &#8220;&#8216;&#8221;;<\/p>\n\n\n\n<p>&nbsp;                   }<\/p>\n\n\n\n<p>&nbsp;                   if (statusArg != &#8220;0&#8221;)<\/p>\n\n\n\n<p>&nbsp;                   {<\/p>\n\n\n\n<p>&nbsp;                    sWhere += &#8221; AND case_status='&#8221; + statusArg + &#8220;&#8216;&#8221;; }<\/p>\n\n\n\n<p>&nbsp;                    myPipe.PipelineStyle(PipelineStyles.Shape, &#8220;Circle&#8221;);<\/p>\n\n\n\n<p>&nbsp;                   myPipe.PipelineStyle(PipelineStyles.UseGradient, &#8220;False&#8221;);<\/p>\n\n\n\n<p>&nbsp;                   myPipe.PipelineStyle(PipelineStyles.Animated, &#8220;False&#8221;);<\/p>\n\n\n\n<p>&nbsp;                   myPipe.PipelineStyle(PipelineStyles.SelectedWidth, &#8220;10&#8221;);<\/p>\n\n\n\n<p>&nbsp;                   myPipe.PipelineStyle(PipelineStyles.SelectedHeight, &#8220;10&#8221;);<\/p>\n\n\n\n<p>&nbsp;                   myPipe.PipelineStyle(PipelineStyles.PipeWidth, &#8220;40&#8221;);<\/p>\n\n\n\n<p>&nbsp;                   myPipe.PipelineStyle(PipelineStyles.PipeHeight, &#8220;10&#8221;);<\/p>\n\n\n\n<p>&nbsp;                   myPipe.PipelineStyle(PipelineStyles.ShowLegend, &#8220;True&#8221;);<\/p>\n\n\n\n<p>&nbsp;                   string strSQL = &#8220;select case_stage, count(*) as t from Cases with (nolock) where &#8221; + sWhere + &#8221; group by case_stage&#8221;;<\/p>\n\n\n\n<p>&nbsp;                   QuerySelect queryObj = new QuerySelect();<\/p>\n\n\n\n<p>&nbsp;                   queryObj.SQLCommand = strSQL;<\/p>\n\n\n\n<p>&nbsp;                   queryObj.ExecuteReader();<\/p>\n\n\n\n<p>&nbsp;                   string strStage = &#8220;&#8221;, strSectionScript = &#8220;&#8221;, strOrgStage = &#8220;&#8221;;<\/p>\n\n\n\n<p>&nbsp;                   int iSeleted = 0;<\/p>\n\n\n\n<p>&nbsp;                   if(!queryObj.Eof())<\/p>\n\n\n\n<p>&nbsp;                   {<\/p>\n\n\n\n<p>&nbsp;                       while (!queryObj.Eof())<\/p>\n\n\n\n<p>&nbsp;                       {<\/p>\n\n\n\n<p>&nbsp;                           if (queryObj.FieldValue(&#8220;t&#8221;) != &#8220;0&#8221;)<\/p>\n\n\n\n<p>&nbsp;                           {<\/p>\n\n\n\n<p>&nbsp;                               strOrgStage = queryObj.FieldValue(&#8220;case_stage&#8221;);<\/p>\n\n\n\n<p>&nbsp;                               strStage = Metadata.GetTranslation(&#8220;case_stage&#8221;, strOrgStage);<\/p>\n\n\n\n<p>&nbsp;                               if (strOrgStage == statusArg)<\/p>\n\n\n\n<p>&nbsp;                               {<\/p>\n\n\n\n<p>&nbsp;        strSectionScript = &#8220;javascript:document.EntryForm.case_stage.selectedIndex=(document.EntryForm.case_stage.length-2) ;document.EntryForm.submit();&#8221;;<\/p>\n\n\n\n<p>&nbsp;                                   myPipe.AddPipeEntry(strStage, System.Convert.ToInt32(queryObj.FieldValue(&#8220;t&#8221;)), strStage + &#8220;: &#8221; + queryObj.FieldValue(&#8220;t&#8221;),\nstrSectionScript);<\/p>\n\n\n\n<p>&nbsp;                                   myPipe.Selected = iSeleted;<\/p>\n\n\n\n<p>&nbsp;                               }<\/p>\n\n\n\n<p>&nbsp;                               else<\/p>\n\n\n\n<p>&nbsp;                               {<\/p>\n\n\n\n<p>&nbsp;                                   strSectionScript = &#8220;javascript:document.getElementById(&#8216;case_stage&#8217;).options[SageCRM.webObject.GetDropDownIndexByValue(document.getElementById(&#8216;case_stage&#8217;),'&#8221;;<\/p>\n\n\n\n<p>&nbsp;                                   strSectionScript = strSectionScript + strOrgStage + &#8220;&#8216;)].selected = true;document.EntryForm.submit();&#8221;;<\/p>\n\n\n\n<p>&nbsp;                                   myPipe.AddPipeEntry(strStage, System.Convert.ToInt32(queryObj.FieldValue(&#8220;t&#8221;)), strStage + &#8220;: &#8221; + queryObj.FieldValue(&#8220;t&#8221;),\nstrSectionScript);<\/p>\n\n\n\n<p>&nbsp;                               }<\/p>\n\n\n\n<p>&nbsp;                           }<\/p>\n\n\n\n<p>&nbsp;                           queryObj.Next();<\/p>\n\n\n\n<p>&nbsp;                           iSeleted++;<\/p>\n\n\n\n<p>&nbsp;                       }<\/p>\n\n\n\n<p>&nbsp;                       myPipe.DisplayForm = false;<\/p>\n\n\n\n<p>&nbsp;                       HTMLString htmlPipe = new HTMLString();<\/p>\n\n\n\n<p>&nbsp;                       htmlPipe.Html = myPipe.Execute();<\/p>\n\n\n\n<p>&nbsp;                       string strhtmlPipe = htmlPipe.ToHtml();<\/p>\n\n\n\n<p>&nbsp;                       AddContent(strhtmlPipe);<\/p>\n\n\n\n<p>&nbsp;                   }                    <\/p>\n\n\n\n<p>&nbsp;               } <\/p>\n\n\n\n<p>&nbsp;               base.BuildContents();<\/p>\n\n\n\n<p>&nbsp;           }<\/p>\n\n\n\n<p>&nbsp;           catch (Exception e)<\/p>\n\n\n\n<p>&nbsp;           {                <\/p>\n\n\n\n<p>&nbsp;               AddContent(&#8220;Error Description &#8220;+e.Message);<\/p>\n\n\n\n<p>&nbsp;           }<\/p>\n\n\n\n<p>&nbsp;           \/\/throw new System.NotImplementedException();<\/p>\n\n\n\n<p>&nbsp;       }<\/p>\n\n\n\n<p> &lt;\/Snippet&gt; <\/p>\n\n\n\n<p>After adding above code, the list as well as the pipeline will be filtered out based on the created by user\u2019s condition in CRM. Also the pipeline will only be enabled if under User preferences &#8216;Show Cases Pipeline&#8217; <em>(for above example)<\/em> is set as Yes.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><p><a href=\"https:\/\/www.greytrix.com\/blogs\/sagecrm\/wp-content\/uploads\/2019\/09\/Graphic-Pipeline-1024x400.jpg\" target=\"_blank\" rel=\"noopener noreferrer\"><img decoding=\"async\" class=\"size-full\" style=\"border: 1px solid #A9A9A9; padding: 2px; margin: 2px;\" src=\"https:\/\/www.greytrix.com\/blogs\/sagecrm\/wp-content\/uploads\/2019\/09\/Graphic-Pipeline-1024x400.jpg\" alt=\"Graphic Pipeline designed for Custom List\">\n<\/a><figcaption><center>Graphic Pipeline designed for Custom List<\/center><\/figcaption><\/p><\/figure>\n\n\n\n<p><span style=\"font-size: Medium;\"><strong>About Us<\/strong><\/span><\/p>\n\n\n\n<p>Greytrix \u2013 a globally recognized and one of the oldest Sage Development Partners is a one-stop solution provider for Sage ERP and Sage CRM organizational needs. Being acknowledged and rewarded for multi-man years of experience and expertise, we bring complete end-to-end assistance for your technical consultations, product customizations, data migration, system integrations, third-party add-on development, and implementation competence.<\/p>\n\n\n\n<p>Greytrix\u00a0has some unique integration solutions developed for Sage CRM with Sage ERPs namely\u00a0Sage X3,\u00a0Sage Intacct,\u00a0Sage 100,\u00a0Sage 500,\u00a0and\u00a0Sage 300. We also offer best-in-class\u00a0Sage ERP\u00a0and\u00a0Sage CRM\u00a0customization and development services\u00a0to\u00a0Business\u00a0Partners,\u00a0End\u00a0Users, and Sage PSG worldwide. Greytrix\u00a0helps in\u00a0the migration of Sage CRM from\u00a0Salesforce | ACT! | SalesLogix | Goldmine | Sugar CRM | Maximizer. Our Sage CRM Product Suite includes\u00a0add-ons like\u00a0 Greytrix Business Manager,\u00a0Sage CRM Project Manager,\u00a0Sage CRM Resource Planner,\u00a0Sage CRM Contract Manager,\u00a0Sage CRM Event Manager,\u00a0Sage CRM Budget Planner,\u00a0Gmail Integration,\u00a0Sage CRM Mobile Service Signature,\u00a0Sage CRM CTI Framework.<gwmw style=\"display:none;\"><gwmw style=\"display:none;\"><gwmw style=\"display:none;\"><gwmw style=\"display:none;\"><\/gwmw><\/gwmw><gwmw style=\"display:none;\"><\/gwmw><\/gwmw><\/gwmw><\/p>\n\n\n\n<p>Greytrix is a recognized\u00a0Sage Champion Partner\u00a0for GUMU&#x2122; Sage X3 \u2013 Sage CRM integration listed on\u00a0Sage Marketplace and Sage CRM \u2013 Sage Intacct integration listed on Sage Intacct Marketplace. The GUMU&#x2122; Cloud framework by Greytrix forms the backbone of cloud integrations that are managed in real-time for the processing and execution of application programs at the click of a button.<gwmw style=\"display:none;\"><gwmw style=\"display:none;\"><gwmw style=\"display:none;\"><gwmw style=\"display:none;\"><\/gwmw><\/gwmw><gwmw style=\"display:none;\"><\/gwmw><\/gwmw><\/gwmw><\/p>\n\n\n\n<p>For more information on our integration solutions, please contact us at&nbsp;<a href=\"mailto:sage@greytrix.com\">sage@greytrix.com<\/a>. We will be glad to assist you.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Sage CRM has proved to be very much flexible when it comes to accommodating customizations as per the business needs. Recently we came across a requirement, where the Client was not only interested in getting the access to the records assigned to a particular user but also in getting a proper view of all the\u2026 <span class=\"read-more\"><a href=\"https:\/\/www.greytrix.com\/blogs\/sagecrm\/2019\/09\/30\/adding-a-pipeline-graphic-to-list-using-net-api-in-sage-crm\/\">Read More &raquo;<\/a><\/span><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,92,98,169,219,220,255,287,310,332,334,335],"tags":[446,3923,868,3924,3925,1775],"class_list":["post-22771","post","type-post","status-publish","format-standard","hentry","category-net-api","category-custom-entity","category-customization","category-grids","category-list","category-lists","category-my-crm","category-pipeline-sage-crm","category-records","category-sage-crm","category-sage-crm-2018","category-sage-crm-2018-crm72","tag-net-api","tag-adding-a-pipeline-graphic-to-list","tag-custom-list","tag-custom-pipeline","tag-list-using-net-api","tag-pipeline"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Adding a Pipeline graphic to List using .Net API in Sage CRM - Sage CRM \u2013 Tips, Tricks and Components<\/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.greytrix.com\/blogs\/sagecrm\/2019\/09\/30\/adding-a-pipeline-graphic-to-list-using-net-api-in-sage-crm\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Adding a Pipeline graphic to List using .Net API in Sage CRM - Sage CRM \u2013 Tips, Tricks and Components\" \/>\n<meta property=\"og:description\" content=\"Sage CRM has proved to be very much flexible when it comes to accommodating customizations as per the business needs. Recently we came across a requirement, where the Client was not only interested in getting the access to the records assigned to a particular user but also in getting a proper view of all the\u2026 Read More &raquo;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.greytrix.com\/blogs\/sagecrm\/2019\/09\/30\/adding-a-pipeline-graphic-to-list-using-net-api-in-sage-crm\/\" \/>\n<meta property=\"og:site_name\" content=\"Sage CRM \u2013 Tips, Tricks and Components\" \/>\n<meta property=\"article:published_time\" content=\"2019-09-30T09:50:12+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-09-30T09:50:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.greytrix.com\/blogs\/sagecrm\/wp-content\/uploads\/2019\/09\/Graphic-Pipeline-1024x400.jpg\" \/>\n<meta name=\"author\" content=\"Greytrix\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Greytrix\" \/>\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\":\"WebPage\",\"@id\":\"https:\/\/www.greytrix.com\/blogs\/sagecrm\/2019\/09\/30\/adding-a-pipeline-graphic-to-list-using-net-api-in-sage-crm\/\",\"url\":\"https:\/\/www.greytrix.com\/blogs\/sagecrm\/2019\/09\/30\/adding-a-pipeline-graphic-to-list-using-net-api-in-sage-crm\/\",\"name\":\"Adding a Pipeline graphic to List using .Net API in Sage CRM - Sage CRM \u2013 Tips, Tricks and Components\",\"isPartOf\":{\"@id\":\"https:\/\/www.greytrix.com\/blogs\/sagecrm\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.greytrix.com\/blogs\/sagecrm\/2019\/09\/30\/adding-a-pipeline-graphic-to-list-using-net-api-in-sage-crm\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.greytrix.com\/blogs\/sagecrm\/2019\/09\/30\/adding-a-pipeline-graphic-to-list-using-net-api-in-sage-crm\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.greytrix.com\/blogs\/sagecrm\/wp-content\/uploads\/2019\/09\/Graphic-Pipeline-1024x400.jpg\",\"datePublished\":\"2019-09-30T09:50:12+00:00\",\"dateModified\":\"2019-09-30T09:50:14+00:00\",\"author\":{\"@id\":\"https:\/\/www.greytrix.com\/blogs\/sagecrm\/#\/schema\/person\/402abe5da07cd7f9bfeb6acfa41fae39\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.greytrix.com\/blogs\/sagecrm\/2019\/09\/30\/adding-a-pipeline-graphic-to-list-using-net-api-in-sage-crm\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.greytrix.com\/blogs\/sagecrm\/2019\/09\/30\/adding-a-pipeline-graphic-to-list-using-net-api-in-sage-crm\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.greytrix.com\/blogs\/sagecrm\/2019\/09\/30\/adding-a-pipeline-graphic-to-list-using-net-api-in-sage-crm\/#primaryimage\",\"url\":\"https:\/\/www.greytrix.com\/blogs\/sagecrm\/wp-content\/uploads\/2019\/09\/Graphic-Pipeline-1024x400.jpg\",\"contentUrl\":\"https:\/\/www.greytrix.com\/blogs\/sagecrm\/wp-content\/uploads\/2019\/09\/Graphic-Pipeline-1024x400.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.greytrix.com\/blogs\/sagecrm\/2019\/09\/30\/adding-a-pipeline-graphic-to-list-using-net-api-in-sage-crm\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.greytrix.com\/blogs\/sagecrm\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Adding a Pipeline graphic to List using .Net API in Sage CRM\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.greytrix.com\/blogs\/sagecrm\/#website\",\"url\":\"https:\/\/www.greytrix.com\/blogs\/sagecrm\/\",\"name\":\"Sage CRM \u2013 Tips, Tricks and Components\",\"description\":\"Explore the possibilities with Sage CRM insights through our comprehensive blogs. As a leading Sage partner, Greytrix helps businesses maximize their Sage CRM potential with its rich expertise and immense knowledge. Here, you will find blogs that feature expert advice, tips &amp; tricks, best practices, and comprehensive guides on customizing and configuring Sage CRM for your business. Stay informed with our regular updates and expert insights!\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.greytrix.com\/blogs\/sagecrm\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.greytrix.com\/blogs\/sagecrm\/#\/schema\/person\/402abe5da07cd7f9bfeb6acfa41fae39\",\"name\":\"Greytrix\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.greytrix.com\/blogs\/sagecrm\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/3cdb553d6ca07df0e407d5e092f2410d163e0fd40b27734b345b04c8f0786969?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/3cdb553d6ca07df0e407d5e092f2410d163e0fd40b27734b345b04c8f0786969?s=96&d=mm&r=g\",\"caption\":\"Greytrix\"},\"url\":\"https:\/\/www.greytrix.com\/blogs\/sagecrm\/author\/greytrix\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Adding a Pipeline graphic to List using .Net API in Sage CRM - Sage CRM \u2013 Tips, Tricks and Components","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.greytrix.com\/blogs\/sagecrm\/2019\/09\/30\/adding-a-pipeline-graphic-to-list-using-net-api-in-sage-crm\/","og_locale":"en_US","og_type":"article","og_title":"Adding a Pipeline graphic to List using .Net API in Sage CRM - Sage CRM \u2013 Tips, Tricks and Components","og_description":"Sage CRM has proved to be very much flexible when it comes to accommodating customizations as per the business needs. Recently we came across a requirement, where the Client was not only interested in getting the access to the records assigned to a particular user but also in getting a proper view of all the\u2026 Read More &raquo;","og_url":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/2019\/09\/30\/adding-a-pipeline-graphic-to-list-using-net-api-in-sage-crm\/","og_site_name":"Sage CRM \u2013 Tips, Tricks and Components","article_published_time":"2019-09-30T09:50:12+00:00","article_modified_time":"2019-09-30T09:50:14+00:00","og_image":[{"url":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/wp-content\/uploads\/2019\/09\/Graphic-Pipeline-1024x400.jpg","type":"","width":"","height":""}],"author":"Greytrix","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Greytrix","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/2019\/09\/30\/adding-a-pipeline-graphic-to-list-using-net-api-in-sage-crm\/","url":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/2019\/09\/30\/adding-a-pipeline-graphic-to-list-using-net-api-in-sage-crm\/","name":"Adding a Pipeline graphic to List using .Net API in Sage CRM - Sage CRM \u2013 Tips, Tricks and Components","isPartOf":{"@id":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/2019\/09\/30\/adding-a-pipeline-graphic-to-list-using-net-api-in-sage-crm\/#primaryimage"},"image":{"@id":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/2019\/09\/30\/adding-a-pipeline-graphic-to-list-using-net-api-in-sage-crm\/#primaryimage"},"thumbnailUrl":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/wp-content\/uploads\/2019\/09\/Graphic-Pipeline-1024x400.jpg","datePublished":"2019-09-30T09:50:12+00:00","dateModified":"2019-09-30T09:50:14+00:00","author":{"@id":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/#\/schema\/person\/402abe5da07cd7f9bfeb6acfa41fae39"},"breadcrumb":{"@id":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/2019\/09\/30\/adding-a-pipeline-graphic-to-list-using-net-api-in-sage-crm\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.greytrix.com\/blogs\/sagecrm\/2019\/09\/30\/adding-a-pipeline-graphic-to-list-using-net-api-in-sage-crm\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/2019\/09\/30\/adding-a-pipeline-graphic-to-list-using-net-api-in-sage-crm\/#primaryimage","url":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/wp-content\/uploads\/2019\/09\/Graphic-Pipeline-1024x400.jpg","contentUrl":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/wp-content\/uploads\/2019\/09\/Graphic-Pipeline-1024x400.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/2019\/09\/30\/adding-a-pipeline-graphic-to-list-using-net-api-in-sage-crm\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/"},{"@type":"ListItem","position":2,"name":"Adding a Pipeline graphic to List using .Net API in Sage CRM"}]},{"@type":"WebSite","@id":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/#website","url":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/","name":"Sage CRM \u2013 Tips, Tricks and Components","description":"Explore the possibilities with Sage CRM insights through our comprehensive blogs. As a leading Sage partner, Greytrix helps businesses maximize their Sage CRM potential with its rich expertise and immense knowledge. Here, you will find blogs that feature expert advice, tips &amp; tricks, best practices, and comprehensive guides on customizing and configuring Sage CRM for your business. Stay informed with our regular updates and expert insights!","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/#\/schema\/person\/402abe5da07cd7f9bfeb6acfa41fae39","name":"Greytrix","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/3cdb553d6ca07df0e407d5e092f2410d163e0fd40b27734b345b04c8f0786969?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3cdb553d6ca07df0e407d5e092f2410d163e0fd40b27734b345b04c8f0786969?s=96&d=mm&r=g","caption":"Greytrix"},"url":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/author\/greytrix\/"}]}},"_links":{"self":[{"href":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/wp-json\/wp\/v2\/posts\/22771","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/wp-json\/wp\/v2\/comments?post=22771"}],"version-history":[{"count":5,"href":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/wp-json\/wp\/v2\/posts\/22771\/revisions"}],"predecessor-version":[{"id":22777,"href":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/wp-json\/wp\/v2\/posts\/22771\/revisions\/22777"}],"wp:attachment":[{"href":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/wp-json\/wp\/v2\/media?parent=22771"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/wp-json\/wp\/v2\/categories?post=22771"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.greytrix.com\/blogs\/sagecrm\/wp-json\/wp\/v2\/tags?post=22771"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}