<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Web Development Archives - Tech Vision - Salesforce Best Practices</title>
	<atom:link href="https://www.tech-vision.us/portfolio_category/web-development/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tech-vision.us/portfolio_category/web-development/</link>
	<description>Salesforce consultancy.</description>
	<lastBuildDate>Mon, 22 Jul 2019 03:48:32 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1.2</generator>
	<item>
		<title>Salesforce KeepTruckin Integration</title>
		<link>https://www.tech-vision.us/portfolio-items/salesforce-keeptruckin-integration/</link>
		
		<dc:creator><![CDATA[Oleksandr Makarenko]]></dc:creator>
		<pubDate>Wed, 10 Jul 2019 03:13:33 +0000</pubDate>
				<guid isPermaLink="false">https://www.tech-vision.us/?post_type=avada_portfolio&#038;p=13447</guid>

					<description><![CDATA[<p>Project Description KeepTrucking integration allows to automatically sync trucks, drivers, mileages and other data between CRM and KeepTruckin server. There is a scheduled updater that will run every day at a set time. The end goal for us was to automatically calculate RPM for all service trips. Since the revenue info was already available  [...]</p>
<p>The post <a href="https://www.tech-vision.us/portfolio-items/salesforce-keeptruckin-integration/">Salesforce KeepTruckin Integration</a> appeared first on <a href="https://www.tech-vision.us">Tech Vision - Salesforce Best Practices</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="fusion-fullwidth fullwidth-box fusion-builder-row-1 nonhundred-percent-fullwidth non-hundred-percent-height-scrolling" style="--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;" ><div class="fusion-builder-row fusion-row"><div class="fusion-layout-column fusion_builder_column fusion-builder-column-0 fusion_builder_column_1_1 1_1 fusion-one-full fusion-column-first fusion-column-last" style="--awb-bg-size:cover;"><div class="fusion-column-wrapper fusion-column-has-shadow fusion-flex-column-wrapper-legacy"><div class="fusion-text fusion-text-1"><h3>Project Description</h3>
<p>KeepTrucking integration allows to automatically sync trucks, drivers, mileages and other data between CRM and KeepTruckin server. There is a scheduled updater that will run every day at a set time. The end goal for us was to automatically calculate RPM for all service trips. Since the revenue info was already available within the CRM, we just had to get mileages for each trip.</p>
<h3>How It Works</h3>
<p>Since KeepTruckin has an open API, we can set up the connector to automatically pull data from the server. On our end, we&#8217;ve created a separate object in SalesForce to store records from KeepTruckin. Within this object we have truck name, driver, start mileage, end mileage and other reference fields that are necessary for two systems to work.</p>
<p>For us to use the API &#8211; we requested an access key from KeepTruckin support. Once done, we are free to set up the connector on our end. To get mileages we need to get all driving events with a type &#8220;On Duty&#8221;.</p>
<p>Here is a sample of the response from KT:</p>
</div><style type="text/css" scopped="scopped">.fusion-syntax-highlighter-1 > .CodeMirror, .fusion-syntax-highlighter-1 > .CodeMirror .CodeMirror-gutters {background-color:var(--awb-color1);}.fusion-syntax-highlighter-1 > .CodeMirror .CodeMirror-gutters { background-color: var(--awb-color2); }.fusion-syntax-highlighter-1 > .CodeMirror .CodeMirror-linenumber { color: var(--awb-color8); }</style><div class="fusion-syntax-highlighter-container fusion-syntax-highlighter-1 fusion-syntax-highlighter-theme-dark" style="opacity:0;margin-top:0px;margin-right:0px;margin-bottom:20px;margin-left:0px;font-size:14px;border-width:1px;border-style:solid;border-color:#e0dede;"><div class="syntax-highlighter-copy-code"><span class="syntax-highlighter-copy-code-title" data-id="fusion_syntax_highlighter_1" style="font-size:14px;">Copy to Clipboard</span></div><label for="fusion_syntax_highlighter_1" class="screen-reader-text">Syntax Highlighter</label><textarea class="fusion-syntax-highlighter-textarea" id="fusion_syntax_highlighter_1" data-readOnly="nocursor" data-lineNumbers="1" data-lineWrapping="" data-theme="oceanic-next" data-mode="text/x-sh">{
            "event": {
              "id": 1106479538,
              "type": "off_duty",
              "notes": "",
              "location": "Fenix, AZ",
              "sds_type": null,
              "start_time": "2019-07-19T05:00:00Z",
              "end_time": "2019-07-19T12:01:36Z"
            }
          },
          {
            "event": {
              "id": 1145138192,
              "type": "on_duty",
              "notes": "",
              "location": "Fenix, AZ",
              "sds_type": null,
              "start_time": "2019-07-19T12:01:36Z",
              "end_time": "2019-07-19T12:10:31Z"
            }
          },
          {
            "event": {
              "id": 1107149431,
              "type": "driving",
              "notes": null,
              "location": "Fenix, AZ",
              "sds_type": null,
              "start_time": "2019-07-19T12:10:31Z",
              "end_time": "2019-07-19T12:20:41Z"
            }
          }</textarea></div><div class="fusion-text fusion-text-2"><p>Once we filter out activity history by the event type, we can then request odometer values and save it in our CRM. The number of &#8216;On Duty&#8217; events always equal to the number of odometer records. Here is a sample:</p>
</div><style type="text/css" scopped="scopped">.fusion-syntax-highlighter-2 > .CodeMirror, .fusion-syntax-highlighter-2 > .CodeMirror .CodeMirror-gutters {background-color:var(--awb-color1);}.fusion-syntax-highlighter-2 > .CodeMirror .CodeMirror-gutters { background-color: var(--awb-color2); }.fusion-syntax-highlighter-2 > .CodeMirror .CodeMirror-linenumber { color: var(--awb-color8); }</style><div class="fusion-syntax-highlighter-container fusion-syntax-highlighter-2 fusion-syntax-highlighter-theme-dark" style="opacity:0;margin-top:0px;margin-right:0px;margin-bottom:20px;margin-left:0px;font-size:14px;border-width:1px;border-style:solid;border-color:#e0dede;"><div class="syntax-highlighter-copy-code"><span class="syntax-highlighter-copy-code-title" data-id="fusion_syntax_highlighter_2" style="font-size:14px;">Copy to Clipboard</span></div><label for="fusion_syntax_highlighter_2" class="screen-reader-text">Syntax Highlighter</label><textarea class="fusion-syntax-highlighter-textarea" id="fusion_syntax_highlighter_2" data-readOnly="nocursor" data-lineNumbers="1" data-lineWrapping="" data-theme="oceanic-next" data-mode="text/x-sh"> {
	"end": 106471,
    "start": 106854,
     "metric_units": false
 }</textarea></div><div class="fusion-text fusion-text-3"><p>The final step was to set a scheduler to pull the data automatically. Besides the scheduler we had to set few validation rules to ensure that we get correct mileage. As an example, when the same vehicle is used for the different routes within one day.</p>
<h3>Results &amp; Big Wins</h3>
<p>With KeepTruckin integration a client was able to get mileage readings from all service vehicles. That helped to calculate RPM &amp; set dashboards along with other revenue stats. Since the data is now in SalesForce, there are many other reports could be set using mileage data. Such as RPM per truck / driver / region /etc.</p>
</div><div class="fusion-clearfix"></div></div></div></div></div>
<p>The post <a href="https://www.tech-vision.us/portfolio-items/salesforce-keeptruckin-integration/">Salesforce KeepTruckin Integration</a> appeared first on <a href="https://www.tech-vision.us">Tech Vision - Salesforce Best Practices</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Zoho CRM to QuickBooks Connector</title>
		<link>https://www.tech-vision.us/portfolio-items/zoho-crm-to-quickbooks-connector/</link>
					<comments>https://www.tech-vision.us/portfolio-items/zoho-crm-to-quickbooks-connector/#respond</comments>
		
		<dc:creator><![CDATA[Oleksandr Makarenko]]></dc:creator>
		<pubDate>Sun, 10 Feb 2019 02:26:32 +0000</pubDate>
				<guid isPermaLink="false">http://www.tech-vision.us/?post_type=avada_portfolio&#038;p=13137</guid>

					<description><![CDATA[<p>Project Description The main goal for a client was to cut down manual data entry from Zoho CRM to QuickBooks. For that reason, we developed an automated solution that allows to automatically sync Zoho CRM Invoices with QuickBooks. The basic flow is set to where once Invoice reaches a certain status - we send  [...]</p>
<p>The post <a href="https://www.tech-vision.us/portfolio-items/zoho-crm-to-quickbooks-connector/">Zoho CRM to QuickBooks Connector</a> appeared first on <a href="https://www.tech-vision.us">Tech Vision - Salesforce Best Practices</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="fusion-fullwidth fullwidth-box fusion-builder-row-2 nonhundred-percent-fullwidth non-hundred-percent-height-scrolling" style="--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-background-color:rgba(36,36,36,0);--awb-flex-wrap:wrap;" ><div class="fusion-builder-row fusion-row"><div class="fusion-layout-column fusion_builder_column fusion-builder-column-1 fusion_builder_column_1_1 1_1 fusion-one-full fusion-column-first fusion-column-last" style="--awb-bg-size:cover;--awb-margin-bottom:0px;"><div class="fusion-column-wrapper fusion-flex-column-wrapper-legacy"><div class="fusion-text fusion-text-4"><h3 style="font-size: 32px;">Project Description</h3>
<p>The main goal for a client was to cut down manual data entry from Zoho CRM to QuickBooks. For that reason, we developed an automated solution that allows to automatically sync Zoho CRM Invoices with QuickBooks. The basic flow is set to where once Invoice reaches a certain status &#8211; we send data into QuickBooks.</p>
<p>For both systems to communicate we had to set the middleman database to store items that are getting synced. Such database is having its own user-friendly interface that allows a user to see the status of the connector.</p>
<div class="mceTemp"></div>
</div><div class="fusion-image-element fusion-image-align-center in-legacy-container" style="text-align:center;--awb-liftup-border-radius:5px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);"><div class="imageframe-align-center"><div class="awb-image-frame awb-image-frame-1 imageframe-liftup imageframe-1 fusion-animated" style="max-width:620px;" data-animationType="slideInLeft" data-animationDuration="0.3" data-animationOffset="top-into-view"><span class=" fusion-imageframe imageframe-none imageframe-1" style="border-radius:5px;"><a href="https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-login-page.png" class="fusion-lightbox" data-rel="iLightbox[44f53fabfdbe739fa66]" data-caption="QB Connector Login Page" data-title="QB Connector Login Page" title="QB Connector Login Page"><img fetchpriority="high" decoding="async" width="2592" height="1663" alt="QB connector login page" src="https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-login-page.png" class="img-responsive wp-image-13354" srcset="https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-login-page-200x128.png 200w, https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-login-page-400x257.png 400w, https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-login-page-600x385.png 600w, https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-login-page-800x513.png 800w, https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-login-page-1200x770.png 1200w, https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-login-page.png 2592w" sizes="(max-width: 1100px) 100vw, 1200px" /></a></span></div></div></div><div class="fusion-sep-clear"></div><div class="fusion-separator fusion-full-width-sep" style="margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;"></div><div class="fusion-sep-clear"></div><div class="fusion-text fusion-text-5"><p>Here is a list of data points that can be synced:</p>
<ul>
<li>Accounts &amp; Contacts</li>
<li>Products &amp; Items</li>
<li>Quotes</li>
<li>Invoices</li>
<li>Purchase Orders</li>
<li>Sales Orders</li>
<li>And more&#8230;</li>
</ul>
<p>For this particular project, we used 4 data categories. Products, Accounts, and Invoices with line items. Each of these categories has its own section within the report page.  Basically, the Quickbooks database mirrors Zoho. Upon initial sync, the system checks if there any changes made in Zoho to any of data points. If something does not match it will insert/update missing info.</p>
</div><div class="fusion-image-element fusion-image-align-center in-legacy-container" style="text-align:center;--awb-max-width:620px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);"><div class="imageframe-align-center"><span class=" fusion-imageframe imageframe-none imageframe-2 hover-type-zoomin fusion-animated" style="border-radius:5px;" data-animationType="slideInLeft" data-animationDuration="0.3" data-animationOffset="top-into-view"><a href="https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-report.png" class="fusion-lightbox" data-rel="iLightbox[a75450c5651e2168f9d]" data-caption="QB Connector Report" data-title="QB Connector Report" title="QB Connector Report"><img decoding="async" width="2592" height="1663" alt="QB Connector Report" src="https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-report.png" class="img-responsive wp-image-13356" srcset="https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-report-200x128.png 200w, https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-report-400x257.png 400w, https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-report-600x385.png 600w, https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-report-800x513.png 800w, https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-report-1200x770.png 1200w, https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-report.png 2592w" sizes="(max-width: 1100px) 100vw, 1200px" /></a></span></div></div><div class="fusion-sep-clear"></div><div class="fusion-separator fusion-full-width-sep" style="margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;"></div><div class="fusion-sep-clear"></div><div class="fusion-text fusion-text-6"><p>Once data transfer completed, a user is able to see what is synced, what not as well as sync errors if any. There are additional buttons were set to re-upload newer version of the invoice in case of revision.</p>
<p>Before setting up the connector, we&#8217;ve set certain validation rules to prevent sending invalid data and to meet QuickBooks field standards.</p>
<p>In Quickbooks production file client had to add a small (.qbc) file: File -&gt; Update Web Services -&gt; Add new.</p>
</div><div class="fusion-image-element fusion-image-align-center in-legacy-container" style="text-align:center;--awb-max-width:620px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);"><div class="imageframe-align-center"><span class=" fusion-imageframe imageframe-none imageframe-3 hover-type-zoomin fusion-animated" style="border-radius:5px;" data-animationType="slideInLeft" data-animationDuration="0.3" data-animationOffset="top-into-view"><img decoding="async" width="2592" height="1663" alt="Quickbooks Connector Dashboards" title="Quickbooks Connector Dashboards" src="https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-dashboard.png" class="img-responsive wp-image-13360" srcset="https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-dashboard-200x128.png 200w, https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-dashboard-400x257.png 400w, https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-dashboard-600x385.png 600w, https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-dashboard-800x513.png 800w, https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-dashboard-1200x770.png 1200w, https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-dashboard.png 2592w" sizes="(max-width: 1100px) 100vw, 1200px" /></span></div></div><div class="fusion-sep-clear"></div><div class="fusion-separator fusion-full-width-sep" style="margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;"></div><div class="fusion-sep-clear"></div><div class="fusion-text fusion-text-7"><p>Since now Zoho has exact same data as in QuickBooks &#8211; your revenue data will be 100% accurate. Now its time to build all sorts of reports and dashboards for the leadership team. Saved time on manual copy paste can be used for something more important.</p>
</div><div class="fusion-clearfix"></div></div></div></div></div>
<p>The post <a href="https://www.tech-vision.us/portfolio-items/zoho-crm-to-quickbooks-connector/">Zoho CRM to QuickBooks Connector</a> appeared first on <a href="https://www.tech-vision.us">Tech Vision - Salesforce Best Practices</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.tech-vision.us/portfolio-items/zoho-crm-to-quickbooks-connector/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>SalesForce Customer Portal &#8211; Customer Service Tool connected to CRM</title>
		<link>https://www.tech-vision.us/portfolio-items/salesforce-customer-portal/</link>
					<comments>https://www.tech-vision.us/portfolio-items/salesforce-customer-portal/#respond</comments>
		
		<dc:creator><![CDATA[Oleksandr Makarenko]]></dc:creator>
		<pubDate>Wed, 10 Sep 2014 18:34:46 +0000</pubDate>
				<guid isPermaLink="false">https://avada.theme-fusion.com/?post_type=avada_portfolio&#038;p=10825</guid>

					<description><![CDATA[<p>Project Description SalesForce customer portal allows customers to check their service details, review documents and update their information directly into CRM. All updates are real-time no matter where you do the change. Each user has its own login and password. There are times when the same contact is present in multiple accounts in SalesForce.  [...]</p>
<p>The post <a href="https://www.tech-vision.us/portfolio-items/salesforce-customer-portal/">SalesForce Customer Portal &#8211; Customer Service Tool connected to CRM</a> appeared first on <a href="https://www.tech-vision.us">Tech Vision - Salesforce Best Practices</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="fusion-fullwidth fullwidth-box fusion-builder-row-3 nonhundred-percent-fullwidth non-hundred-percent-height-scrolling" style="--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;" ><div class="fusion-builder-row fusion-row"><div class="fusion-layout-column fusion_builder_column fusion-builder-column-2 fusion_builder_column_1_1 1_1 fusion-one-full fusion-column-first fusion-column-last" style="--awb-bg-size:cover;--awb-margin-bottom:0px;"><div class="fusion-column-wrapper fusion-flex-column-wrapper-legacy"><div class="fusion-text fusion-text-8"><h3 style="font-size: 32px;">Project Description</h3>
<p>SalesForce customer portal allows customers to check their service details, review documents and update their information directly into CRM. All updates are real-time no matter where you do the change. Each user has its own login and password. There are times when the same contact is present in multiple accounts in SalesForce. Such users have access to multiple accounts within one customer portal profile. Admin has full control over access to the portal. There are all sorts of reports that are available to track customer interaction. For instance, a number of logins, registration date, last login time, login count, etc.</p>
<h3>How it works</h3>
<p>SalesForce Customer&#8217;s portal is a standalone application that works bi-directionally with CRM. By leveraging apex triggers we are able to push information into portal&#8217;s database. In other words, updated information immediately displayed within the account.</p>
</div><div class="fusion-image-element fusion-image-align-center in-legacy-container" style="text-align:center;--awb-liftup-border-radius:5px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);"><div class="imageframe-align-center"><div class="awb-image-frame awb-image-frame-4 imageframe-liftup imageframe-4 fusion-animated" style="max-width:620px;" data-animationType="slideInLeft" data-animationDuration="0.3" data-animationOffset="top-into-view"><span class=" fusion-imageframe imageframe-none imageframe-4" style="border-radius:5px;"><a href="https://www.tech-vision.us/wp-content/uploads/2014/09/salesforce-customer-portal-login.png" class="fusion-lightbox" data-rel="iLightbox[616ec35ac190ca47b6f]" data-caption="SalesForce Customer Portal Login Page" data-title="SalesForce Customer Portal Login Page" title="SalesForce Customer Portal Login Page"><img decoding="async" width="2592" height="1663" alt="SalesForce Customer Portal Login Page" src="https://www.tech-vision.us/wp-content/uploads/2014/09/salesforce-customer-portal-login.png" class="img-responsive wp-image-13389" srcset="https://www.tech-vision.us/wp-content/uploads/2014/09/salesforce-customer-portal-login-200x128.png 200w, https://www.tech-vision.us/wp-content/uploads/2014/09/salesforce-customer-portal-login-400x257.png 400w, https://www.tech-vision.us/wp-content/uploads/2014/09/salesforce-customer-portal-login-600x385.png 600w, https://www.tech-vision.us/wp-content/uploads/2014/09/salesforce-customer-portal-login-800x513.png 800w, https://www.tech-vision.us/wp-content/uploads/2014/09/salesforce-customer-portal-login-1200x770.png 1200w, https://www.tech-vision.us/wp-content/uploads/2014/09/salesforce-customer-portal-login.png 2592w" sizes="(max-width: 1100px) 100vw, 1200px" /></a></span></div></div></div><div class="fusion-text fusion-text-9"><p>We used a bootstrap template to produce user interface. Therefore, we can ensure that the page is user-friendly no matter what device is used. On the other end, any update from portal goes straight into SalesForce via a custom made connector.</p>
</div><div class="fusion-image-element fusion-image-align-center in-legacy-container" style="text-align:center;--awb-liftup-border-radius:5px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);"><div class="imageframe-align-center"><div class="awb-image-frame awb-image-frame-5 imageframe-liftup imageframe-5 fusion-animated" style="max-width:620px;" data-animationType="slideInLeft" data-animationDuration="0.3" data-animationOffset="top-into-view"><span class=" fusion-imageframe imageframe-none imageframe-5" style="border-radius:5px;"><a href="https://www.tech-vision.us/wp-content/uploads/2014/09/salesforce-customer-portal-dashboard.png" class="fusion-lightbox" data-rel="iLightbox[60dce030c4f9209e034]" data-caption="SalesForce Customer Portal Dashboard" data-title="SalesForce Customer Portal Dashboard" title="SalesForce Customer Portal Dashboard"><img decoding="async" width="2592" height="1663" alt="SalesForce Customer Portal Dashboard" src="https://www.tech-vision.us/wp-content/uploads/2014/09/salesforce-customer-portal-dashboard.png" class="img-responsive wp-image-13392" srcset="https://www.tech-vision.us/wp-content/uploads/2014/09/salesforce-customer-portal-dashboard-200x128.png 200w, https://www.tech-vision.us/wp-content/uploads/2014/09/salesforce-customer-portal-dashboard-400x257.png 400w, https://www.tech-vision.us/wp-content/uploads/2014/09/salesforce-customer-portal-dashboard-600x385.png 600w, https://www.tech-vision.us/wp-content/uploads/2014/09/salesforce-customer-portal-dashboard-800x513.png 800w, https://www.tech-vision.us/wp-content/uploads/2014/09/salesforce-customer-portal-dashboard-1200x770.png 1200w, https://www.tech-vision.us/wp-content/uploads/2014/09/salesforce-customer-portal-dashboard.png 2592w" sizes="(max-width: 1100px) 100vw, 1200px" /></a></span></div></div></div><div class="fusion-text fusion-text-10"><p>A user also has different contact tools within the portal which will appear as cases in Salesforce. To ensure data quality, we&#8217;ve set some validation rules on both ends.</p>
<h3>Results &amp; Big Wins</h3>
<p>A client was able to save time on a phone that was used to spend on sending reports and other PDFs. Customers are now having quick access to their documents and account information. They are also able to interact with customer service within the portal. All conversations are now in one place. This allows to run reports and have a better vision over the customer service department. The sales team can add this feature to the company&#8217;s portfolio when getting new customers. The solution itself is way cheaper than SalesForce Communities.</p>
</div><div class="fusion-clearfix"></div></div></div><div class="fusion-layout-column fusion_builder_column fusion-builder-column-3 fusion_builder_column_1_3 1_3 fusion-one-third fusion-column-first" style="--awb-bg-size:cover;width:33.333333333333%;width:calc(33.333333333333% - ( ( 4% + 4% ) * 0.33333333333333 ) );margin-right: 4%;"><div class="fusion-column-wrapper fusion-column-has-shadow fusion-flex-column-wrapper-legacy"><div class="fusion-counters-circle counters-circle" data-animationOffset="top-into-view"><div class="counter-circle-wrapper" style="--awb-font-size:50px;--awb-size:220px;" data-originalsize="220"><div class="fusion-counter-circle counter-circle counter-circle-content" data-percent="33" data-countdown="" data-filledcolor="rgba(160,206,78,1)" data-unfilledcolor="rgba(62,62,62,1)" data-scale="" data-size="220" data-speed="1500" data-strokesize="11"><div class="fusion-counter-circle-content-inner"><div class="fusion-fa-align-center"><i class="fb-icon-element-1 fb-icon-element fontawesome-icon fa fa-phone circle-no" style="--awb-iconcolor:#a0ce4e;--awb-iconcolor-hover:#a0ce4e;--awb-font-size:40px;"></i></div></div></div></div></div><div class="fusion-text fusion-text-11"><h3 style="text-align: center;"><strong>REDUCED CALLS</strong></h3>
</div><div class="fusion-clearfix"></div></div></div><div class="fusion-layout-column fusion_builder_column fusion-builder-column-4 fusion_builder_column_1_3 1_3 fusion-one-third" style="--awb-bg-size:cover;width:33.333333333333%;width:calc(33.333333333333% - ( ( 4% + 4% ) * 0.33333333333333 ) );margin-right: 4%;"><div class="fusion-column-wrapper fusion-column-has-shadow fusion-flex-column-wrapper-legacy"><div class="fusion-counters-circle counters-circle" data-animationOffset="top-into-view"><div class="counter-circle-wrapper" style="--awb-font-size:50px;--awb-size:220px;" data-originalsize="220"><div class="fusion-counter-circle counter-circle counter-circle-content" data-percent="50" data-countdown="" data-filledcolor="rgba(253,182,20,1)" data-unfilledcolor="rgba(62,62,62,1)" data-scale="" data-size="220" data-speed="1500" data-strokesize="11"><div class="fusion-counter-circle-content-inner"><div class="fusion-fa-align-center"><i class="fb-icon-element-2 fb-icon-element fontawesome-icon fa fa-envelope-o circle-no" style="--awb-iconcolor:#fdb614;--awb-iconcolor-hover:#fdb614;--awb-font-size:40px;"></i></div></div></div></div></div><div class="fusion-text fusion-text-12"><h3 style="text-align: center;"><strong>REDUCED EMAILS</strong></h3>
</div><div class="fusion-clearfix"></div></div></div><div class="fusion-layout-column fusion_builder_column fusion-builder-column-5 fusion_builder_column_1_3 1_3 fusion-one-third fusion-column-last" style="--awb-bg-size:cover;width:33.333333333333%;width:calc(33.333333333333% - ( ( 4% + 4% ) * 0.33333333333333 ) );"><div class="fusion-column-wrapper fusion-column-has-shadow fusion-flex-column-wrapper-legacy"><div class="fusion-counters-circle counters-circle" data-animationOffset="top-into-view"><div class="counter-circle-wrapper" style="--awb-font-size:50px;--awb-size:220px;" data-originalsize="220"><div class="fusion-counter-circle counter-circle counter-circle-content" data-percent="28" data-countdown="" data-filledcolor="rgba(96,125,139,1)" data-unfilledcolor="rgba(62,62,62,1)" data-scale="" data-size="220" data-speed="1500" data-strokesize="11"><div class="fusion-counter-circle-content-inner"><div class="fusion-fa-align-center"><i class="fb-icon-element-3 fb-icon-element fontawesome-icon fa fa-check circle-no" style="--awb-iconcolor:#607d8b;--awb-iconcolor-hover:#607d8b;--awb-font-size:40px;"></i></div></div></div></div></div><div class="fusion-text fusion-text-13"><h3 style="text-align: center;"><strong>IMPROVED SERVICE</strong></h3>
</div><div class="fusion-clearfix"></div></div></div></div></div>
<p>The post <a href="https://www.tech-vision.us/portfolio-items/salesforce-customer-portal/">SalesForce Customer Portal &#8211; Customer Service Tool connected to CRM</a> appeared first on <a href="https://www.tech-vision.us">Tech Vision - Salesforce Best Practices</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.tech-vision.us/portfolio-items/salesforce-customer-portal/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Web Site Design</title>
		<link>https://www.tech-vision.us/portfolio-items/tras-commodo-ets/</link>
					<comments>https://www.tech-vision.us/portfolio-items/tras-commodo-ets/#respond</comments>
		
		<dc:creator><![CDATA[Oleksandr Makarenko]]></dc:creator>
		<pubDate>Wed, 10 Sep 2014 18:34:46 +0000</pubDate>
				<guid isPermaLink="false">http://avada.theme-fusion.com_demos/portfolio/?post_type=avada_portfolio&#038;p=12451</guid>

					<description><![CDATA[<p>The post <a href="https://www.tech-vision.us/portfolio-items/tras-commodo-ets/">Web Site Design</a> appeared first on <a href="https://www.tech-vision.us">Tech Vision - Salesforce Best Practices</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>The post <a href="https://www.tech-vision.us/portfolio-items/tras-commodo-ets/">Web Site Design</a> appeared first on <a href="https://www.tech-vision.us">Tech Vision - Salesforce Best Practices</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.tech-vision.us/portfolio-items/tras-commodo-ets/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>SalesForce to Quickbooks Connector</title>
		<link>https://www.tech-vision.us/portfolio-items/salesforce-to-quickbooks-connector/</link>
					<comments>https://www.tech-vision.us/portfolio-items/salesforce-to-quickbooks-connector/#respond</comments>
		
		<dc:creator><![CDATA[Oleksandr Makarenko]]></dc:creator>
		<pubDate>Wed, 10 Sep 2014 18:34:42 +0000</pubDate>
				<guid isPermaLink="false">https://avada.theme-fusion.com/?post_type=avada_portfolio&#038;p=10845</guid>

					<description><![CDATA[<p>Project Description The main goal for a client was to cut down manual data entry from Salesforce to QuickBooks. For that reason, we developed an automated solution that allows to automatically sync salesforce opportunities with QuickBooks. The basic flow is set to where once Salesforce Opportunity reaches a certain stage - we send data  [...]</p>
<p>The post <a href="https://www.tech-vision.us/portfolio-items/salesforce-to-quickbooks-connector/">SalesForce to Quickbooks Connector</a> appeared first on <a href="https://www.tech-vision.us">Tech Vision - Salesforce Best Practices</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="fusion-fullwidth fullwidth-box fusion-builder-row-4 nonhundred-percent-fullwidth non-hundred-percent-height-scrolling" style="--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-background-color:rgba(36,36,36,0);--awb-flex-wrap:wrap;" ><div class="fusion-builder-row fusion-row"><div class="fusion-layout-column fusion_builder_column fusion-builder-column-6 fusion_builder_column_1_1 1_1 fusion-one-full fusion-column-first fusion-column-last" style="--awb-bg-size:cover;--awb-margin-bottom:0px;"><div class="fusion-column-wrapper fusion-flex-column-wrapper-legacy"><div class="fusion-text fusion-text-14"><h3 style="font-size: 32px;">Project Description</h3>
<p>The main goal for a client was to cut down manual data entry from Salesforce to QuickBooks. For that reason, we developed an automated solution that allows to automatically sync salesforce opportunities with QuickBooks. The basic flow is set to where once Salesforce Opportunity reaches a certain stage &#8211; we send data into QuickBooks.</p>
<p>For both systems to communicate we had to set the middleman database to store items that are getting synced. Such database is having its own user-friendly interface that allows a user to see the status of the connector.</p>
<div class="mceTemp"></div>
</div><div class="fusion-image-element fusion-image-align-center in-legacy-container" style="text-align:center;--awb-liftup-border-radius:5px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);"><div class="imageframe-align-center"><div class="awb-image-frame awb-image-frame-6 imageframe-liftup imageframe-6 fusion-animated" style="max-width:620px;" data-animationType="slideInLeft" data-animationDuration="0.3" data-animationOffset="top-into-view"><span class=" fusion-imageframe imageframe-none imageframe-6" style="border-radius:5px;"><a href="https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-login-page.png" class="fusion-lightbox" data-rel="iLightbox[44f53fabfdbe739fa66]" data-caption="QB Connector Login Page" data-title="QB Connector Login Page" title="QB Connector Login Page"><img decoding="async" width="2592" height="1663" alt="QB connector login page" src="https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-login-page.png" class="img-responsive wp-image-13354" srcset="https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-login-page-200x128.png 200w, https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-login-page-400x257.png 400w, https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-login-page-600x385.png 600w, https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-login-page-800x513.png 800w, https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-login-page-1200x770.png 1200w, https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-login-page.png 2592w" sizes="(max-width: 1100px) 100vw, 1200px" /></a></span></div></div></div><div class="fusion-sep-clear"></div><div class="fusion-separator fusion-full-width-sep" style="margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;"></div><div class="fusion-sep-clear"></div><div class="fusion-text fusion-text-15"><p>There are 3 main data categories to be synced. Products, Accounts, and Opportunities with line items. Each of these categories has its own section within the report page.  Basically, the Quickbooks database mirrors SalesForce. Upon initial sync, the system checks if there any changes made in SF to any of data points. If something does not match it will insert/update missing info.</p>
</div><div class="fusion-image-element fusion-image-align-center in-legacy-container" style="text-align:center;--awb-max-width:620px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);"><div class="imageframe-align-center"><span class=" fusion-imageframe imageframe-none imageframe-7 hover-type-zoomin fusion-animated" style="border-radius:5px;" data-animationType="slideInLeft" data-animationDuration="0.3" data-animationOffset="top-into-view"><a href="https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-report.png" class="fusion-lightbox" data-rel="iLightbox[a75450c5651e2168f9d]" data-caption="QB Connector Report" data-title="QB Connector Report" title="QB Connector Report"><img decoding="async" width="2592" height="1663" alt="QB Connector Report" src="https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-report.png" class="img-responsive wp-image-13356" srcset="https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-report-200x128.png 200w, https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-report-400x257.png 400w, https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-report-600x385.png 600w, https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-report-800x513.png 800w, https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-report-1200x770.png 1200w, https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-report.png 2592w" sizes="(max-width: 1100px) 100vw, 1200px" /></a></span></div></div><div class="fusion-sep-clear"></div><div class="fusion-separator fusion-full-width-sep" style="margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;"></div><div class="fusion-sep-clear"></div><div class="fusion-text fusion-text-16"><p>Once data transfer completed, a user is able to see what is synced, what not as well as sync errors if any. There are additional buttons were set to re-upload newer version of the invoice in case of revision.</p>
<p>Before setting up the connector, we&#8217;ve set certain validation rules to prevent sending invalid data and to meet QuickBooks field standards.</p>
<p>In Quickbooks production file client had to add a small (.qbc) file: File -&gt; Update Web Services -&gt; Add new.</p>
</div><div class="fusion-image-element fusion-image-align-center in-legacy-container" style="text-align:center;--awb-max-width:620px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);"><div class="imageframe-align-center"><span class=" fusion-imageframe imageframe-none imageframe-8 hover-type-zoomin fusion-animated" style="border-radius:5px;" data-animationType="slideInLeft" data-animationDuration="0.3" data-animationOffset="top-into-view"><img decoding="async" width="2592" height="1663" alt="Quickbooks Connector Dashboards" title="Quickbooks Connector Dashboards" src="https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-dashboard.png" class="img-responsive wp-image-13360" srcset="https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-dashboard-200x128.png 200w, https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-dashboard-400x257.png 400w, https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-dashboard-600x385.png 600w, https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-dashboard-800x513.png 800w, https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-dashboard-1200x770.png 1200w, https://www.tech-vision.us/wp-content/uploads/2014/09/qb-connector-dashboard.png 2592w" sizes="(max-width: 1100px) 100vw, 1200px" /></span></div></div><div class="fusion-sep-clear"></div><div class="fusion-separator fusion-full-width-sep" style="margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;"></div><div class="fusion-sep-clear"></div><div class="fusion-text fusion-text-17"><p>Since now Salesforce has exact same data as in QuickBooks &#8211; your revenue data will be 100% accurate. Now its time to build all sorts of reports and dashboards for the leadership team. Saved time on copy paste can be repurposed to something else.</p>
</div><div class="fusion-clearfix"></div></div></div></div></div>
<p>The post <a href="https://www.tech-vision.us/portfolio-items/salesforce-to-quickbooks-connector/">SalesForce to Quickbooks Connector</a> appeared first on <a href="https://www.tech-vision.us">Tech Vision - Salesforce Best Practices</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.tech-vision.us/portfolio-items/salesforce-to-quickbooks-connector/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Salesforce CRM Cleanup &#8211; Removed Unnecessary Fields &#038; Data</title>
		<link>https://www.tech-vision.us/portfolio-items/salesforce-crm-cleanup-removed-unnecessary-fields-data/</link>
					<comments>https://www.tech-vision.us/portfolio-items/salesforce-crm-cleanup-removed-unnecessary-fields-data/#respond</comments>
		
		<dc:creator><![CDATA[Oleksandr Makarenko]]></dc:creator>
		<pubDate>Wed, 10 Sep 2014 18:34:31 +0000</pubDate>
				<guid isPermaLink="false">https://avada.theme-fusion.com/?post_type=avada_portfolio&#038;p=10857</guid>

					<description><![CDATA[<p>Project Description SalesForce ecosystem has a relatively low entry level, which means lots of things can be set by non-certified users. As the company grows, more and more processes are added. It may become an even bigger problem if multiple users are making changes to the back end. On average it takes about two  [...]</p>
<p>The post <a href="https://www.tech-vision.us/portfolio-items/salesforce-crm-cleanup-removed-unnecessary-fields-data/">Salesforce CRM Cleanup &#8211; Removed Unnecessary Fields &#038; Data</a> appeared first on <a href="https://www.tech-vision.us">Tech Vision - Salesforce Best Practices</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="fusion-fullwidth fullwidth-box fusion-builder-row-5 nonhundred-percent-fullwidth non-hundred-percent-height-scrolling" style="--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;" ><div class="fusion-builder-row fusion-row"><div class="fusion-layout-column fusion_builder_column fusion-builder-column-7 fusion_builder_column_1_1 1_1 fusion-one-full fusion-column-first fusion-column-last" style="--awb-bg-size:cover;--awb-margin-bottom:0px;"><div class="fusion-column-wrapper fusion-flex-column-wrapper-legacy"><div class="fusion-text fusion-text-18"><h3>Project Description</h3>
<p>SalesForce ecosystem has a relatively low entry level, which means lots of things can be set by non-certified users. As the company grows, more and more processes are added. It may become an even bigger problem if multiple users are making changes to the back end. On average it takes about two years to clog the CRM. Like stated above, Salesforce is very user-friendly but it is still a database.</p>
<p>Our client had an ongoing issue with data in their Salesforce org. They were having lots of unnecessary fields, validation rules and annoying email notifications for every cause.</p>
<p>For that reason, we came up with checklist &amp; action items:</p>
<h3>Audit Existing Fields (Standard &amp; Custom Objects)</h3>
<ul>
<li><strong>Field Usage Report:</strong> We&#8217;ve built a report to display field usage per object. By seeing usage percentage &#8211; department heads were able to quickly identify what can be deleted.</li>
<li><strong>Lookup Fields:</strong> We had to ensure that objects are related correctly. Sometimes native relations are replaced with custom lookups. Ex: There is a standard lookup field on Order to Opportunity that is replaced by custom lookup field.</li>
<li><strong>Field Types:</strong> Sometimes a field that supposed to be a currency is a number type. Or number field is actually a text field type. We&#8217;ve resolved all the above.</li>
<li><strong>Page Layouts:</strong> After determining fields that are needed, everything else is removed from page layouts. After a certain time, unused fields are erased.</li>
</ul>
</div><div class="fusion-title title fusion-title-1 fusion-title-center fusion-title-text fusion-title-size-three" style="--awb-margin-top:30px;--awb-font-size:22px;"><div class="title-sep-container title-sep-container-left"><div class="title-sep sep- sep-solid" style="border-color:#3e3e3e;"></div></div><span class="awb-title-spacer"></span><h3 class="fusion-title-heading title-heading-center" style="margin:0;font-size:1em;">Percentage of Fields Removed Per Object</h3><span class="awb-title-spacer"></span><div class="title-sep-container title-sep-container-right"><div class="title-sep sep- sep-solid" style="border-color:#3e3e3e;"></div></div></div><div class="fusion-clearfix"></div></div></div><div class="fusion-layout-column fusion_builder_column fusion-builder-column-8 fusion_builder_column_1_4 1_4 fusion-one-fourth fusion-column-first" style="--awb-bg-size:cover;width:25%;width:calc(25% - ( ( 4% + 4% + 4% ) * 0.25 ) );margin-right: 4%;"><div class="fusion-column-wrapper fusion-column-has-shadow fusion-flex-column-wrapper-legacy"><div class="fusion-counters-circle counters-circle" data-animationOffset="top-into-view"><div class="counter-circle-wrapper" style="--awb-font-size:50px;--awb-size:220px;" data-originalsize="220"><div class="fusion-counter-circle counter-circle counter-circle-content" data-percent="65" data-countdown="" data-filledcolor="rgba(160,206,78,1)" data-unfilledcolor="rgba(62,62,62,1)" data-scale="" data-size="220" data-speed="1500" data-strokesize="11"><div class="fusion-counter-circle-content-inner">65%</div></div></div></div><div class="fusion-text fusion-text-19"><h3 style="text-align: center;">ACCOUNTS</h3>
</div><div class="fusion-clearfix"></div></div></div><div class="fusion-layout-column fusion_builder_column fusion-builder-column-9 fusion_builder_column_1_4 1_4 fusion-one-fourth" style="--awb-bg-size:cover;width:25%;width:calc(25% - ( ( 4% + 4% + 4% ) * 0.25 ) );margin-right: 4%;"><div class="fusion-column-wrapper fusion-column-has-shadow fusion-flex-column-wrapper-legacy"><div class="fusion-counters-circle counters-circle" data-animationOffset="top-into-view"><div class="counter-circle-wrapper" style="--awb-font-size:50px;--awb-size:220px;" data-originalsize="220"><div class="fusion-counter-circle counter-circle counter-circle-content" data-percent="78" data-countdown="" data-filledcolor="rgba(160,206,78,1)" data-unfilledcolor="rgba(62,62,62,1)" data-scale="" data-size="220" data-speed="1500" data-strokesize="11"><div class="fusion-counter-circle-content-inner">78%</div></div></div></div><div class="fusion-text fusion-text-20"><h3 style="text-align: center;">OPPORTUNITIES</h3>
</div><div class="fusion-clearfix"></div></div></div><div class="fusion-layout-column fusion_builder_column fusion-builder-column-10 fusion_builder_column_1_4 1_4 fusion-one-fourth" style="--awb-bg-size:cover;width:25%;width:calc(25% - ( ( 4% + 4% + 4% ) * 0.25 ) );margin-right: 4%;"><div class="fusion-column-wrapper fusion-column-has-shadow fusion-flex-column-wrapper-legacy"><div class="fusion-counters-circle counters-circle" data-animationOffset="top-into-view"><div class="counter-circle-wrapper" style="--awb-font-size:50px;--awb-size:220px;" data-originalsize="220"><div class="fusion-counter-circle counter-circle counter-circle-content" data-percent="43" data-countdown="" data-filledcolor="rgba(160,206,78,1)" data-unfilledcolor="rgba(62,62,62,1)" data-scale="" data-size="220" data-speed="1500" data-strokesize="11"><div class="fusion-counter-circle-content-inner">43%</div></div></div></div><div class="fusion-text fusion-text-21"><h3 style="text-align: center;">ORDERS</h3>
</div><div class="fusion-clearfix"></div></div></div><div class="fusion-layout-column fusion_builder_column fusion-builder-column-11 fusion_builder_column_1_4 1_4 fusion-one-fourth fusion-column-last" style="--awb-bg-size:cover;width:25%;width:calc(25% - ( ( 4% + 4% + 4% ) * 0.25 ) );"><div class="fusion-column-wrapper fusion-column-has-shadow fusion-flex-column-wrapper-legacy"><div class="fusion-counters-circle counters-circle" data-animationOffset="top-into-view"><div class="counter-circle-wrapper" style="--awb-font-size:50px;--awb-size:220px;" data-originalsize="220"><div class="fusion-counter-circle counter-circle counter-circle-content" data-percent="73" data-countdown="" data-filledcolor="rgba(160,206,78,1)" data-unfilledcolor="rgba(62,62,62,1)" data-scale="" data-size="220" data-speed="1500" data-strokesize="11"><div class="fusion-counter-circle-content-inner">73%</div></div></div></div><div class="fusion-text fusion-text-22"><h3 style="text-align: center;">LEADS</h3>
</div><div class="fusion-clearfix"></div></div></div><div class="fusion-layout-column fusion_builder_column fusion-builder-column-12 fusion_builder_column_1_1 1_1 fusion-one-full fusion-column-first fusion-column-last" style="--awb-bg-size:cover;"><div class="fusion-column-wrapper fusion-column-has-shadow fusion-flex-column-wrapper-legacy"><div class="fusion-text fusion-text-23"><h3>Audit Existing Data</h3>
<ul>
<li><strong>Determined data entry points:</strong> Manual entry, mass upload, outside forms, etc.</li>
<li><strong>Data Quality:</strong> Ensured that the incoming data is pre-formated before entering SalesForce.</li>
<li><strong>Checked for duplicates:</strong> This is mostly applied to leads. If such problem exists, the sales team may be calling the same people over again. Once dedupe is done, it is necessary to set up a duplicate check for any new leads.</li>
<li><strong>Missing Data:</strong> Since we have a list of fields that are required to fill out, we were able to run reports and see which records are missing data. Like phone numbers, emails, etc.</li>
<li><strong>Validation Rules:</strong> Reviewed existing validation rules &amp; set new ones to meet data quality standards.</li>
</ul>
<h3>Audit Users &amp; Permissions</h3>
<ul>
<li><strong>Licenses:</strong> Evaluated how many licenses are available &amp; how many users are actually using them. Eliminate unnecessary costs.</li>
<li><strong>Storage:</strong> Determined how much data/file storage is available. Deleted unnecessary records like tasks, old campaigns&#8230;etc.</li>
<li><strong>Data Access:</strong> Evaluated user access to objects/fields. Made sure that user views are not clogged with fields from other departments.</li>
</ul>
</div><div class="fusion-counters-box counters-box row fusion-clearfix fusion-columns-3"><div class="fusion-counter-box fusion-column col-counter-box counter-box-wrapper col-lg-4 col-md-4 col-sm-4" data-animationOffset="top-into-view"><div class="counter-box-container"><div class="content-box-percentage content-box-counter"><i class="counter-box-icon fontawesome-icon fa-clipboard far" aria-hidden="true"></i><span class="display-counter" data-value="11248" data-delimiter="," data-direction="up" data-decimals="0">0</span></div><div class="counter-box-content">Records Were Removed</div></div></div><div class="fusion-counter-box fusion-column col-counter-box counter-box-wrapper col-lg-4 col-md-4 col-sm-4" data-animationOffset="top-into-view"><div class="counter-box-container"><div class="content-box-percentage content-box-counter"><i class="counter-box-icon fontawesome-icon fa-hand-paper far" aria-hidden="true"></i><span class="display-counter" data-value="47" data-direction="up" data-decimals="0">0</span></div><div class="counter-box-content">New Validation Rules</div></div></div><div class="fusion-counter-box fusion-column col-counter-box counter-box-wrapper col-lg-4 col-md-4 col-sm-4" data-animationOffset="top-into-view"><div class="counter-box-container"><div class="content-box-percentage content-box-counter"><i class="counter-box-icon fontawesome-icon fa-database fas" aria-hidden="true"></i><span class="display-counter" data-value="34" data-direction="up" data-decimals="0">0</span><span class="unit">%</span></div><div class="counter-box-content">Data Storage Reduction</div></div></div></div><div class="clearfix"></div><div class="fusion-text fusion-text-24"><h3>Integrations &amp; Apps</h3>
<ul>
<li><strong>Apps: </strong>Generated a list of all free &amp; paid apps installed. Discussed all use cases. For each paid app, we ensured that licenses are properly assigned for end users.</li>
<li><strong>Integrations:</strong> Reviewed how integrations affect Salesforce data.</li>
<li>Uninstalled everything that is not in use.</li>
</ul>
<h3>Automated Processes</h3>
<ul>
<li><strong>Workflows &amp; Process Builder: </strong>Generated report for all workflows/flows running per object. Evaluated the need for each rule. Unnecessary ones were deleted.</li>
<li><strong>Apex, Triggers &amp; Test Classes: </strong>Multiple triggers within the object were condensed into one. Reviewed code coverage from test classes. Everything that confirmed as not in use deleted.</li>
<li><strong>API: </strong>Reviewed API usage to ensure that org is not hitting limits.</li>
<li><strong>Scheduled Jobs: </strong>Generated a list of all background processes that are happening behind the scenes. Discussed its need and functionality.</li>
</ul>
</div><div class="fusion-clearfix"></div></div></div></div></div>
<p>The post <a href="https://www.tech-vision.us/portfolio-items/salesforce-crm-cleanup-removed-unnecessary-fields-data/">Salesforce CRM Cleanup &#8211; Removed Unnecessary Fields &#038; Data</a> appeared first on <a href="https://www.tech-vision.us">Tech Vision - Salesforce Best Practices</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.tech-vision.us/portfolio-items/salesforce-crm-cleanup-removed-unnecessary-fields-data/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
