<?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>SalesForce Archives - Tech Vision - Salesforce Best Practices</title>
	<atom:link href="https://www.tech-vision.us/portfolio_skills/salesforce/feed/" rel="self" type="application/rss+xml" />
	<link></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.1</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>SalesForce Inventory App</title>
		<link>https://www.tech-vision.us/portfolio-items/salesforce-inventory-app/</link>
					<comments>https://www.tech-vision.us/portfolio-items/salesforce-inventory-app/#respond</comments>
		
		<dc:creator><![CDATA[Oleksandr Makarenko]]></dc:creator>
		<pubDate>Sat, 09 Feb 2019 22:01:09 +0000</pubDate>
				<guid isPermaLink="false">http://www.tech-vision.us/?post_type=avada_portfolio&#038;p=13108</guid>

					<description><![CDATA[<p>Project Description The developed inventory system allows tracking product levels at multiple locations and all service vehicles in real time. It uses the standard 'Products' object for inventory items and standard 'Opportunity' object to update inventory levels. How It Works Once an opportunity reaches a certain stage, the assigned products become reserved at the  [...]</p>
<p>The post <a href="https://www.tech-vision.us/portfolio-items/salesforce-inventory-app/">SalesForce Inventory App</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-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;"><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 developed inventory system allows tracking product levels at multiple locations and all service vehicles in real time. It uses the standard &#8216;Products&#8217; object for inventory items and standard &#8216;Opportunity&#8217; object to update inventory levels.</p>
<h3>How It Works</h3>
<p>Once an opportunity reaches a certain stage, the assigned products become reserved at the warehouse location. In most cases, it means that the product is either at the delivery vehicle or cannot be used for other customers. When probability reaches 100%, products will subtract from a warehouse location. The reserved quantity becomes zero for this opportunity.</p>
<p>Inventory adjustments are on a separate lightning page. It allows you to pick the warehouse location and adjust multiple products all at once with just a few clicks. It is possible either to add more or overwrite an existing quantity of a product in a warehouse. Each transaction will have its own message. It helps everyone to understand why this adjustment has been made.</p>
<p>Thresholds help warehouse managers to order more products when necessary. Besides thresholds, we&#8217;ve set all sorts of reports and dashboards to provide better vision over inventory levels.</p>
<h3>Results &amp; Big Wins</h3>
<p>Salesforce Inventory app provided visibility over multiple warehouses. Since inventory is a part of the logistics system, managers were able to identify labor gaps in loading/unloading service vehicles. This solution improved overall efficiency and accountability among personnel. Our developed app is a clone of inventory app that is currently on SalesForce AppExchange, but the difference is that the client no longer has to pay for licenses &amp; can provide access to entire org without paying more for each seed.</p>
</div><div class="fusion-clearfix"></div></div></div></div></div>
<p>The post <a href="https://www.tech-vision.us/portfolio-items/salesforce-inventory-app/">SalesForce Inventory App</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-inventory-app/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-5"><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-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/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 fetchpriority="high" 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-6"><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-2 imageframe-liftup imageframe-2 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-2" 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-7"><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-8"><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-9"><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-10"><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>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-11"><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-3 imageframe-liftup imageframe-3 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-3" 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-12"><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-4 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-13"><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-5 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-14"><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>
	</channel>
</rss>
