<?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>RamtinWorld</title>
	<atom:link href="http://www.ramtinworld.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ramtinworld.com</link>
	<description>it starts with a fabulous thought!</description>
	<lastBuildDate>Sun, 12 May 2013 09:45:24 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>How to load dates to Salesforce!</title>
		<link>http://www.ramtinworld.com/2013/05/how-to-load-date-fields-to-salesforce/</link>
		<comments>http://www.ramtinworld.com/2013/05/how-to-load-date-fields-to-salesforce/#comments</comments>
		<pubDate>Sun, 12 May 2013 09:45:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Salesforce]]></category>
		<category><![CDATA[Data Loader]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[Jitterbit]]></category>
		<category><![CDATA[Lexi Loader]]></category>
		<category><![CDATA[salesforce]]></category>
		<category><![CDATA[Salesforce.com]]></category>

		<guid isPermaLink="false">http://www.ramtinworld.com/?p=228</guid>
		<description><![CDATA[I have been working on different Salesforce data migration projects and I have noticed although I have checked the European Date Format box in Data Loader, Lexi Loader or Jitterbit the dates come through as one day behind when I &#8230; <a href="http://www.ramtinworld.com/2013/05/how-to-load-date-fields-to-salesforce/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I have been working on different Salesforce data migration projects and I have noticed although I have checked the European Date Format box in Data Loader, Lexi Loader or Jitterbit the dates come through as one day behind when I upload them to Salesforce.</p>
<p>I have a suspicious this might be due to my location being in Sydney, Australia and Salesforce servers in the US. Hence the the time difference is affecting the data upload.</p>
<p>The solution that I found was to add the timezone to the dates in my CSV file before uploading them to Salesforce.</p>
<p>For example if your date is 7/05/2013, add T18:00:00.000Z after your date so it reads 07/05/2013T18:00:00.000Z.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ramtinworld.com/2013/05/how-to-load-date-fields-to-salesforce/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use Salesforce.com Web-to-Lead form with NFP Starter Pack (NPSP)</title>
		<link>http://www.ramtinworld.com/2013/01/how-to-use-salesforce-com-web-to-lead-form-with-nfp-starter-pack-npsp/</link>
		<comments>http://www.ramtinworld.com/2013/01/how-to-use-salesforce-com-web-to-lead-form-with-nfp-starter-pack-npsp/#comments</comments>
		<pubDate>Fri, 18 Jan 2013 08:51:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Salesforce]]></category>
		<category><![CDATA[1x1 NPSP]]></category>
		<category><![CDATA[NFP Starter Pack]]></category>
		<category><![CDATA[NPSP]]></category>
		<category><![CDATA[Salesforce.com]]></category>
		<category><![CDATA[web-to-lead]]></category>

		<guid isPermaLink="false">http://www.ramtinworld.com/?p=202</guid>
		<description><![CDATA[This post explains how to use the Salesforce.com Web-to-Lead form when you are using NFP Starter Pack. Surely you have seen the recommendations from Salesforce Foundation that you should not activate Person Accounts if you are using NFP Starter Pack &#8230; <a href="http://www.ramtinworld.com/2013/01/how-to-use-salesforce-com-web-to-lead-form-with-nfp-starter-pack-npsp/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>This post explains how to use the Salesforce.com Web-to-Lead form when you are using NFP Starter Pack.</p>
<p>Surely you have seen the recommendations from Salesforce Foundation that you should not activate Person Accounts if you are using NFP Starter Pack (NPSP) for your Accounts and Contacts.</p>
<p>By default all Contacts stored in Salesforce.com need to be associated to an Account to be viewable by other users. This model is not applicable to many Contacts (supporters) in non-profit organisations. Salesforce NPSP has a solution for this model. To read more about the solutions <a href="http://salesforcefoundation.screenstepslive.com/s/npsp/m/contacts/l/28669-understanding-the-account-model" target="_blank">click here</a>.</p>
<p>Assuming you are using the 1&#215;1 account model provided by NPSP you will not be able to use the out of the box Web-to-Lead form. This is because you will need to tweak the code to make the Account associated with the Contact consistent with the 1&#215;1 account model that you have setup in NPSP. This way you will John Smith as the Account associated to John Smith contact record when you convert qualified leads in Salesforce.com.</p>
<p>To be able to do this once you generate the Web-to-Lead code in your Salesforce.com instance, add the following JavaScript code before the &lt;head&gt; tag of the web page that contains your form.</p>
<pre id="line1">&lt;script tye="<a>text/javascript</a>"&gt;
function check(){
var input = document.getElementById('company');

if(input.value.length == 0)
    input.value = "self";
}
&lt;/script&gt;</pre>
<p>This piece of JavaScript code will set the value of the Company field in your form to &#8220;Self&#8221; upon submission if this field is left blank by your prospects.</p>
<p>You will then need to alter your form tag and add the onsubmit=&#8221;check()&#8221; so your &lt;form&gt; tag will look like this:</p>
<pre id="line1">&lt;form action="<a href="view-source:https://test.salesforce.com/servlet/servlet.WebToLead?encoding=UTF-8">https://www.salesforce.com/servlet/servlet.WebToLead?encoding=UTF-8</a>" method="<a>POST</a>" onsubmit="<a>check()</a>"&gt;</pre>
<p>To read more about Salesforce Foundation and the Apps that your organisation can benefit from <a href="http://www.salesforcefoundation.org/nonprofitstarterpack" target="_blank">click here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ramtinworld.com/2013/01/how-to-use-salesforce-com-web-to-lead-form-with-nfp-starter-pack-npsp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XAMPP Error on Mac OS X 10.8.2</title>
		<link>http://www.ramtinworld.com/2012/12/xampp-error-on-mac-os-x-10-8-2/</link>
		<comments>http://www.ramtinworld.com/2012/12/xampp-error-on-mac-os-x-10-8-2/#comments</comments>
		<pubDate>Sun, 16 Dec 2012 07:33:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[MAC OS X]]></category>
		<category><![CDATA[Apache Server]]></category>
		<category><![CDATA[Web Sharing]]></category>
		<category><![CDATA[XAMPP Server]]></category>

		<guid isPermaLink="false">http://www.ramtinworld.com/?p=198</guid>
		<description><![CDATA[If you are trying to run XAMPP Apache Server on your Mac and keep getting an error message about Web Sharing is on and you need to turn it off, try the steps below: Run System Preferences Click Sharing Make &#8230; <a href="http://www.ramtinworld.com/2012/12/xampp-error-on-mac-os-x-10-8-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>If you are trying to run XAMPP Apache Server on your Mac and keep getting an error message about Web Sharing is on and you need to turn it off, try the steps below:</p>
<ol>
<li>Run System Preferences</li>
<li>Click Sharing</li>
<li>Make sure that Internet Sharing is not selected</li>
</ol>
<p>If you have followed the above steps and you still keep getting the same error message, try the steps below:</p>
<ol>
<li>Run Terminal</li>
<li>and run this command: sudo launchctl unload -w /System/Library/LaunchDaemons/org.apache.httpd.plist</li>
</ol>
<p>Go back to your XAMPP control and try to start your Apache, MySQL, and FTP.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ramtinworld.com/2012/12/xampp-error-on-mac-os-x-10-8-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Importing multi-line address fields into Salesforce.com</title>
		<link>http://www.ramtinworld.com/2012/09/importing-multi-line-address-fields-into-salesforce-com/</link>
		<comments>http://www.ramtinworld.com/2012/09/importing-multi-line-address-fields-into-salesforce-com/#comments</comments>
		<pubDate>Sun, 30 Sep 2012 09:27:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Salesforce]]></category>
		<category><![CDATA[address lines in Salesforce]]></category>
		<category><![CDATA[Data Loader]]></category>
		<category><![CDATA[Jitterbit]]></category>
		<category><![CDATA[salesforce]]></category>

		<guid isPermaLink="false">http://www.ramtinworld.com/?p=185</guid>
		<description><![CDATA[As you know with Import Wizard you can import Address Line 1, Address Line 2 and Address Line 3 separately. However if you are using Jitterbit you will not be given the option for those three fields separately, so to &#8230; <a href="http://www.ramtinworld.com/2012/09/importing-multi-line-address-fields-into-salesforce-com/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>As you know with Import Wizard you can import Address Line 1, Address Line 2 and Address Line 3 separately.</p>
<p>However if you are using Jitterbit you will not be given the option for those three fields separately, so to be able to upload your address fields into Salesforce using these tools you will need to combine your address lines into one field before you commence the process.</p>
<p>To do so, you need to create a new column in your CSV file and then use the following formula to combine the address lines:</p>
<p>= CONCATENATE (A1, CHAR(10), A2, CHAR(10), A3)</p>
<p>Where A1 is the cell that holds Address Line 1, A2 is the cell that holds Address Line 2, and A3 is the cell that holds Address line 3.</p>
<p>Data Loader or Jitterbit will convert CHAR(10) into carriage return during the import process.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ramtinworld.com/2012/09/importing-multi-line-address-fields-into-salesforce-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Record ID&#8217;s in Salesforce.com</title>
		<link>http://www.ramtinworld.com/2012/09/record-ids-in-salesforce-com/</link>
		<comments>http://www.ramtinworld.com/2012/09/record-ids-in-salesforce-com/#comments</comments>
		<pubDate>Thu, 27 Sep 2012 05:54:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Salesforce]]></category>
		<category><![CDATA[Salesforce ID]]></category>

		<guid isPermaLink="false">http://www.ramtinworld.com/?p=182</guid>
		<description><![CDATA[As we know each Record ID represents a unique record within Salesforce.com instance. There are two versions of every Record ID in salesforce.com: 15 digit case-sensitive version which is referenced in the user interface 18 digit case-insensitive version which is &#8230; <a href="http://www.ramtinworld.com/2012/09/record-ids-in-salesforce-com/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>As we know each Record ID represents a unique record within Salesforce.com instance. There are two versions of every Record ID in salesforce.com:</p>
<ul>
<li>15 digit case-sensitive version which is referenced in the user interface</li>
<li>18 digit case-insensitive version which is referenced through the API</li>
</ul>
<p>The last 3 digits of the 18 digit ID is a checksum of the capitalisation of the first 15 characters, this ID length was created as a workaround to legacy system which were not compatible with case-sensitive IDs. The API will accept the 15 digit Id as input but will always return the 18 digit Id.</p>
<p id="commentDetails">If you would like to expose the 18 digit IDs on your page layouts you can easily create a formula field and use <a href="http://login.salesforce.com/help/doc/en/customize_functions.htm#CASESAFEID" target="_blank">CASESAFEID() function</a> introduced in Spring &#8217;12 release. This formula will convert the 15-character case-sensitive ID to the 18-character case-insensitive ID. You can then export this field for further matching in Excel as VLOOKUP formula in Excel is not case sensitive.</p>
<p>On the other hand if you have the 18 digit IDs and you would like to get the 15 digit Salesforce IDs, you can create a new column and use the following formula to remove the last 3 characters and get to the 15 digit IDs:</p>
<p>= LEFT( A1, LEN( A1 ) &#8211; 3 )</p>
<p>Where A1 is the column and cell that holds the 18 digit ID.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ramtinworld.com/2012/09/record-ids-in-salesforce-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Salesforce Web-to-Lead feature for nonprofits</title>
		<link>http://www.ramtinworld.com/2012/09/using-salesforce-web-to-lead-feature-for-nonprofits/</link>
		<comments>http://www.ramtinworld.com/2012/09/using-salesforce-web-to-lead-feature-for-nonprofits/#comments</comments>
		<pubDate>Sun, 16 Sep 2012 08:21:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Salesforce]]></category>
		<category><![CDATA[bequests]]></category>
		<category><![CDATA[donation]]></category>
		<category><![CDATA[nonprofit]]></category>
		<category><![CDATA[salesforce]]></category>
		<category><![CDATA[web-to-lead]]></category>

		<guid isPermaLink="false">http://www.ramtinworld.com/?p=177</guid>
		<description><![CDATA[In Salesforce, leads are individuals who are interested in your products or services. This is a very useful functionality for nonprofit organisations. You can easily create a webform in Salesforce and embed it into your website to capture leads in &#8230; <a href="http://www.ramtinworld.com/2012/09/using-salesforce-web-to-lead-feature-for-nonprofits/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>In Salesforce, leads are individuals who are interested in your products or services. This is a very useful functionality for nonprofit organisations. You can easily create a webform in Salesforce and embed it into your website to capture leads in Salesforce. Qualified leads will be converted to Accounts, Contacts and Opportunities in Salesforce.</p>
<p>To give you an idea of how this can be used for a nonprofit organisations, let&#8217;s say you would like to capture interests from those people who are keen to know about your bequests programs. You can start the process by creating a specific campaign in Salesforce called &#8220;Bequests&#8221;, then the Web-to-Lead form can be linked to this campaign which means you can easily run reports and track each bequest at any stage.</p>
<p>To start with this functionality you will need to follow 3 key steps:</p>
<ol>
<li>Enable the Web-to-Lead functionality in Salesforce</li>
<li>Create a web form in Salesforce and embed it in your organisation website which will be the landing page for links that users click</li>
<li>Add campaign tracking to your web forms so your marketing team can see the source of inbound leads</li>
</ol>
<p>Depending on the setup of the Web-to-Lead functionality in your Salesforce instance, users who fill in the form online can receive an acknowledgement email. You can capture up to 500 inquiries per day from Salesforce Web-to-Lead form.</p>
<p>The process of creating a Web-to-Lead is very simple, but here are few tips:</p>
<ol>
<li>Make sure that you tweak the Web-to-Lead form follows the same look and feel of the rest of your website</li>
<li>Unnecessary bells and whistles will be distracting to your website visitors</li>
<li>Avoid using too many fields on your forms and use ask for the information that you will actually use</li>
</ol>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ramtinworld.com/2012/09/using-salesforce-web-to-lead-feature-for-nonprofits/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add favicons to WordPress sites</title>
		<link>http://www.ramtinworld.com/2012/08/how-to-add-favicons-to-wordpress-sites/</link>
		<comments>http://www.ramtinworld.com/2012/08/how-to-add-favicons-to-wordpress-sites/#comments</comments>
		<pubDate>Wed, 22 Aug 2012 11:45:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[favicons]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.ramtinworld.com/?p=68</guid>
		<description><![CDATA[A favorite icon (favicon) is the small graphic displayed next to the URL in the browser. Favicons do not help your site search engine ranking but they make your site stand out from others. Favicons need to be created as &#8230; <a href="http://www.ramtinworld.com/2012/08/how-to-add-favicons-to-wordpress-sites/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>A favorite icon (favicon) is the small graphic displayed next to the URL in the browser. Favicons do not help your site search engine ranking but they make your site stand out from others.</p>
<p>Favicons need to be created as 16&#215;16 pixel images and saved with .ico extension.</p>
<p>You can create favicons using any graphic application that will allow you saving of .ico files. You can also create your favicons using online services such as <a href="http://www.faviconer.com">Faviconer</a>.</p>
<h2>Installing a Favicon in WordPress</h2>
<p>If there is already an old <tt>favicon.ico</tt> file in <a title="Theme Development" href="http://codex.wordpress.org/Theme_Development#Anatomy_of_a_Theme">your current theme’s main folder</a>, delete it using <a title="FTP Clients" href="http://codex.wordpress.org/FTP_Clients">FTP Clients</a>.</p>
<ol>
<li>With an FTP Client, upload the new <tt>favicon.ico</tt> file into your current theme’s main folder.</li>
<li>Upload another copy of your <tt>favicon.ico</tt> file to the main directory of your site (ie. <tt>http://example.com/favicon.ico</tt>). This will display the favicon in your subscribers’ <a title="Glossary" href="http://codex.wordpress.org/Glossary#Feed">feedreaders</a>.</li>
</ol>
<p>In order for your favicon to show up in browsers, you will need to edit your page header and add the following code below the <tt>&lt;head&gt;</tt>HTML tag.</p>
<pre>&lt;link rel="shortcut icon" href="&lt;?php bloginfo('stylesheet_directory'); ?&gt;/favicon.ico" /&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.ramtinworld.com/2012/08/how-to-add-favicons-to-wordpress-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>About Us</title>
		<link>http://www.ramtinworld.com/2012/08/about-us/</link>
		<comments>http://www.ramtinworld.com/2012/08/about-us/#comments</comments>
		<pubDate>Tue, 21 Aug 2012 10:53:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wireframe]]></category>

		<guid isPermaLink="false">http://www.ramtinworld.com/?p=31</guid>
		<description><![CDATA[RamtinWorld have clever and creative web solutions for your business. We design and develop functional and custom branded websites, launch innovative social media campaigns, and offer a range of services to simplify and improve your entire online experience. Learn more &#8230; <a href="http://www.ramtinworld.com/2012/08/about-us/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>RamtinWorld have clever and creative web solutions for your business. We design and develop functional and custom branded websites, launch innovative social media campaigns, and offer a range of services to simplify and improve your entire online experience. Learn more <a title="About Us" href="http://www.ramtinworld.com/about-us/">about us</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ramtinworld.com/2012/08/about-us/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ignite Digital</title>
		<link>http://www.ramtinworld.com/2012/08/ignite-digital-2/</link>
		<comments>http://www.ramtinworld.com/2012/08/ignite-digital-2/#comments</comments>
		<pubDate>Tue, 21 Aug 2012 10:52:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wireframe]]></category>

		<guid isPermaLink="false">http://www.ramtinworld.com/?p=27</guid>
		<description><![CDATA[Ignite Digital provides best practice multi-channel strategic marketing consultancy and campaign management services. Read more &#62;&#62;]]></description>
				<content:encoded><![CDATA[<p>Ignite Digital provides best practice multi-channel strategic marketing consultancy and campaign management services.</p>
<p><a title="Ignite Digital" href="http://www.ramtinworld.com/our-portfolio/ignite-digital/"><span class="readmore">Read more &gt;&gt;</span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ramtinworld.com/2012/08/ignite-digital-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Date With A Mate</title>
		<link>http://www.ramtinworld.com/2012/08/date-with-a-mate/</link>
		<comments>http://www.ramtinworld.com/2012/08/date-with-a-mate/#comments</comments>
		<pubDate>Tue, 21 Aug 2012 10:41:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wireframe]]></category>

		<guid isPermaLink="false">http://www.ramtinworld.com/?p=23</guid>
		<description><![CDATA[New Australian dating events company, providing a safer, convenient and more fun way to meet people. Read more &#62;&#62;]]></description>
				<content:encoded><![CDATA[<p>New Australian dating events company, providing a safer, convenient and more fun way to meet people.</p>
<p><a title="Date With A Mate" href="http://www.ramtinworld.com/our-portfolio/date-with-a-mate/"><span class="readmore">Read more &gt;&gt;</span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ramtinworld.com/2012/08/date-with-a-mate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
