<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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>Forcetalks | Surbhi | Activity</title>
	<link>http://52.205.218.194/surbhisharma/activity/</link>
	<atom:link href="http://52.205.218.194/surbhisharma/activity/feed/" rel="self" type="application/rss+xml" />
	<description>Activity feed for Surbhi.</description>
	<lastBuildDate>Wed, 13 May 2026 23:32:19 +0530</lastBuildDate>
	<generator>https://buddypress.org/?v=2.16.0</generator>
	<language>en-US</language>
	<ttl>30</ttl>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>2</sy:updateFrequency>
		
								<item>
				<guid isPermaLink="false">6448b12ff72ca0ca780d6011e79fc873</guid>
				<title>Surbhi replied to the discussion We are using an email template to send emails but Can we send that Email as cc and bcc. Is there a way to get around this? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/we-are-using-an-email-template-to-send-emails-but-can-we-send-that-email-as-cc-and-bcc-is-there-a-way-to-get-around-this/#post-15943</link>
				<pubDate>Thu, 08 Sep 2016 14:12:39 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/we-are-using-an-email-template-to-send-emails-but-can-we-send-that-email-as-cc-and-bcc-is-there-a-way-to-get-around-this/#post-15943"><span class="bb-reply-lable">Reply to</span> We are using an email template to send emails but Can we send that Email as cc and bcc. Is there a way to get around this?</a></p> <div class="bb-content-inr-wrap"><p>Hi Pranav,</p>
<p>If you are using workflow email alerts to send emails, then you can set email as CC from email alert. If you are sending from code, then you can use setBccAddresses(bccAddresses) and setCcAddresses(ccAddresses) from SingleEmailMessage Methods.</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">bf7ef4976d78bfdada3734640c04c056</guid>
				<title>Surbhi replied to the discussion How can I get &#039;Recent Items&#039; object Ids in Salesforce Apex (soql) is it possible? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-can-i-get-recent-items-object-ids-in-apex-soql-is-it-possible/#post-15942</link>
				<pubDate>Thu, 08 Sep 2016 13:52:42 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-can-i-get-recent-items-object-ids-in-salesforce-apex-soql-is-it-possible/#post-15942"><span class="bb-reply-lable">Reply to</span> How can I get 'Recent Items' object Ids in Salesforce Apex (soql) is it possible?</a></p> <div class="bb-content-inr-wrap"><p>Hi Tanu,</p>
<p>Below is the SOQL sample query:</p>
<p>SELECT Id, Name FROM RecentlyViewed WHERE Type IN (&#8216;Account&#8217;, &#8216;Contact&#8217;) ORDER BY LastViewedDate DESC</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">8e3cba54755bd986c7e81ac94399c20e</guid>
				<title>Surbhi replied to the discussion Post Install Script in Salesforce for deleting custom object data in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/post-install-script-in-salesforce-for-deleting-custom-object-data/#post-15929</link>
				<pubDate>Thu, 08 Sep 2016 08:34:02 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/post-install-script-in-salesforce-for-deleting-custom-object-data/#post-15929"><span class="bb-reply-lable">Reply to</span> Post Install Script in Salesforce for deleting custom object data</a></p> <div class="bb-content-inr-wrap"><p>Hi Bhavesh,</p>
<p>In the for loop, where you are deleting the record, you are performing <strong>DML operation</strong> inside the for loop and we can perform only limited DML operation in a thread.</p>
<p>Instead of deleting this in for loop, you can add the records to a list and then delete that list. But as you are querying the custom object data into a list, then&hellip;<span class="activity-read-more" id="activity-read-more-12612"><a target='_blank' href="https://www.forcetalks.com/salesforce-topic/post-install-script-in-salesforce-for-deleting-custom-object-data/#post-15929" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">f8f4def5c6531731e52e838819f4bf35</guid>
				<title>Surbhi replied to the discussion In Salesforce, how can I tell the day of the week on a date? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-can-i-tell-the-day-of-the-week-on-a-date/#post-15847</link>
				<pubDate>Wed, 07 Sep 2016 06:18:24 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/in-salesforce-how-can-i-tell-the-day-of-the-week-on-a-date/#post-15847"><span class="bb-reply-lable">Reply to</span> In Salesforce, how can I tell the day of the week on a date?</a></p> <div class="bb-content-inr-wrap"><p>Hi Mohit,</p>
<p>You can try the below code:</p>
<p>Datetime dt = DateTime.newInstance(Date.today(), Time.newInstance(0, 0, 0, 0));<br />
String dayOfWeek=dt.format(&#8216;EEEE&#8217;);<br />
System.debug(&#8216;Day : &#8216; + dayOfWeek);</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">9765add16357ff92ac68276cb1c78841</guid>
				<title>Surbhi replied to the discussion How can we schedule a class to run every 30 min in Salesforce? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-can-we-schedule-a-class-to-run-every-30-min-in-salesforce/#post-15817</link>
				<pubDate>Tue, 06 Sep 2016 13:35:43 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-can-we-schedule-a-class-to-run-every-30-min-in-salesforce/#post-15817"><span class="bb-reply-lable">Reply to</span> How can we schedule a class to run every 30 min in Salesforce?</a></p> <div class="bb-content-inr-wrap"><p>Hi Mohit,</p>
<p>You can try below code:</p>
<p>system.schedule(&#8216;Scheduled hourly job &#8216;, &#8216;0 0 0/1 1/1 * ? *&#8217;, new NameOfBatchClassScheduler());<br />
system.schedule(&#8216;Scheduled hourly job&#8217;, &#8216;0 30 0/1 1/1 * ? *&#8217;, new NameOfBatchClassScheduler());</p>
<p>The first will schedule class for i.e. 10:00 , 11: 00,&#8230;etc. and the second will for i.e. 10:30, 11:30,.. etc.</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">98842186d5dc2f5e8d78608d316a95b5</guid>
				<title>Surbhi replied to the discussion How can we disable the command button after first click? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-can-we-disable-the-command-button-after-first-click-so-that-double-click-can-we-avoided/#post-15816</link>
				<pubDate>Tue, 06 Sep 2016 13:26:44 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-can-we-disable-the-command-button-after-first-click/#post-15816"><span class="bb-reply-lable">Reply to</span> How can we disable the command button after first click?</a></p> <div class="bb-content-inr-wrap"><p>Hi Mohit,</p>
<p>You can use a JavaScript function for disabling the custom button. This function will run with &#8220;onclick&#8221; event of the button.</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">7be6420c34456547322184c5e2a21782</guid>
				<title>Surbhi replied to the discussion How can I store/manage username and password of multiple salesforce orgs? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-can-i-storemanage-username-and-password-of-multiple-salesforce-orgs/#post-15756</link>
				<pubDate>Wed, 31 Aug 2016 17:00:18 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-can-i-storemanage-username-and-password-of-multiple-salesforce-orgs/#post-15756"><span class="bb-reply-lable">Reply to</span> How can I store/manage username and password of multiple salesforce orgs?</a></p> <div class="bb-content-inr-wrap"><p>Hi Pranav,</p>
<p>An extension, which I used for this purpose, is Force.com LOGINS Options. You can use it.</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">7992ff071ec0bc23876ff46871737c47</guid>
				<title>Surbhi replied to the discussion Is there any way to get the id&#039;s of only inserted accounts not the updated accounts id? How this can be done through apex? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/is-there-any-way-to-get-the-ids-of-only-inserted-accounts-not-the-updated-accounts-id-how-this-can-be-done-through-apex/#post-15736</link>
				<pubDate>Tue, 30 Aug 2016 17:41:40 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/is-there-any-way-to-get-the-ids-of-only-inserted-accounts-not-the-updated-accounts-id-how-this-can-be-done-through-apex/#post-15736"><span class="bb-reply-lable">Reply to</span> Is there any way to get the id's of only inserted accounts not the updated accounts id? How this can be done through apex?</a></p> <div class="bb-content-inr-wrap"><p>Hi Pranav,</p>
<p>Please refer below code:</p>
<p>Account acct = new Account(Name=&#8217;SFDC Account&#8217;);<br />
insert acct;</p>
<p>system.debug(&#8220;Inserted Account Id = &#8220;+acct.Id);</p>
<p>As much I get from your question, this will give you id of inserted account. Please let me know if you have any query.</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">261aa71c0cf39950274b3fe2c31d9b64</guid>
				<title>Surbhi replied to the discussion Is it possible to call a single batch job from multiple schedule apex? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/is-it-possible-to-call-a-single-batch-job-from-multiple-schedule-apex/#post-15735</link>
				<pubDate>Tue, 30 Aug 2016 17:36:30 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/is-it-possible-to-call-a-single-batch-job-from-multiple-schedule-apex/#post-15735"><span class="bb-reply-lable">Reply to</span> Is it possible to call a single batch job from multiple schedule apex?</a></p> <div class="bb-content-inr-wrap"><p>Hi Tanu,</p>
<p>This won&#8217;t cause you any problems. The execution context will be different each time the batch job is fired.</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">41a5851c05e35179b34e59e6873b181e</guid>
				<title>Surbhi replied to the discussion How can be a future annotation be used in a trigger? Is that trigger works in synchronous manner or asynchronous manner? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-can-be-a-future-annotation-be-used-in-a-trigger-is-that-trigger-works-in-synchronous-manner-or-asynchronous-manner/#post-15722</link>
				<pubDate>Tue, 30 Aug 2016 13:45:51 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-can-be-a-future-annotation-be-used-in-a-trigger-is-that-trigger-works-in-synchronous-manner-or-asynchronous-manner/#post-15722"><span class="bb-reply-lable">Reply to</span> How can be a future annotation be used in a trigger? Is that trigger works in synchronous manner or asynchronous manner?</a></p> <div class="bb-content-inr-wrap"><p>Hi Pranav,</p>
<p>You just have to add <strong>@future</strong> in the trigger. This annotation is executed asynchronously when Salesforce has available resources. It is mainly used if in case, there are some calculation on an object, which is to be done after insert but no matter with the user operation. Then this can be done asynchronously with this&hellip;<span class="activity-read-more" id="activity-read-more-12460"><a target='_blank' href="https://www.forcetalks.com/salesforce-topic/how-can-be-a-future-annotation-be-used-in-a-trigger-is-that-trigger-works-in-synchronous-manner-or-asynchronous-manner/#post-15722" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">44a474493dc6258209f4bc9a4839d092</guid>
				<title>Surbhi replied to the discussion How to create custom fields of standard or custom object through apex code? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-create-custom-fields-of-standard-or-custom-object-through-apex-code/#post-15717</link>
				<pubDate>Tue, 30 Aug 2016 12:44:38 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-create-custom-fields-of-standard-or-custom-object-through-apex-code/#post-15717"><span class="bb-reply-lable">Reply to</span> How to create custom fields of standard or custom object through apex code?</a></p> <div class="bb-content-inr-wrap"><p>Hi Tanu,</p>
<p>You can refer to Metadata API document. Also please have a look on below code:</p>
<p>CustomObject co = new CustomObject();<br />
co.setFullName(objectName+&#8221;__c&#8221;);<br />
co.setDeploymentStatus(DeploymentStatus.Deployed);<br />
co.setDescription(&#8220;Created by the WSC using the&hellip;<span class="activity-read-more" id="activity-read-more-12455"><a target='_blank' href="https://www.forcetalks.com/salesforce-topic/how-to-create-custom-fields-of-standard-or-custom-object-through-apex-code/#post-15717" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">20503369968af544b08ab50d89af14e7</guid>
				<title>Surbhi replied to the discussion How can we do build test class for the pagereference method? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-can-we-do-unit-testing-for-the-pagereference-method/#post-15666</link>
				<pubDate>Fri, 26 Aug 2016 15:46:57 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-can-we-do-unit-testing-for-the-pagereference-method/#post-15666"><span class="bb-reply-lable">Reply to</span> How can we do build test class for the pagereference method?</a></p> <div class="bb-content-inr-wrap"><p>Hi Mohit,</p>
<p>You can refer to below code:</p>
<p>@isTest<br />
private class testMyController{</p>
<p>private static testMethod void testAutoRun() {</p>
<p>test.startTest();<br />
PageReference pageRef = Page.yourPageName;<br />
Account acc = new Account(Name=&#8217;Abce&#8217;);<br />
insert acc;<br />
Opportunity testOppty =&hellip;<span class="activity-read-more" id="activity-read-more-12432"><a target='_blank' href="https://www.forcetalks.com/salesforce-topic/how-can-we-do-unit-testing-for-the-pagereference-method/#post-15666" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">7f1f67c3b596033046fe12fc305f5f01</guid>
				<title>Surbhi replied to the discussion What is the difference between ?id= and &#38;id= in url field? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/what-is-the-difference-between-id-and-id-in-url-field/#post-15665</link>
				<pubDate>Fri, 26 Aug 2016 15:05:22 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/what-is-the-difference-between-id-and-id-in-url-field/#post-15665"><span class="bb-reply-lable">Reply to</span> What is the difference between ?id= and &amp;id= in url field?</a></p> <div class="bb-content-inr-wrap"><p>Hi Pranav,</p>
<p>When you have to provide multiple parameters in the url, then you use <strong>&amp; </strong>for separating the parameters. Otherwise use <strong>?id=</strong> .</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">7449bb6b5b8d2d1ced001e966cddcb72</guid>
				<title>Surbhi replied to the discussion How can we compare the multiple record fetch from soql query to each other? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-can-we-compare-the-multiple-record-fetch-from-soql-query-to-each-other/#post-15663</link>
				<pubDate>Fri, 26 Aug 2016 14:29:12 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-can-we-compare-the-multiple-record-fetch-from-soql-query-to-each-other/#post-15663"><span class="bb-reply-lable">Reply to</span> How can we compare the multiple record fetch from soql query to each other?</a></p> <div class="bb-content-inr-wrap"><p>Hi Mohit,</p>
<p>You can use aggregate functions here. Use field in Group By for criteria of comparison.</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">6fa74b21008a519d7e21268aa6ed1321</guid>
				<title>Surbhi replied to the discussion How to create a new field automatically in related contact when a checkbox is checked on account page? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-create-a-new-field-automatically-in-related-contact-when-a-checkbox-is-checked-on-account-page/#post-15660</link>
				<pubDate>Fri, 26 Aug 2016 14:23:11 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-create-a-new-field-automatically-in-related-contact-when-a-checkbox-is-checked-on-account-page/#post-15660"><span class="bb-reply-lable">Reply to</span> How to create a new field automatically in related contact when a checkbox is checked on account page?</a></p> <div class="bb-content-inr-wrap"><p>Hi Tanu,</p>
<p>You can achieve this using trigger and for creating new field from apex, you have to use SOAP version of the API (Metadata API).</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">ca10413a768667b3b17b3ec669cdbc44</guid>
				<title>Surbhi replied to the discussion How can I concatenate two fields into a custom Salesforce field? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-can-i-concatenate-two-fields-into-a-custom-salesforce-field/#post-15659</link>
				<pubDate>Fri, 26 Aug 2016 14:19:08 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-can-i-concatenate-two-fields-into-a-custom-salesforce-field/#post-15659"><span class="bb-reply-lable">Reply to</span> How can I concatenate two fields into a custom Salesforce field?</a></p> <div class="bb-content-inr-wrap"><p>Hi Pranav,</p>
<p>You can create a formula field that will display the concatenated value.</p>
<p>The formula field would be of type text and would have formula similar to</p>
<p>FieldName1+ &#8216; &#8216; +FieldName2</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">9f90d79dbd6360810f2c6675d8283789</guid>
				<title>Surbhi updated their profile</title>
				<link>http://52.205.218.194/activity/p/12422/</link>
				<pubDate>Fri, 26 Aug 2016 13:38:23 +0530</pubDate>

				
									<slash:comments>0</slash:comments>
				
							</item>
					<item>
				<guid isPermaLink="false">91a25c95fa39ed9180fc6c8886afff5b</guid>
				<title>Surbhi replied to the discussion How can we restrict user to login only through federated SSO? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-can-we-restrict-user-to-login-only-through-federated-sso/#post-13842</link>
				<pubDate>Thu, 30 Jun 2016 14:33:16 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-can-we-restrict-user-to-login-only-through-federated-sso/#post-13842"><span class="bb-reply-lable">Reply to</span> How can we restrict user to login only through federated SSO?</a></p> <div class="bb-content-inr-wrap"><p>Hi Naman,</p>
<p>Please follow the below approach:</p>
<p>Setup &gt; Domain Management &gt; My Domain<br />
1. Enable <strong>MyDomain.</strong><br />
2. Follow the instructions to set it up and deploy to users.<br />
3. Set &#8220;Require login from &lt;<strong>mydomain</strong>&gt;&#8221; to True.</p>
<p>Browse to: <strong>Setup &gt; Security Controls &gt; Single Sign-On Settings</strong><br />
4. Set &#8220;Identity Provider Login URL&#8221; to the URL users should be&hellip;<span class="activity-read-more" id="activity-read-more-10636"><a target='_blank' href="https://www.forcetalks.com/salesforce-topic/how-can-we-restrict-user-to-login-only-through-federated-sso/#post-13842" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">9a8de6c66e0b4e9de8bf19db0d26052f</guid>
				<title>Surbhi started the discussion Do anyone have any idea about mapping external Id in bulk API? in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/referencing-external-id-in-bulk-api/</link>
				<pubDate>Thu, 30 Jun 2016 13:26:58 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/do-anyone-have-any-idea-about-mapping-external-id-in-bulk-api">Do anyone have any idea about mapping external Id in bulk API?</a></p> <div class="bb-content-inr-wrap"><p>Do anyone have any idea about mapping external Id in bulk API?</p>
<p>Thanks in advance</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">90d223ca5950d7fb9b6b8fa85b088872</guid>
				<title>Surbhi started the discussion Do anyone have any idea about mapping external Id in bulk API? in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/referencing-external-id-in-bulk-api/</link>
				<pubDate>Thu, 30 Jun 2016 13:26:58 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/do-anyone-have-any-idea-about-mapping-external-id-in-bulk-api">Do anyone have any idea about mapping external Id in bulk API?</a></p> <div class="bb-content-inr-wrap"><p>Do anyone have any idea about mapping external Id in bulk API ?</p>
<p>Thanks in advance</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">85e165214193658a75bee42625573a7e</guid>
				<title>Surbhi and Naman are now connected</title>
				<link>http://52.205.218.194/activity/p/10620/</link>
				<pubDate>Thu, 30 Jun 2016 08:48:09 +0530</pubDate>

				
									<slash:comments>0</slash:comments>
				
							</item>
					<item>
				<guid isPermaLink="false">2da5fe195fd7c2189a47b0938ec45734</guid>
				<title>Surbhi replied to the discussion Add image/screen-shot in answers in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/add-imagescreen-shot-in-answers/#post-13725</link>
				<pubDate>Mon, 27 Jun 2016 13:04:14 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/add-imagescreen-shot-in-answers/#post-13725"><span class="bb-reply-lable">Reply to</span> Add image/screen-shot in answers</a></p> <div class="bb-content-inr-wrap"><p>That&#8217;s Great !</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">f9897ac7dc00d7efdc540259d32fee2e</guid>
				<title>Surbhi replied to the discussion What is the difference between list custom setting and hierarchy custom setting? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/difference-between-list-custom-setting-and-hierarchy-custom-setting/#post-13586</link>
				<pubDate>Fri, 24 Jun 2016 14:30:59 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/what-is-the-difference-between-list-custom-setting-and-hierarchy-custom-setting/#post-13586"><span class="bb-reply-lable">Reply to</span> What is the difference between list custom setting and hierarchy custom setting?</a></p> <div class="bb-content-inr-wrap"><p>Hi Prabhat,</p>
<p>Thanks for providing this information. Can you please provide some examples of using hierarchy custom settings in apex ?</p>
<p>Thanks in advance</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">62d07b5739aafb0e92df94422998ec27</guid>
				<title>Surbhi and Satyakam are now connected</title>
				<link>http://52.205.218.194/activity/p/10363/</link>
				<pubDate>Fri, 24 Jun 2016 07:39:40 +0530</pubDate>

				
									<slash:comments>0</slash:comments>
				
							</item>
					<item>
				<guid isPermaLink="false">50bf7d89ac567ec6fce19f95665d9cb4</guid>
				<title>Surbhi replied to the discussion Is it possible to add a text or button to Salesforce1 header? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/salesforce1-change-header/#post-13518</link>
				<pubDate>Thu, 23 Jun 2016 14:11:49 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/is-it-possible-to-add-a-text-or-button-to-salesforce1-header/#post-13518"><span class="bb-reply-lable">Reply to</span> Is it possible to add a text or button to Salesforce1 header?</a></p> <div class="bb-content-inr-wrap"><p>Hi Danna,</p>
<p>I think you can try using CSS for this</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">44ec8e1aa2b975e460dac22e3ca42316</guid>
				<title>Surbhi replied to the discussion How to show App in Salesforce1? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-show-app-in-salesforce1/#post-13517</link>
				<pubDate>Thu, 23 Jun 2016 14:09:01 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-show-app-in-salesforce1/#post-13517"><span class="bb-reply-lable">Reply to</span> How to show App in Salesforce1?</a></p> <div class="bb-content-inr-wrap"><p>Hi Prakhar,</p>
<p>I tried this in my developer org and what I found is: In the left hand side section in lightning experience consists of tabs , not apps. So, for accessing apps, you have to click on the App Launcher, then you can see you apps. On clicking on any of app, will show all the tabs included in that app.</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">aba0d7c339d39b3d169bdef94efd2682</guid>
				<title>Surbhi started the discussion What is the use of instrumentation console in lightning experience? in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/what-is-the-use-of-instrumentation-console-in-lightning-experience/</link>
				<pubDate>Thu, 23 Jun 2016 14:05:11 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/what-is-the-use-of-instrumentation-console-in-lightning-experience/">What is the use of instrumentation console in lightning experience?</a></p> <div class="bb-content-inr-wrap"><p>What is the use of instrumentation console in lightning experience?</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">aba0d7c339d39b3d169bdef94efd2682</guid>
				<title>Surbhi started the discussion What is the use of instrumentation console in lightning experience? in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/instrumentation-console-in-lightning-experience/</link>
				<pubDate>Thu, 23 Jun 2016 14:05:11 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/what-is-the-use-of-instrumentation-console-in-lightning-experience/">What is the use of instrumentation console in lightning experience?</a></p> <div class="bb-content-inr-wrap"><p>What is the use of instrumentation console in lightning experience?</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">5a661d7c03fa5f1da62db33caece4421</guid>
				<title>Surbhi started the discussion What is the use of instrumentation console in lightning experience? in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/instrumentation-console-in-lightning-experience/</link>
				<pubDate>Thu, 23 Jun 2016 14:05:11 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/what-is-the-use-of-instrumentation-console-in-lightning-experience/">What is the use of instrumentation console in lightning experience?</a></p> <div class="bb-content-inr-wrap"><p>What is the use of instrumentation console in lightning experience ?</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">3ff8488a3d13f7ea647116b163fc88e5</guid>
				<title>Surbhi started the discussion What is the difference between list custom setting and hierarchy custom setting? in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/difference-between-list-custom-setting-and-hierarchy-custom-setting/</link>
				<pubDate>Thu, 23 Jun 2016 13:55:31 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/what-is-the-difference-between-list-custom-setting-and-hierarchy-custom-setting/">What is the difference between list custom setting and hierarchy custom setting?</a></p> <div class="bb-content-inr-wrap"><p>Can anyone explain the difference between list custom setting and hierarchy custom setting in detail? And how to use this in apex ?</p>
<p>Also, any benefits of hierarchy custom settings over list custom setting</p>
<p>Thanks in advance</p>
<p>&nbsp;</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">7daecaef648668364025bf79db74bb54</guid>
				<title>Surbhi started the discussion What is the difference between list custom setting and hierarchy custom setting? in the forum </title>
				<link>https://www.forcetalks.com/salesforce-topic/difference-between-list-custom-setting-and-hierarchy-custom-setting/</link>
				<pubDate>Thu, 23 Jun 2016 13:55:31 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/what-is-the-difference-between-list-custom-setting-and-hierarchy-custom-setting/">What is the difference between list custom setting and hierarchy custom setting?</a></p> <div class="bb-content-inr-wrap"><p>Can anyone explain the difference between list custom setting and hierarchy custom setting in detail? And how to use this in apex ?</p>
<p>Also, any benefits of hierarchy custom settings over list custom setting</p>
<p>Thanks in advance</p>
<p>&nbsp;</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">b0fa72fb4d03bcca0f88c35559074212</guid>
				<title>Surbhi replied to the discussion How to include dynamic apex in managed package? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-include-dynamic-apex-in-manage-package/#post-13457</link>
				<pubDate>Wed, 22 Jun 2016 14:14:24 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-include-dynamic-apex-in-manage-package/#post-13457"><span class="bb-reply-lable">Reply to</span> How to include dynamic apex in managed package?</a></p> <div class="bb-content-inr-wrap"><p>Hi Himanshu,</p>
<p>Dynamic Apex can only be access-able for the components with which the code is packaged. To provide access to standard objects not included in the package, the developer must set the API Access.</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">a20a106b77655f4156c71054dfa17e9c</guid>
				<title>Surbhi replied to the discussion How to open links in Lightning-Experience Setup in other browser-tabs and browser-windows? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/lightning-4/#post-13456</link>
				<pubDate>Wed, 22 Jun 2016 14:11:21 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-open-links-in-lightning-experience-setup-in-other-browser-tabs-and-browser-windows/#post-13456"><span class="bb-reply-lable">Reply to</span> How to open links in Lightning-Experience Setup in other browser-tabs and browser-windows?</a></p> <div class="bb-content-inr-wrap"><p>Hi Himanshu,</p>
<p>I am also looking for this. Can anyone please provide any information regarding this?</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">b85525e20a9eaf07e3349b61257d486a</guid>
				<title>Surbhi replied to the discussion Is it possible to combine a native binary with a Lightning component? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/is-it-possible-to-combine-a-native-binary-with-a-lightning-component/#post-13368</link>
				<pubDate>Tue, 21 Jun 2016 14:37:47 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/is-it-possible-to-combine-a-native-binary-with-a-lightning-component/#post-13368"><span class="bb-reply-lable">Reply to</span> Is it possible to combine a native binary with a Lightning component?</a></p> <div class="bb-content-inr-wrap"><p>Hi Karen,</p>
<p>I think it is not possible as per my research but will let you know if find any progress regarding this.</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">3c1281b39b5dfc30bac9d870b366d5ee</guid>
				<title>Surbhi replied to the discussion How to watermark a file in Salesforce? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/i-have-my-file-uploaded-in-salesforce-document-my-requirement-is-when-i-download-the-file-current-username-should-be-as-watermark-in-background-of-the-file/#post-13367</link>
				<pubDate>Tue, 21 Jun 2016 14:32:32 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-watermark-a-file-in-salesforce/#post-13367"><span class="bb-reply-lable">Reply to</span> How to watermark a file in Salesforce?</a></p> <div class="bb-content-inr-wrap"><p>Hi Himanshu,</p>
<p>I haven&#8217;t found any solution for this. But I am still researching for this and will let you know if got anything.</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">a3026c594792d5179702622a72763f28</guid>
				<title>Surbhi replied to the discussion How to find that a field is not supported in Salesforce Metadata API? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-find-that-a-field-is-not-supported-in-metadata-api/#post-13366</link>
				<pubDate>Tue, 21 Jun 2016 14:30:45 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-find-that-a-field-is-not-supported-in-salesforce-metadata-api/#post-13366"><span class="bb-reply-lable">Reply to</span> How to find that a field is not supported in Salesforce Metadata API?</a></p> <div class="bb-content-inr-wrap"><p>Hi Nitish,</p>
<p>Following are the unsupported metadata types:</p>
<p>Account Teams<br />
Activity Button Overrides<br />
Analytic Settings<br />
Automated Case User Settings<br />
Auto-number on Customizable Standard Fields<br />
Campaign Influences<br />
Case Contact Roles<br />
Case Feed Layouts<br />
Case Team Roles<br />
Console Layouts<br />
Currency Exchange Rates<br />
Data Category Visibility&hellip;<span class="activity-read-more" id="activity-read-more-10199"><a target='_blank' href="https://www.forcetalks.com/salesforce-topic/how-to-find-that-a-field-is-not-supported-in-metadata-api/#post-13366" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">9435bb2ff4f61addf9a7f71e5f3e832b</guid>
				<title>Surbhi replied to the discussion New Relic &#38; Salesforce Integration? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/new-relic-salesforce-integration/#post-13251</link>
				<pubDate>Mon, 20 Jun 2016 13:52:17 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/new-relic-salesforce-integration/#post-13251"><span class="bb-reply-lable">Reply to</span> New Relic &amp; Salesforce Integration?</a></p> <div class="bb-content-inr-wrap"><p>Hi Amit,</p>
<p>You can refer this url:</p>
<p><a target='_blank' href="https://docs.newrelic.com/docs/apis" rel="nofollow">https://docs.newrelic.com/docs/apis</a></p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">847fa6462822bb74ae58a73f7d49219c</guid>
				<title>Surbhi replied to the discussion What are the break sessions in service cloud Salesforce? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/what-are-the-break-sessions-in-service-cloud-salesforce/#post-13247</link>
				<pubDate>Mon, 20 Jun 2016 13:46:03 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/what-are-the-break-sessions-in-service-cloud-salesforce/#post-13247"><span class="bb-reply-lable">Reply to</span> What are the break sessions in service cloud Salesforce?</a></p> <div class="bb-content-inr-wrap"><p>Is anybody know about this as I am also researching about this?</p>
<p>Thanks in advance</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">3a95be9402e3e0d2bd6fc0a041cd4f0c</guid>
				<title>Surbhi replied to the discussion How to upload multiple file with same name in single folder in rackspace from Salesforce? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-upload-multiple-file-with-same-name-in-single-folder-in-rackspace-from-salesforce/#post-13246</link>
				<pubDate>Mon, 20 Jun 2016 13:35:55 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-upload-multiple-file-with-same-name-in-single-folder-in-rackspace-from-salesforce/#post-13246"><span class="bb-reply-lable">Reply to</span> How to upload multiple file with same name in single folder in rackspace from Salesforce?</a></p> <div class="bb-content-inr-wrap"><p>Hi Himanshu,</p>
<p>Have you integrated rackspace with salesforce ?</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">fc59d12e431ed0ba53248c42593b313c</guid>
				<title>Surbhi replied to the discussion How to get apex:outputLink to work in Lightning Desktop correctly using target=&#039;parent&#039;? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-get-apexoutputlink-to-work-in-lightning-desktop-correctly-using-targetparent/#post-13245</link>
				<pubDate>Mon, 20 Jun 2016 13:32:20 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-get-apexoutputlink-to-work-in-lightning-desktop-correctly-using-targetparent/#post-13245"><span class="bb-reply-lable">Reply to</span> How to get apex:outputLink to work in Lightning Desktop correctly using target=&#039;parent&#039;?</a></p> <div class="bb-content-inr-wrap"><p>Hi Himanshu,</p>
<p>Is there any progress as I am still researching regarding this issue.</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">33736d250a407b9a03bb0305163cab14</guid>
				<title>Surbhi replied to the discussion Why Salesforce does not allow the old version of jquery? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/why-salesforce-does-not-allow-the-old-version-of-jquery/#post-13243</link>
				<pubDate>Mon, 20 Jun 2016 13:28:37 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/why-salesforce-does-not-allow-the-old-version-of-jquery/#post-13243"><span class="bb-reply-lable">Reply to</span> Why Salesforce does not allow the old version of jquery?</a></p> <div class="bb-content-inr-wrap"><p>Hi Abhinav,</p>
<p>I think salesforce supports latest jquery version because of avoiding depreciated functions of jquery and use updated functions of jquery. But I am still researching regarding this. I will let you know if I come to know something related to this.</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">995687d7a8b543e12083073907bbad53</guid>
				<title>Surbhi replied to the discussion How many reports can be used in one dashboard? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-many-reports-can-be-used-in-one-dashboard/#post-13240</link>
				<pubDate>Mon, 20 Jun 2016 13:24:25 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-many-reports-can-be-used-in-one-dashboard/#post-13240"><span class="bb-reply-lable">Reply to</span> How many reports can be used in one dashboard?</a></p> <div class="bb-content-inr-wrap"><p>Hi Himanshu,</p>
<p>I haven&#8217;t found as such limit of reports in one dashboard. You can have upto 20 components on one dashboard.</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">cb6dd19a861039aa288f29863789cd5b</guid>
				<title>Surbhi replied to the discussion What are the best practices to implement the email deliverability settings in salesforce? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/what-are-the-best-practices-to-implement-the-email-deliverability-settings-in-salesforce/#post-13237</link>
				<pubDate>Mon, 20 Jun 2016 13:22:13 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/what-are-the-best-practices-to-implement-the-email-deliverability-settings-in-salesforce/#post-13237"><span class="bb-reply-lable">Reply to</span> What are the best practices to implement the email deliverability settings in salesforce?</a></p> <div class="bb-content-inr-wrap"><p>Hi Himanshu,</p>
<p>There is no such best practice for email deliverability. Just keep in mind the below points when setting email deliverability:</p>
<ol>
<li>No access: Prevents all outbound email to and from users.</li>
<li>System email only: Allows only automatically generated emails, such as new user and password reset emails.</li>
<li>All email: Allows all types&hellip;</li>
</ol>
<p><span class="activity-read-more" id="activity-read-more-10032"><a target='_blank' href="https://www.forcetalks.com/salesforce-topic/what-are-the-best-practices-to-implement-the-email-deliverability-settings-in-salesforce/#post-13237" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">b38b1da19a8ff64bcdf1d7074e8d9af5</guid>
				<title>Surbhi replied to the discussion How does Dreamforce help me? I am a medical Inspector. in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-does-dreamforce-help-me-i-am-a-medical-inspector/#post-13235</link>
				<pubDate>Mon, 20 Jun 2016 13:11:31 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-does-dreamforce-help-me-i-am-a-medical-inspector/#post-13235"><span class="bb-reply-lable">Reply to</span> How does Dreamforce help me? I am a medical Inspector.</a></p> <div class="bb-content-inr-wrap"><p>Hi Karen,</p>
<p>In Dreamforce, you can get to know about lots of Healthcare apps which are build on Salesforce app cloud. Also you get to know about how to use Salesforce Health cloud in an efficient and effective way which will hence lead to happy, healthy patients. Basically, Salesforce health cloud helps you to minimize your work and&hellip;<span class="activity-read-more" id="activity-read-more-10024"><a target='_blank' href="https://www.forcetalks.com/salesforce-topic/how-does-dreamforce-help-me-i-am-a-medical-inspector/#post-13235" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">631d7e8180c9c246cacee1b7297b87c0</guid>
				<title>Surbhi replied to the discussion Is there any way to Navigate back in Salesforce1, if I opened pdf in SalesForce1? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/is-it-possible-to-navigate-back-in-salesforce1-after-opening-pdf-file-in-salesforce1/#post-13160</link>
				<pubDate>Fri, 17 Jun 2016 14:11:43 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/is-there-any-way-to-navigate-back-in-salesforce1-if-i-opened-pdf-in-salesforce1/#post-13160"><span class="bb-reply-lable">Reply to</span> Is there any way to Navigate back in Salesforce1, if I opened pdf in SalesForce1?</a></p> <div class="bb-content-inr-wrap"><p>Hi Piyush,</p>
<p>I haven&#8217;t found any way for this yet. But I am still researching for this</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">3e3c1b3f7e98e3fb54dbbf91368d7151</guid>
				<title>Surbhi replied to the discussion What are the prerequisite to release the App on AppExchange? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/release-app-on-appexchange/#post-13159</link>
				<pubDate>Fri, 17 Jun 2016 14:10:28 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/release-app-on-appexchange/#post-13159"><span class="bb-reply-lable">Reply to</span> What are the prerequisite to release the App on AppExchange?</a></p> <div class="bb-content-inr-wrap"><p>Hi Abhinav,</p>
<p>Talking about prerequisites, I have found that include particular keywords related to your package while listing your app on AppExchange so that users can find your app easily. I will share some more points asap</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">7e0157e5399b2fca7032a4c0b7c93079</guid>
				<title>Surbhi replied to the discussion Trigger a workflow when an event is created in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/trigger-a-workflow-when-an-event-is-created/#post-13158</link>
				<pubDate>Fri, 17 Jun 2016 14:08:07 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/trigger-a-workflow-when-an-event-is-created/#post-13158"><span class="bb-reply-lable">Reply to</span> Trigger a workflow when an event is created</a></p> <div class="bb-content-inr-wrap"><p>Hi Danna,</p>
<p>Unfortunately, I am not getting your requirement, Can you please elaborate your requirement so that I will be able to provide you a better solution?</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">4ef9e19267c69eba16dbadda12e627ee</guid>
				<title>Surbhi replied to the discussion Does multilanguage is being supported by informatica data loader? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/does-multilanguage-is-being-supported-by-informatica-data-loader/#post-13157</link>
				<pubDate>Fri, 17 Jun 2016 13:59:59 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/does-multilanguage-is-being-supported-by-informatica-data-loader/#post-13157"><span class="bb-reply-lable">Reply to</span> Does multilanguage is being supported by informatica data loader?</a></p> <div class="bb-content-inr-wrap"><p>Hi Hazel,</p>
<p>I have found for this regarding informatica data loader:</p>
<p>Added multi-language support for Switzerland</p>
<p>Other than this, I haven&#8217;t found anything related to this. I will let you know if I come to know anything regarding this.</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">084e3ed5a0d9a0f243f07bd837fd18d1</guid>
				<title>Surbhi replied to the discussion How to create website on Salesforce Force.com? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-create-web-site-on-force-com/#post-13156</link>
				<pubDate>Fri, 17 Jun 2016 13:27:33 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/how-to-create-website-on-salesforce-force-com/#post-13156"><span class="bb-reply-lable">Reply to</span> How to create website on Salesforce Force.com?</a></p> <div class="bb-content-inr-wrap"><p>Hi Karen,</p>
<p>Please follow below steps to create a basic Force.com Site:</p>
<ol>
<li>Register a domain name of your choice.</li>
<li>Create a Force.com Site using that domain name.</li>
<li>Include all the required Visualforce pages to the Site which are related to your Site.</li>
<li>Set up the security access permissions as per your requirement.</li>
</ol>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">8a545f15acb4e0bd615effe577323429</guid>
				<title>Surbhi replied to the discussion Why we use sObject in code instead of an object? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/why-we-use-sobject-in-code-instead-of-an-object/#post-13155</link>
				<pubDate>Fri, 17 Jun 2016 13:18:48 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="http://52.205.218.194/salesforce-topic/why-we-use-sobject-in-code-instead-of-an-object/#post-13155"><span class="bb-reply-lable">Reply to</span> Why we use sObject in code instead of an object?</a></p> <div class="bb-content-inr-wrap"><p>Hi Gourav,</p>
<p>sObject is a generic abstract type that corresponds to any persisted object type. The generic sObject can be cast into a specific sObject type and object can be of JSON object. While JSON parsing, after parsing I got object which is of JSON object type. I am referencing that JSON object with object.</p>
<p>Thanks</p>
</div>]]></content:encoded>
				
				
							</item>
		
	</channel>
</rss>
		
<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Page Caching using Disk: Enhanced 
Content Delivery Network via Amazon Web Services: CloudFront: cdn.forcetalks.com
Lazy Loading

Served from: 52.205.218.194 @ 2026-05-14 07:07:40 by W3 Total Cache
-->