<?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 | Rajan | Activity</title>
	<link>https://www.forcetalks.com/rajan/activity/</link>
	<atom:link href="https://www.forcetalks.com/rajan/activity/feed/" rel="self" type="application/rss+xml" />
	<description>Activity feed for Rajan.</description>
	<lastBuildDate>Sun, 03 May 2026 04:52:30 +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">625d62bcb14d95b729033745e0fb08d6</guid>
				<title>Rajan replied to the discussion How to create records of any selected object using Salesforce Batch Apex Class? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-create-records-of-any-selected-object-using-salesforce-batch-apex-class/#post-60514</link>
				<pubDate>Tue, 30 Jul 2019 10:55:18 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://www.forcetalks.com/salesforce-topic/how-to-create-records-of-any-selected-object-using-salesforce-batch-apex-class/#post-60514"><span class="bb-reply-lable">Reply to</span> How to create records of any selected object using Salesforce Batch Apex Class?</a></p> <div class="bb-content-inr-wrap"><p>Hi Namrata</p>
<p>global class batchForUserInput implements Database.Batchable&lt;sObject&gt; {<br />
global batchForUserInput(string inputUser){<br />
this.inputUser = inputUser;<br />
}<br />
global Database.QueryLocator start(Database.BatchableContext BC) {<br />
String query = 'SELECT Id,Name FROM inputUser';<br />
return Database.getQueryLocator(query);<br />
}</p>
<p>global&hellip;<span class="activity-read-more" id="activity-read-more-94078"><a href="https://www.forcetalks.com/salesforce-topic/how-to-create-records-of-any-selected-object-using-salesforce-batch-apex-class/#post-60514" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">de07a39f52165c3e04822b179057d55e</guid>
				<title>Rajan replied to the discussion What is object specific action and how to create it? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/what-is-object-specific-action-and-how-to-create-it/#post-60513</link>
				<pubDate>Tue, 30 Jul 2019 10:40:17 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://www.forcetalks.com/salesforce-topic/what-is-object-specific-action-and-how-to-create-it/#post-60513"><span class="bb-reply-lable">Reply to</span> What is object specific action and how to create it?</a></p> <div class="bb-content-inr-wrap"><p>Hi Abhishek,</p>
<p>Object-specific create actions create records that are automatically associated with related records. Object-specific actions are only available on page layouts for that object. For example, you can add the New Group Member action only to the group publisher layout.</p>
<p>1 From the management settings for the object for which you want&hellip;<span class="activity-read-more" id="activity-read-more-94077"><a href="https://www.forcetalks.com/salesforce-topic/what-is-object-specific-action-and-how-to-create-it/#post-60513" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">b0ec58031974b47a85379bb85f294c5f</guid>
				<title>Rajan replied to the discussion Trigger to prevent Date Overlap #ApexTrigger in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/trigger-to-prevent-date-overlap/#post-60165</link>
				<pubDate>Mon, 24 Jun 2019 11:48:37 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://www.forcetalks.com/salesforce-topic/trigger-to-prevent-date-overlap/#post-60165"><span class="bb-reply-lable">Reply to</span> Trigger to prevent Date Overlap #ApexTrigger</a></p> <div class="bb-content-inr-wrap"><p>Hi Suman,</p>
<p>Create two map in your trigger to store start and end date corresponding to the register event of that window. So the first map will contain information about start date for each attendee and second map will store end date for each attendee. Now iterate over the event the attendee is trying to register, if the attendee is already in&hellip;<span class="activity-read-more" id="activity-read-more-93733"><a href="https://www.forcetalks.com/salesforce-topic/trigger-to-prevent-date-overlap/#post-60165" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">0b38f0b7dcbc859ea5bfaa78b86d0acf</guid>
				<title>Rajan replied to the discussion How to Edit Multiple Records using cURL? in the forum Salesforce® Discussions</title>
				<link>https://www.forcetalks.com/salesforce-topic/how-to-edit-multiple-records-using-curl/#post-59898</link>
				<pubDate>Mon, 03 Jun 2019 14:29:39 +0530</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://www.forcetalks.com/salesforce-topic/how-to-edit-multiple-records-using-curl/#post-59898"><span class="bb-reply-lable">Reply to</span> How to Edit Multiple Records using cURL?</a></p> <div class="bb-content-inr-wrap"><p>Hi Parantap,</p>
<p>You need to create  a PATCH request to Edit existing record in salesforce.</p>
<p>Thanks,</p>
<p>Rajan</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">3c35654a99c9862ad48ac6ad4d3ff40c</guid>
				<title>Rajan became a registered member</title>
				<link>https://www.forcetalks.com/activity/p/28375/</link>
				<pubDate>Wed, 10 Jan 2018 11:09:22 +0530</pubDate>

				
									<slash:comments>0</slash:comments>
				
							</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: www.forcetalks.com @ 2026-05-03 11:15:57 by W3 Total Cache
-->