<?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>Ye Meri Life Hai - Chirag Mehta</title>
	<atom:link href="http://www.chiragmehta.info/chirag/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.chiragmehta.info/chirag</link>
	<description></description>
	<lastBuildDate>Wed, 01 Feb 2012 19:49:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Make Salesforce calendar year drop-down to show earlier years</title>
		<link>http://www.chiragmehta.info/chirag/2012/02/02/make-salesforce-calendar-year-drop-down-to-show-earlier-years/</link>
		<comments>http://www.chiragmehta.info/chirag/2012/02/02/make-salesforce-calendar-year-drop-down-to-show-earlier-years/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 19:36:13 +0000</pubDate>
		<dc:creator>Chirag Mehta</dc:creator>
				<category><![CDATA[post]]></category>
		<category><![CDATA[apex]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Salesforce]]></category>

		<guid isPermaLink="false">http://www.chiragmehta.info/chirag/2012/02/02/make-salesforce-calendar-year-drop-down-to-show-earlier-years/</guid>
		<description><![CDATA[Problem: The birthdate field on the Contact object doesn&#8217;t show previous year and neither does it allow to switch back and forth the Years part easily. Solution: Below example will show the last 100 years. Go to Setup -&#62; App Setup -&#62; Customize -&#62; User Interface. Here make sure the &#8216;Show Custom Sidebar Components on [...]]]></description>
			<content:encoded><![CDATA[<p><b>Problem:</b><br />
The birthdate field on the Contact object doesn&#8217;t show previous year and neither does it allow to switch back and forth the Years part easily.</p>
<p><b>Solution:</b><br />
Below example will show the last 100 years.</p>
<ol>
<li>Go to Setup -&gt; App Setup -&gt; Customize -&gt; User Interface. Here make sure the &#8216;Show Custom Sidebar Components on All Pages&#8217; is checked.</li>
<li>Go to Setup -&gt; App Setup -&gt; Home Page Layouts. Make sure all your Home Page Layouts have the Messages &amp; Alerts component checked.</li>
<li>Go to Setup -&gt; App Setup -&gt; Home Page Components. Here, click edit for Messages &amp; Alerts. In the textarea, copy and paste the javascript code below and save (it can just go below your normal Messages &amp; Alerts, won&#8217;t show up on the actual page).</li>
</ol>
<blockquote>
<pre>&lt;script src="/js/dojo/0.4.1/dojo.js"&gt;&lt;/script&gt;
&lt;script src="/soap/ajax/11.1/connection.js" type="text/javascript"&gt;&lt;/script&gt;
&lt;script type="text/javascript"&gt;
dojo.require("dojo.collections.Store");
dojo.require("dojo.charting.Chart");
dojo.require('dojo.json');
var arYears = getYears();
function swapYears(){
	// Contact Birth day
	if(document.getElementById('calYearPicker') != null) {
		var select = document.getElementById('calYearPicker');
		var curValue = select.value;
		var parentx = select.parentNode;
		parentx.removeChild(select);
		select = document.createElement('select');
		select.size = 1;
		select.id = 'calYearPicker';
		select.name = 'calYearPicker';
		parentx.appendChild(select);
	}
	if(select != null) {
	for(x=0;x&lt;100;x++) {
		select.options[x] = new Option(arYears[x], arYears[x], false, false);
	}
	}
}
function getYears() {
	sforce.sessionId = getCookie('sid');
	sforce.connection.sessionId=sforce.sessionId;
	var out = [];
	// generate dates for the last 100 years
	var currentTime = new Date()
	var year = currentTime.getFullYear()
	try {
		for(x=0;x&lt;100;x++) {
			out[x] = x+year-99;
		}	

	} catch(error) {
		alert(error);
	}
	return out;
}
dojo.addOnLoad(swapYears);
&lt;/script&gt;</pre>
</blockquote>
<p>Credits: Salesforce Community (http://boards.developerforce.com/t5/General-Development/Date-of-Birth-field-Calendar-years-don-t-go-back-before-this/td-p/120133)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chiragmehta.info/chirag/2012/02/02/make-salesforce-calendar-year-drop-down-to-show-earlier-years/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Email to Chatter</title>
		<link>http://www.chiragmehta.info/chirag/2012/02/01/emailtochatter/</link>
		<comments>http://www.chiragmehta.info/chirag/2012/02/01/emailtochatter/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 18:42:31 +0000</pubDate>
		<dc:creator>Chirag Mehta</dc:creator>
				<category><![CDATA[Salesforce]]></category>
		<category><![CDATA[apex]]></category>
		<category><![CDATA[chatter]]></category>
		<category><![CDATA[email2chatter]]></category>
		<category><![CDATA[emailtochatter]]></category>
		<category><![CDATA[photo]]></category>

		<guid isPermaLink="false">http://www.chiragmehta.info/chirag/?p=2421</guid>
		<description><![CDATA[Installation Url: https://login.salesforce.com/packaging/installPackage.apexp?p0=04t30000001EoJh]]></description>
			<content:encoded><![CDATA[<p><![if !IE]><iframe src="http://docs.google.com/viewer?url=http%3A%2F%2Fwww.chiragmehta.info%2Fchirag%2Fwp-content%2Fuploads%2F2011%2F11%2FEmail2Chatter.pdf&amp;embedded=true" class="pdf" frameborder="0" style="height:600px;width:620px;border:0" width="620" height="600"></iframe><![endif]><!--[if IE]><object width="620" height="600" type="application/pdf" data="http://www.chiragmehta.info/chirag/wp-content/uploads/2011/11/Email2Chatter.pdf" class="pdf ie">
<div style="width:620;height:600;text-align:center;background:#fff;color:#000;margin:0;border:0;padding:0">Unable to display PDF<br /><a href="http://www.chiragmehta.info/chirag/wp-content/uploads/2011/11/Email2Chatter.pdf">Click here to download</a></div>
<p></object><![endif]--></p>
<p>Installation Url: <a href="https://login.salesforce.com/packaging/installPackage.apexp?p0=04t30000001EoJh">https://login.salesforce.com/packaging/installPackage.apexp?p0=04t30000001EoJh</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.chiragmehta.info/chirag/2012/02/01/emailtochatter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alvida &#8230; Phir milenge &#8230; Good Bye Tata Consultancy Services &#8230;</title>
		<link>http://www.chiragmehta.info/chirag/2011/07/03/alvida-phir-milenge-good-bye-tata-consultancy-services-2/</link>
		<comments>http://www.chiragmehta.info/chirag/2011/07/03/alvida-phir-milenge-good-bye-tata-consultancy-services-2/#comments</comments>
		<pubDate>Sat, 02 Jul 2011 20:45:57 +0000</pubDate>
		<dc:creator>Chirag Mehta</dc:creator>
				<category><![CDATA[TATA]]></category>

		<guid isPermaLink="false">http://www.chiragmehta.info/chirag/?p=2419</guid>
		<description><![CDATA[Dear TCS&#8217;ers &#8230; Today, 5+ Years of my journey in TCS comes to an end. I would like to personally let you know that today I am leaving my position at Tata Consultancy Services Ltd. I have enjoyed working here and I sincerely appreciate having had the chance to work with you. Thank you for [...]]]></description>
			<content:encoded><![CDATA[<p>Dear TCS&#8217;ers &#8230;</p>
<p>Today, 5+ Years of my journey in TCS comes to an end.  I would like to personally let you know that today I am leaving my position at Tata Consultancy Services Ltd. I have enjoyed working here and I sincerely appreciate having had the chance to work with you.</p>
<p>Thank you for the support and encouragement you have provided me during my time at TCS. I will miss our interactions and projects we had worked on together.</p>
<p>I would appreciate your continued advice as I start the next phase of my career.</p>
<p>Please keep in touch. Again, thanks so much for your support and keep smiling.</p>
<p><strong>Sometimes it gets very very hard to leave things aside and walk away, as those things have already made a big foot print in your soul. </strong></p>
<p>Best regards,<br />
Chirag</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chiragmehta.info/chirag/2011/07/03/alvida-phir-milenge-good-bye-tata-consultancy-services-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I mass-move reports from one folder into another new folder</title>
		<link>http://www.chiragmehta.info/chirag/2011/06/24/how-do-i-mass-move-reports-from-one-folder-into-another-new-folder/</link>
		<comments>http://www.chiragmehta.info/chirag/2011/06/24/how-do-i-mass-move-reports-from-one-folder-into-another-new-folder/#comments</comments>
		<pubDate>Fri, 24 Jun 2011 08:58:10 +0000</pubDate>
		<dc:creator>Chirag Mehta</dc:creator>
				<category><![CDATA[Salesforce]]></category>
		<category><![CDATA[clean up]]></category>
		<category><![CDATA[mass move]]></category>
		<category><![CDATA[reports]]></category>

		<guid isPermaLink="false">http://www.chiragmehta.info/chirag/?p=2393</guid>
		<description><![CDATA[Problem Statement: We are currently cleaning up our report folders. In order to do so we want to move all unused reports into a &#8216;quarantene map&#8217; before deleting them. How can we move a large number of reports all at once into one folder? i.e., Approach1 In the Eclipse IDE Create a new project Include [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem Statement: </strong>We are currently cleaning up our report folders. In order to do so we want to move all unused reports into a &#8216;quarantene map&#8217; before deleting them. How can we move a large number of reports all at once into one folder? i.e.,</p>
<p><strong>Approach1</strong><br />
In the Eclipse IDE</p>
<ul>
<li>Create a new project</li>
<li>Include ‘reports’ or more specifically the report folders you are concerned with</li>
<li>Let Eclipse refresh the project with the reports metadata</li>
<li>In Eclipse, navigate to the reports folder you just download and then select the Report Folder you want the reports you want to move from, right click and select Properties</li>
<li>Take Note of the Location. This is the path where the metadata files are located</li>
<li>Open a windows explorer window and navigate to that path</li>
<li>Highlight all the Reports you want to move and right click Cut</li>
<li>Still in the Window explorer navigate back to the list of report folder and expand the one you want to move the reports to and right click and Paste</li>
<li>Now back in the IDE highlight the folder titled Reports and right click and Refresh and then right click again and Force.com&gt;Save to Server</li>
<li>BOOM! Now you have moved your reports.</li>
</ul>
<p>&nbsp;</p>
<p><strong>Approach2</strong></p>
<ul>
<li><span style="color: #222222;">Another alternative would be to edit each report folder on the Report page and move unused reports to the Unfiled Public Reports folder.  You can then move all the reports in your Unfiled Public Reports folder to a new &#8220;quarantine&#8221; folder.  Yeah I know, still a lot of manual effort.</span></li>
</ul>
<p>&nbsp;</p>
<p><strong>Approach3</strong></p>
<ul>
<li>A appexchange product, DashPort, allows you to mass move and delete reports and dashboards. You can check out AppExchange listing for more details: <a href="http://sites.force.com/appexchange/listingDetail?listingId=a0N300000019lulEAA" target="_blank">http://sites.force.com/appexchange/listingDetail?listingId=a0N300000019lulEAA</a></li>
</ul>
<p><strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.chiragmehta.info/chirag/2011/06/24/how-do-i-mass-move-reports-from-one-folder-into-another-new-folder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Field datatype mapping between Oracle/SQL Server and Salesforce</title>
		<link>http://www.chiragmehta.info/chirag/2011/05/16/field-datatype-mapping-between-oraclesql-server-and-salesforce/</link>
		<comments>http://www.chiragmehta.info/chirag/2011/05/16/field-datatype-mapping-between-oraclesql-server-and-salesforce/#comments</comments>
		<pubDate>Mon, 16 May 2011 12:12:35 +0000</pubDate>
		<dc:creator>Chirag Mehta</dc:creator>
				<category><![CDATA[Salesforce]]></category>
		<category><![CDATA[create table]]></category>
		<category><![CDATA[data type]]></category>
		<category><![CDATA[field mapping]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[sql server]]></category>

		<guid isPermaLink="false">http://www.chiragmehta.info/chirag/?p=2383</guid>
		<description><![CDATA[Over the time I have started developing a tool that pulls salesforce metadata information and creates oracle/sql server &#8220;create table&#8221; scripts. Isn&#8217;t that really awesome!! The most useful part of the tool is field data type mapping i.e, what data type of salesforce maps to what data type of oracle/sql server. Below is the list [...]]]></description>
			<content:encoded><![CDATA[<p>Over the time I have started developing a tool that pulls salesforce metadata information and creates oracle/sql server &#8220;create table&#8221; scripts. Isn&#8217;t that really awesome!!</p>
<p>The most useful part of the tool is field data type mapping i.e, what data type of salesforce maps to what data type of oracle/sql server. Below is the list of mapping that I used while generating create table scripts &#8211; enjoy!!</p>
<table border="0" cellspacing="0" cellpadding="0" width="568" height="453">
<colgroup>
<col width="133"></col>
<col span="2" width="161"></col>
</colgroup>
<tbody>
<tr height="20">
<td width="133" height="20"><strong>salesforce   data type</strong></td>
<td width="161"><strong>sql server data   type</strong></td>
<td width="161"><strong>oracle data   type</strong></td>
</tr>
<tr height="20">
<td height="20">boolean</td>
<td>bit</td>
<td>varchar2(1)</td>
</tr>
<tr height="20">
<td height="20">date</td>
<td>smalldatetime</td>
<td>date</td>
</tr>
<tr height="20">
<td height="20">datetime</td>
<td>Datetime</td>
<td>date</td>
</tr>
<tr height="20">
<td height="20">currency</td>
<td>decimal(precision,scale)</td>
<td>number(precision,scale)</td>
</tr>
<tr height="20">
<td height="20">double</td>
<td>decimal(precision,scale)</td>
<td>number(precision,scale)</td>
</tr>
<tr height="20">
<td height="20">int</td>
<td>Int</td>
<td>number(10)</td>
</tr>
<tr height="20">
<td height="20">picklist</td>
<td>nvarchar(255)</td>
<td>varchar2(255)</td>
</tr>
<tr height="20">
<td height="20">id</td>
<td>nvarchar(18)</td>
<td>varchar2(18)</td>
</tr>
<tr height="20">
<td height="20">reference</td>
<td>nvarchar(18)</td>
<td>varchar2(18)</td>
</tr>
<tr height="20">
<td height="20">textarea</td>
<td>nvarchar(max)</td>
<td>varchar2(4000)</td>
</tr>
<tr height="20">
<td height="20">email</td>
<td>nvarchar(255)</td>
<td>varchar2(255)</td>
</tr>
<tr height="20">
<td height="20">phone</td>
<td>nvarchar(255)</td>
<td>varchar2(255)</td>
</tr>
<tr height="20">
<td height="20">url</td>
<td>nvarchar(255)</td>
<td>varchar2(255)</td>
</tr>
<tr height="20">
<td height="20">textarea</td>
<td>nvarchar(max)</td>
<td>varchar2(4000)</td>
</tr>
<tr height="20">
<td height="20">multipicklist</td>
<td>nvarchar(max)</td>
<td>varchar2(4000)</td>
</tr>
<tr height="20">
<td height="20">anyType</td>
<td>nvarchar(max)</td>
<td>varchar2(4000)</td>
</tr>
<tr height="20">
<td height="20">percent</td>
<td>decimal(5,2)</td>
<td>number(5,2)</td>
</tr>
<tr height="20">
<td height="20">combobox</td>
<td>nvarchar(max)</td>
<td>varchar2(4000)</td>
</tr>
<tr height="20">
<td height="20">base64</td>
<td>nvarchar(max)</td>
<td>varchar2(4000)</td>
</tr>
<tr height="20">
<td height="20">time</td>
<td>nvarchar(255)</td>
<td>varchar2(255)</td>
</tr>
<tr height="20">
<td height="20">string</td>
<td>nvarchar(length)</td>
<td>varchar2(length)</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chiragmehta.info/chirag/2011/05/16/field-datatype-mapping-between-oraclesql-server-and-salesforce/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Apex Visualforce Code Scanning directly in Force.com IDE</title>
		<link>http://www.chiragmehta.info/chirag/2011/02/25/apex-visualforce-code-scanning-directly-in-force-com-ide/</link>
		<comments>http://www.chiragmehta.info/chirag/2011/02/25/apex-visualforce-code-scanning-directly-in-force-com-ide/#comments</comments>
		<pubDate>Fri, 25 Feb 2011 07:37:05 +0000</pubDate>
		<dc:creator>Chirag Mehta</dc:creator>
				<category><![CDATA[Salesforce]]></category>

		<guid isPermaLink="false">http://www.chiragmehta.info/chirag/?p=2380</guid>
		<description><![CDATA[A year back Salesforce began supporting source code analysis on Force.com through http://security.force.com/sourcescanner. But there wasn&#8217;t any integration with the Force.com IDE. Checkmarx, the company Salesforce partnered with to provide Force.com source scanning, has stepped up and made an offering available to all of us. For 90 days, for the first 1000 developers, they&#8217;ll give [...]]]></description>
			<content:encoded><![CDATA[<p>A year back Salesforce began supporting source code analysis on Force.com through http://security.force.com/sourcescanner.  But there wasn&#8217;t any integration with the Force.com IDE.</p>
<p>Checkmarx, the company Salesforce partnered with to provide Force.com source scanning, has stepped up and made an offering available to all of us.  For 90 days, for the first 1000 developers, they&#8217;ll give away a free version of an Eclipse plugin that can scan all Force.com code (under 100k LoC).  The great thing about this is that you get actionable results, directly in your IDE, without having to cross reference line numbers in a report like you have to do today.  I hope this is a great resource for all of us!</p>
<p>Download a copy at http://www.apexscanner.com. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.chiragmehta.info/chirag/2011/02/25/apex-visualforce-code-scanning-directly-in-force-com-ide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Salesforce Ideas Coming in Spring &#8217;11 Release</title>
		<link>http://www.chiragmehta.info/chirag/2011/01/04/salesforce-ideas-coming-in-spring-11-release/</link>
		<comments>http://www.chiragmehta.info/chirag/2011/01/04/salesforce-ideas-coming-in-spring-11-release/#comments</comments>
		<pubDate>Tue, 04 Jan 2011 11:09:31 +0000</pubDate>
		<dc:creator>Chirag Mehta</dc:creator>
				<category><![CDATA[Salesforce]]></category>
		<category><![CDATA[apex]]></category>
		<category><![CDATA[chatter]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[google chrome]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[report]]></category>
		<category><![CDATA[spring11]]></category>

		<guid isPermaLink="false">http://www.chiragmehta.info/chirag/?p=2360</guid>
		<description><![CDATA[Check out which Ideas are Coming in the Spring &#8217;11 Release! Criteria Based Sharing (includes by Record Type) Google Chrome Web Browser makes Salesforce Faster &#8211; Make Google Chrome available &#8220;Like&#8221; button is needed in Chatter Notification Icon for Tweets / Chatter Allow for in-line editing of fields on visualforce pages Allow more than three [...]]]></description>
			<content:encoded><![CDATA[<p>Check out which Ideas are Coming in the Spring &#8217;11 Release!</p>
<p><img title="Spring'11 Logo" src="https://sites.secure.force.com/success/servlet/rtaImage?eid=08730000000KAjb&amp;feoid=Body&amp;refid=0EM30000000e4sU" alt="Spring'11 Logo" width="452" height="166" /></p>
<ul>
<li><a href="https://sites.secure.force.com/success/ideaView?c=09a30000000D9xtAAC&amp;id=08730000000BrqSAAS" target="_blank">Criteria Based Sharing (includes by Record Type)</a> <img title="Favorite" src="http://www.photoshoplady.com/wp-content/themes/PhotoshopLady/images/favourite.png" alt="Favorite" width="12" height="12" /></li>
<li><a href="https://sites.secure.force.com/success/ideaView?c=09a30000000D9xtAAC&amp;id=08730000000BqTxAAK" target="_blank">Google Chrome Web Browser makes Salesforce Faster &#8211; Make Google Chrome available</a> <img title="Favorite" src="http://www.photoshoplady.com/wp-content/themes/PhotoshopLady/images/favourite.png" alt="Favorite" width="12" height="12" /></li>
<li><a href="https://sites.secure.force.com/success/ideaView?c=09a30000000D9xtAAC&amp;id=087300000007akGAAQ" target="_blank">&#8220;Like&#8221; button is needed in Chatter</a></li>
<li><a href="https://sites.secure.force.com/success/ideaView?c=09a30000000D9xtAAC&amp;id=087300000007eg0AAA" target="_blank">Notification Icon for Tweets / Chatter</a> <img title="Favorite" src="http://www.photoshoplady.com/wp-content/themes/PhotoshopLady/images/favourite.png" alt="Favorite" width="12" height="12" /></li>
<li><a href="https://sites.secure.force.com/success/ideaView?c=09a30000000D9xtAAC&amp;id=08730000000BrrcAAC" target="_blank">Allow for in-line editing of fields on visualforce pages</a> <img title="Favorite" src="http://www.photoshoplady.com/wp-content/themes/PhotoshopLady/images/favourite.png" alt="Favorite" width="12" height="12" /></li>
<li><a href="https://sites.secure.force.com/success/ideaView?c=09a30000000D9xtAAC&amp;id=08730000000IWvwAAG" target="_blank">Allow more than three &#8220;Run as logged-in user&#8221; Dashboards</a></li>
<li><a href="https://sites.secure.force.com/success/ideaView?c=09a30000000D9xtAAC&amp;id=08730000000J80qAAC" target="_blank">Report Builder: Type to search filter fields</a> <img title="Favorite" src="http://www.photoshoplady.com/wp-content/themes/PhotoshopLady/images/favourite.png" alt="Favorite" width="12" height="12" /></li>
<li><a href="https://sites.secure.force.com/success/ideaView?c=09a30000000D9xtAAC&amp;id=08730000000J4HvAAK" target="_blank">salesforce for outlook &#8211; save email attachments to salesforce</a></li>
<li><a href="https://sites.secure.force.com/success/ideaView?c=09a30000000D9xtAAC&amp;id=08730000000JN36AAG" target="_blank">Salesforce for Outlook &#8211; selective association of emails to records</a></li>
<li><a href="https://sites.secure.force.com/success/ideaView?c=09a30000000D9xtAAC&amp;id=08730000000BrmvAAC" target="_blank">Rebrand Trialforce Welcome Message</a></li>
<li><a href="https://sites.secure.force.com/success/ideaView?c=09a30000000D9xtAAC&amp;id=087300000007XiSAAU" target="_blank">Sort Order of Quote Line Items</a></li>
<li><a href="https://sites.secure.force.com/success/ideaView?c=09a30000000D9xtAAC&amp;id=08730000000I6GVAA0" target="_blank">Set the dashboard Running User as &#8220;current user&#8221; (dynamic) Enable this for EE</a></li>
<li><a href="https://sites.secure.force.com/success/ideaView?c=09a30000000D9xtAAC&amp;id=08730000000BpF4AAK" target="_blank">RSS Feed for trust.salesforce.com</a> <img title="Favorite" src="http://www.photoshoplady.com/wp-content/themes/PhotoshopLady/images/favourite.png" alt="Favorite" width="12" height="12" /><img title="Favorite" src="http://www.photoshoplady.com/wp-content/themes/PhotoshopLady/images/favourite.png" alt="Favorite" width="12" height="12" /></li>
<li><a href="https://sites.secure.force.com/success/ideaView?c=09a30000000D9xtAAC&amp;id=08730000000HETQAA4" target="_blank">Add delete button for inbound change sets</a> <img title="Favorite" src="http://www.photoshoplady.com/wp-content/themes/PhotoshopLady/images/favourite.png" alt="Favorite" width="12" height="12" /></li>
<li><a href="https://sites.secure.force.com/success/ideaView?c=09a30000000D9xtAAC&amp;id=087300000007sRpAAI" target="_blank">SF Knowledge Articles: where is the number?</a></li>
<li><a href="https://sites.secure.force.com/success/ideaView?c=09a30000000D9xtAAC&amp;id=08730000000Br07AAC" target="_blank">Import / Export in the Translation Workbench</a></li>
<li><a href="https://sites.secure.force.com/success/ideaView?c=09a30000000D9xtAAC&amp;id=08730000000IUxdAAG" target="_blank">New Dashboard Editor: Please support Google Chrome!</a></li>
<li><a href="https://sites.secure.force.com/success/ideaView?c=09a30000000D9xtAAC&amp;id=08730000000HOIVAA4" target="_blank">Enable open web technologies like Google Chrome Frame in IE</a> <img title="Favorite" src="http://www.photoshoplady.com/wp-content/themes/PhotoshopLady/images/favourite.png" alt="Favorite" width="12" height="12" /></li>
<li><a href="https://sites.secure.force.com/success/ideaView?c=09a30000000D9xtAAC&amp;id=08730000000Bq4DAAS" target="_blank">Making the Public Knowledge Base Shell Available in Different Languages</a></li>
<li><a href="https://sites.secure.force.com/success/ideaView?c=09a30000000D9xtAAC&amp;id=08730000000JY1kAAG" target="_blank">Salesforce for Outlook: support for delegated authentication (SSO)</a></li>
<li><a href="https://sites.secure.force.com/success/ideaView?c=09a30000000D9xtAAC&amp;id=08730000000JN3BAAW" target="_blank">Make Report Builder available to the Prof. Edition Standard User profile</a></li>
<li><a href="https://sites.secure.force.com/success/ideaView?c=09a30000000D9xtAAC&amp;id=08730000000Bpa4AAC" target="_blank">Warning Message in Outlook when password will expire</a></li>
<li><a href="https://sites.secure.force.com/success/ideaView?c=09a30000000D9xtAAC&amp;id=08730000000JyTOAA0" target="_blank">Highlight the Edit Custom Filters button in the new report builder</a></li>
<li><a href="https://sites.secure.force.com/success/ideaView?c=09a30000000D9xtAAC&amp;id=08730000000KJqxAAG" target="_blank">Allow Override of Labels of Managed Custom Objects</a></li>
</ul>
<p><img class="alignnone" title="Favorite" src="http://www.photoshoplady.com/wp-content/themes/PhotoshopLady/images/favourite.png" alt="Favorite" width="12" height="12" /> : My Favorites</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chiragmehta.info/chirag/2011/01/04/salesforce-ideas-coming-in-spring-11-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is Database.com Dreamforce&#8217;10 new baby &#8230;</title>
		<link>http://www.chiragmehta.info/chirag/2010/12/07/is-database-com-dreamforce10-new-baby/</link>
		<comments>http://www.chiragmehta.info/chirag/2010/12/07/is-database-com-dreamforce10-new-baby/#comments</comments>
		<pubDate>Tue, 07 Dec 2010 17:31:02 +0000</pubDate>
		<dc:creator>Chirag Mehta</dc:creator>
				<category><![CDATA[Salesforce]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[dreamforce]]></category>
		<category><![CDATA[keynote]]></category>
		<category><![CDATA[marc]]></category>
		<category><![CDATA[tom]]></category>

		<guid isPermaLink="false">http://www.chiragmehta.info/chirag/?p=2353</guid>
		<description><![CDATA[Came acrorss a site Database.com, is that a new baby to be delivered in Today&#8217;s Dremaforce&#8217;10 conference? Check this Read more @ http://www.database.com/]]></description>
			<content:encoded><![CDATA[<p>Came acrorss a site Database.com, is that a new baby to be delivered in Today&#8217;s Dremaforce&#8217;10 conference?</p>
<p>Check this<br />
<img src="http://blog.database.com/wp-content/uploads/2010/12/introducing.png" alt="Database.com" width="461" height="262" /><br />
<img src="http://blog.database.com/wp-content/uploads/2010/12/open.png" alt="Database.com" width="461" height="262" /></p>
<p>Read more @ <a href="http://www.database.com/">http://www.database.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.chiragmehta.info/chirag/2010/12/07/is-database-com-dreamforce10-new-baby/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook Email or FEmail or FMail or Future Email &#8230;.?</title>
		<link>http://www.chiragmehta.info/chirag/2010/11/15/facebook-email/</link>
		<comments>http://www.chiragmehta.info/chirag/2010/11/15/facebook-email/#comments</comments>
		<pubDate>Mon, 15 Nov 2010 01:54:21 +0000</pubDate>
		<dc:creator>Chirag Mehta</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[fb.com]]></category>
		<category><![CDATA[fmail]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.chiragmehta.info/chirag/?p=2349</guid>
		<description><![CDATA[Are we going to hear something spectacular or something really new n future Email service from Facebook.com? There are lot of speculations on inet about Facebook about to announce it&#8217;s email service tomorrow (15 Nov, 2010). Let&#8217;s wait and watch. However there are few interesting facts Facebook has acquired the FB.com domain name. The whois [...]]]></description>
			<content:encoded><![CDATA[<p>Are we going to hear something spectacular or something really new n future Email service from Facebook.com? There are lot of speculations on inet about Facebook about to announce it&#8217;s email service tomorrow (15 Nov, 2010). Let&#8217;s wait and watch.</p>
<p>However there are few interesting facts</p>
<ul>
<li>Facebook has acquired the FB.com domain name. The whois record for the domain name just updated to show Facebook’s name and nameservers for the domain name.</li>
<li>Try and send email to  &#8220;yourprofileid@fb.com&#8221; (i.e., chiragmehta84@fb.com), the email doesn&#8217;t bounce back</li>
<li><a href="mail.facebook.com" target="_blank">mail.facebook.com</a> &#8211; prompts you with username and password to login to facebook email &#8211; Is it employee email account login or is it future login portal for the public</li>
</ul>
<p><strong>So there&#8217;s something really coming up this Monday, FEmail or FMail or Future Email &#8230;.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.chiragmehta.info/chirag/2010/11/15/facebook-email/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Facebook latest feature : &#8220;Download Your Information&#8221;</title>
		<link>http://www.chiragmehta.info/chirag/2010/11/15/facebook-latest-feature-download-your-information/</link>
		<comments>http://www.chiragmehta.info/chirag/2010/11/15/facebook-latest-feature-download-your-information/#comments</comments>
		<pubDate>Mon, 15 Nov 2010 01:27:07 +0000</pubDate>
		<dc:creator>Chirag Mehta</dc:creator>
				<category><![CDATA[download]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[offline]]></category>
		<category><![CDATA[your information]]></category>
		<category><![CDATA[zip]]></category>

		<guid isPermaLink="false">http://www.chiragmehta.info/chirag/?p=2343</guid>
		<description><![CDATA[Just came across a new latest feature from Facebook, &#8220;Download Your Information.&#8221; Feature was launched almost a month back, I just came across it today. This tool lets you download a copy of your information, including your photos and videos, posts on your wall, all of your messages, your friend list and other content you [...]]]></description>
			<content:encoded><![CDATA[<p>Just came across a new latest feature from Facebook, &#8220;Download Your Information.&#8221; Feature was launched almost a month back, I just came across it today.</p>
<blockquote><p>This tool lets you download a copy of your information, including your photos and videos, posts on your wall, all of your messages, your friend list and other content you have shared on your profile. Within this zip file you will have access to your data in a simple, browseable manner. </p></blockquote>
<p>Learn More about downloading a copy of your information @ <a target="_blank" href="https://register.facebook.com/help/?topic=download">https://register.facebook.com/help/?topic=download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.chiragmehta.info/chirag/2010/11/15/facebook-latest-feature-download-your-information/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

