Forcetalks | saloni gupta | Activity https://www.forcetalks.com/saloni-gupta/activity/ Activity feed for saloni gupta. Wed, 01 Apr 2026 21:52:15 +0530 https://buddypress.org/?v=2.16.0 en-US 30 hourly 2 034c0bc41efd722f83635ae78c4cd4f7 saloni gupta started the discussion Unable to see newly created fields in my Custom Report Type in Salesforce in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/custom-report-fields-in-salesforce/ Wed, 25 Apr 2018 13:47:16 +0530 Unable to see newly created fields in my Custom Report Type in Salesforce

I am unable to see some of the newly created fields in my Custom Report Type.

]]>
84d080f68a8c3b9a5dc2b30ced5e096a saloni gupta started the discussion How can I increase the Standard Date field year Range in Visualforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/standard-date-field-year-range/ Wed, 25 Apr 2018 13:46:27 +0530 How can I increase the Standard Date field year Range in Visualforce?

How can I increase the Standard Date field year Range in Visualforce?

]]>
9c00fa4dd3630055d14d8ba567df7cf0 saloni gupta started the discussion How to get the old value of a field in a Salesforce Apex Controller? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-get-the-old-value-of-a-field-in-apex-controller/ Mon, 26 Feb 2018 14:45:43 +0530 How to get the old value of a field in a Salesforce Apex Controller?

I have to access the old value of a field in Apex VF controller.

]]>
0b29f41fc7a7cc300a53b0951e5b1b38 saloni gupta replied to the discussion how to set Button enable and disable mode in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-set-button-enable-and-disable-mode/#post-21945 Tue, 29 Aug 2017 13:07:20 +0530 Reply to how to set Button enable and disable mode

Hi Uday,

Use the folllowing code.

VF page:

<apex:page controller="buttonEnableCont">
<apex:form >
<apex:pageBlock id="fid">
<apex:selectList value="{!selectop}" multiselect="false" size="1" >
<apex:selectOptions value="{!select}" id="sid" >
</apex:selectOptions>
<apex:actionSupport event="onchange"… Read more

]]>
5fc2f8c81c3a3d6cedb6a34b6339ee57 saloni gupta replied to the discussion what is the difference between external lookups and indirect lookups in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-the-difference-between-external-lookups-and-indirect-lookups/#post-21794 Wed, 23 Aug 2017 06:01:18 +0530 Reply to what is the difference between external lookups and indirect lookups in Salesforce?

External lookup relationship

External lookup relationship links a child standard, custom, or external object to a parent external object. The values of the standard External ID field on the parent external object are matched against the values of the external lookup relationship field. For a child external object, the values of the… Read more

]]>
f03eac1fa7a72e1696a92ed38f2e772d saloni gupta replied to the discussion What is difference between Queues and Public Group and when do we use public group or Queues in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/queues-and-public-group/#post-21776 Tue, 22 Aug 2017 06:28:37 +0530 Reply to What is difference between Queues and Public Group and when do we use public group or Queues in Salesforce?

Queue and groups are both are same ,which will hold group of users, But in working environment we can functionality we need to decide which will use in proper way,

Suppose in the case of Lead Assignment,

1 . Scenario like Each user should assigned to at least one lead and same number of leads.

That means user need to handle assigned… Read more

]]>
7b46370bc8f4c371bb46cdde471696ec saloni gupta replied to the discussion State differences between Bearer and OAuth 2 tokens in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-are-bearer-tokens-and-token_type-in-oauth-2/#post-21767 Mon, 21 Aug 2017 14:02:58 +0530 Reply to State differences between Bearer and OAuth 2 tokens in Salesforce?

Hi aman,

OAuth 2.0 Bearer Token profile brings a simplified scheme for authentication. This specification describes how to use bearer tokens in HTTP requests to access OAuth 2.0 protected resources. Any party in possession of a bearer token (a "bearer") can use it to get access to the associated resources (without demonstrating possession of… Read more

]]>
f1caf8c4bb32668e19efe919f2e3a335 saloni gupta started the discussion How to access map on visualforce page? in the forum https://www.forcetalks.com/salesforce-topic/how-to-access-map-on-visualforce-page/ Mon, 14 Aug 2017 13:45:37 +0530 How to access map on visualforce page?

I want to access map on pageblocktable in visualforce page.

]]>
f40d366f9842f6842c32b687e1e70e38 saloni gupta replied to the discussion How can I get all the Fields of an sObject in Salesforce apex class without hardcoding? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-can-i-get-all-the-fields-of-an-sobject-in-salesforce-apex-class-without-hardcoding/#post-21631 Mon, 14 Aug 2017 13:34:12 +0530 Reply to How can I get all the Fields of an sObject in Salesforce apex class without hardcoding?

Hi Mohit,

You can try this :-

string fields = '';

Map<String,Schema.SObjectField> fieldMap = Schema.SObjectType.Opportunity.fields.getMap();

for(String field : fieldMap.keySet())

{

fields += field + ', ';
}
System.debug('fiedsOpportunity=='+fields);

]]>
53f6afe111adc63844c305ec390d027b saloni gupta started the discussion in which scenario, we should use static method in VF page contoller? in the forum https://www.forcetalks.com/salesforce-topic/in-which-scenario-we-should-use-static-method-in-vf-page-contoller/ Fri, 11 Aug 2017 13:47:22 +0530 in which scenario, we should use static method in VF page contoller?

my controller is not giving right output if i am using  all methods and variables static in my code.

]]>
aed87a995b28f7e38f61dbb6ca537484 saloni gupta started the discussion in which scenario, we should use static method in VF page contoller? in the forum https://www.forcetalks.com/salesforce-topic/in-which-scenario-we-should-use-static-method-in-vf-page-contoller/ Fri, 11 Aug 2017 13:47:22 +0530 in which scenario, we should use static method in VF page contoller?

my controller is not giving right output if i using static methods in my code.

]]>
f1bce0de604ed13f7eedc179280f17f3 saloni gupta replied to the discussion what is the difference between pageBlockTable and PanelGrid in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-the-difference-between-pageblocktable-and-panelgrid/#post-21533 Wed, 09 Aug 2017 14:28:41 +0530 Reply to what is the difference between pageBlockTable and PanelGrid in Salesforce?

hi aman,

apex:pageBlockTable represents a table formatted and styled to look like a related list table.

apex:panelGrid is placed into a corresponding cell in the first row until the number of columns is reached. At that point, the next component wraps to the next row and is placed in the first cell.

<apex:page>

<apex:panelGrid… Read more

]]>
a0534e3483aa867411b5a9ceb91a139f saloni gupta replied to the discussion What is Text(Encrypted) Data type in Salesforce sobject? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-textencrypted-data-type-in-sobject/#post-21530 Wed, 09 Aug 2017 14:15:11 +0530 Reply to What is Text(Encrypted) Data type in Salesforce sobject?

hi shariq,

Encrypted Custom Fields are a new field type (released after winter 08) that allows users to store sensitive data in encrypted form and apply a mask when the data is displayed.

Some important points :

User profiles who have the “View Encrypted Data” configuration enabled will be able to view the field normally.
Users who do not… Read more

]]>
3a76370deca40591d2b82b4dd4b77e28 saloni gupta replied to the discussion How we get List of sibling Contact in a Salesforce Trigger? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-we-get-list-of-sibling-contact-in-trigger/#post-21465 Fri, 04 Aug 2017 06:55:42 +0530 Reply to How we get List of sibling Contact in a Salesforce Trigger?

Hi Shubham,

You can refer this code for getting all the siblings of any contact.

 

Set<id> accid = new Set<id>();
for(Contact c : Trigger.old){
accid.add(c.AccountId);
}
List<contact> con = [select id, accountid, Start_Date__c, End_Date__c from contact where Account.Id in : accid AND Id not IN : Trigger.old];

Map<id,List<Contact>>… Read more

]]>
ca8fb202ab0ad12c01402e26f49a9b61 saloni gupta started the discussion What is the use of Metadata API in Salesforce? in the forum https://www.forcetalks.com/salesforce-topic/what-is-the-use-of-metadata-api/ Wed, 02 Aug 2017 13:49:50 +0530 What is the use of Metadata API in Salesforce?

metadata API

]]>
b674f90a3dcafb76fbaaffd4bf38d8b0 saloni gupta replied to the discussion What are setup objects in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-are-setup-objects/#post-21396 Tue, 01 Aug 2017 13:04:38 +0530 Reply to What are setup objects in Salesforce?

hi shariq,

Setup objects are those which interacts with metadata like User, Profile, Layout etc. All other object (Standard and Custom) are non setup object.

One important note is that we cannot perform DMLs on setup and non setup objects in same transaction. Workaround is that you need to use asynchronous requests (@future) or use batch as… Read more

]]>
77511c68ad2ce430ce799dda22b4d235 saloni gupta replied to the discussion What is the use of Streaming API ? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-the-use-of-streaming-api/#post-21367 Mon, 31 Jul 2017 12:20:42 +0530 Reply to What is the use of Streaming API ?

hi aman,

Streaming API is useful when you want notifications to be pushed from the server to the client based on criteria that you define. Consider the following applications for Streaming API:

Applications that poll frequently
Applications that have constant polling action against the Salesforce infrastructure, consuming unnecessary API… Read more

]]>
a88e1d59edd64fe6875864741591302b saloni gupta replied to the discussion What is the use of Streaming API ? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-the-use-of-streaming-api/#post-21367 Mon, 31 Jul 2017 12:20:42 +0530 Reply to What is the use of Streaming API ?

hi aman,

Streaming API is useful when you want notifications to be pushed from the server to the client based on criteria that you define. Consider the following applications for Streaming API:

Applications that poll frequently
Applications that have constant polling action against the Salesforce infrastructure, consuming unnecessary API… Read more

]]>
cc769f6bc3a74def90c73258070a59b6 saloni gupta replied to the discussion What is @TestSetup annotation? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-testsetup-annotation/#post-21363 Mon, 31 Jul 2017 11:54:16 +0530 Reply to What is @TestSetup annotation?

hi shubham,

If a test class contains a test setup method, the testing framework executes the test setup method first, before any test method in the class.

Records that are created in a test setup method are available to all test methods in the test class and are rolled back at the end of test class execution.

If a test method changes… Read more

]]>
9d89ecc364243f851be97e27c537bce5 saloni gupta started the discussion pageblockSection is not rendered on click of commandButton in the forum https://www.forcetalks.com/salesforce-topic/pageblocksection-is-not-rendered-on-click-of-commandbutton/ Fri, 28 Jul 2017 13:13:27 +0530 pageblockSection is not rendered on click of commandButton

I want to show the description of account on click of name

VF page;-

<apex:page controller="SearchAccountCon" tabStyle="account">
<apex:form >
<apex:inputText value="{!searchString}" label="Search"/>
<apex:commandButton value="search" action="{!search}"/>
</apex:form>
<apex:form >
<apex:pageBlock >
<apex:pageBlockTable value="{!acct}"… Read more

]]>
f0d205c32cf63a52f124cc9f4ce869fa saloni gupta started the discussion How can I call PageBlockSection at CommandLink Action in Salesforce? in the forum https://www.forcetalks.com/salesforce-topic/how-can-i-call-pageblocksection-at-commandlink-action/ Tue, 25 Jul 2017 09:50:26 +0530 How can I call PageBlockSection at CommandLink Action in Salesforce?

I want to call a pageBlockSection on click of a item.

]]>
dd4f7d1fa9c03b8c37f5525020f6a460 saloni gupta posted an update: @adarshkumar check again, it is correctly working in my org https://www.forcetalks.com/activity/p/18424/ Tue, 25 Jul 2017 07:32:12 +0530 @adarshkumar
check again, it is correctly working in my org

]]>
0
f21827989fa3af2972e65c62688d5c71 saloni gupta posted an update: @adarshkumar trigger PhoneCopy on Contact (after […] https://www.forcetalks.com/activity/p/18422/ Tue, 25 Jul 2017 07:16:45 +0530 @adarshkumar
trigger PhoneCopy on Contact (after insert, after update) {
List con = [SELECT Id,LastName, Account.Id,phone FROM Contact WHERE Account.Id != null AND Id IN : Trigger.new] ;
List acc = new List();
for(Contact c : con)
{
Account a = new Account();
a.Id = c.AccountId;
a.phone… Read more

]]>
0
f48f8a88e81afa50c1c7f1e574f512ee saloni gupta started the discussion What are Sites in Salesforce? in the forum https://www.forcetalks.com/salesforce-topic/what-are-sites-in-salesforce/ Mon, 24 Jul 2017 13:24:28 +0530 What are Sites in Salesforce?

Sites in salesforce?

]]>
6cdebc93f421c5f49752ab16f07ca4b8 saloni gupta started the discussion how to delete the meta data from production org? in the forum https://www.forcetalks.com/salesforce-topic/how-to-delete-the-meta-data-from-production-org/ Mon, 24 Jul 2017 13:16:36 +0530 how to delete the meta data from production org?

In production org, there is not any option for delete the class. how can i delete that?

]]>
83e5c43c44fc83fcdb4c7c8b180b2a1e saloni gupta started the discussion Difference between Compact Layout and Page Layout ? in the forum https://www.forcetalks.com/salesforce-topic/difference-between-compact-layout-and-page-layout/ Mon, 24 Jul 2017 10:10:24 +0530 Difference between Compact Layout and Page Layout ?

Compact Layout vs Page Layout

]]>
1f4f1e71d9d536ef1907dfb97b89e52c saloni gupta replied to the discussion how to avoid this salesforce error in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-avoid-this-error/#post-21203 Mon, 24 Jul 2017 04:55:27 +0530 Reply to how to avoid this salesforce error

Hi shiva,

try the plural  name of child object in sub query.

]]>
90ac094ec5436fa7c10ef8dbd191248f saloni gupta replied to the discussion What is Content version ??? How we get id of content version ??? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-content-version-how-we-get-id-of-content-version/#post-21202 Mon, 24 Jul 2017 04:53:00 +0530 Reply to What is Content version ??? How we get id of content version ???

Hi shubham,

Content Version represents a specific version of a document in Salesforce CRM Content or Salesforce Files.

Query:-

select id, title from ContentVersion;

]]>
4a5e6d4c7b03d335f34c677923a65606 saloni gupta replied to the discussion What are Junction Objects in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-are-junction-objects-in-salesforce/#post-21191 Fri, 21 Jul 2017 13:47:45 +0530 Reply to What are Junction Objects in Salesforce?

Junction Object in Salesforce is an Object it helps to maintain many-to-many relationship between two objects.

]]>
6510f08ba073aa9392c2f0da155b73bd saloni gupta replied to the discussion What are Junction Objects in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-are-junction-objects-in-salesforce/#post-21191 Fri, 21 Jul 2017 13:47:45 +0530 Reply to What are Junction Objects in Salesforce?

junction Object is an Object in salesforce it helps to maintain many-to-many relationship between two objects.

]]>
9bebe581a4a9348e47e562d69e6133da saloni gupta started the discussion how to create a output link without any value? in the forum https://www.forcetalks.com/salesforce-topic/how-to-create-a-output-link-without-any-value/ Fri, 21 Jul 2017 13:32:57 +0530 how to create a output link without any value?

i want to create a output link without any value. how can i do?

]]>
1136708072c196cf72957078ca4f378b saloni gupta started the discussion What is the difference between unique and external fields? in the forum https://www.forcetalks.com/salesforce-topic/what-is-the-difference-between-unique-and-external-fields/ Fri, 21 Jul 2017 13:29:45 +0530 What is the difference between unique and external fields?

difference between unique and external fields

]]>
176de922c69e6c4fc67e683ec82cb518 saloni gupta replied to the discussion What is the difference between object-specific actions and global actions in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-the-difference-between-object-specific-actions-and-global-actions/#post-21147 Thu, 20 Jul 2017 13:39:37 +0530 Reply to What is the difference between object-specific actions and global actions in Salesforce?

object specific actions:

Like global actions, object-specific actions let users create records or log details about calls or other interactions. The key difference is that you can only add these actions to record detail pages, since they are automatically associated with a specific object.

When a user creates a record by using an… Read more

]]>
5ffeffab21d1ee693f806a05de524583 saloni gupta replied to the discussion How to create custom clone button with product for Salesforce opportunity sobject? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-create-custom-clone-button-with-product-for-opportunity-sobject/#post-21133 Wed, 19 Jul 2017 13:43:21 +0530 Reply to How to create custom clone button with product for Salesforce opportunity sobject?

VF Page:

<apex:page standardController="Opportunity" extensions="oppExtension" tabStyle="opportunity">
<apex:form>
<apex:pageBlock title="Opportunity Edit">
<apex:pageBlockButtons >
<apex:commandButton action="{!save}" value="Save"/>
<apex:commandButton action="{!cancel}"… Read more

]]>
8e16a4e53b41854bbd1699e6380b592e saloni gupta replied to the discussion What is the difference between feed item and attachment in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-the-difference-between-feed-item-and-attachment/#post-21130 Wed, 19 Jul 2017 13:24:41 +0530 Reply to What is the difference between feed item and attachment in Salesforce?

Feeditem :  FeedItem represents an entry in the feed, such as changes in a record feed, including text posts, link posts, and content posts.

Attachment : Represents a file that a User has uploaded and attached to a parent object.

]]>
8dfffb922518f9a847be91a9a86f0c5c saloni gupta replied to the discussion What is the difference between apex command link and apex output link in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-the-difference-between-apex-command-link-and-apex-output-link/#post-21129 Wed, 19 Jul 2017 13:19:11 +0530 Reply to What is the difference between apex command link and apex output link in Salesforce?

Apex:outputLink – The <h:outputLink> renders a fullworthy HTML <a> element with the proper URL in the href attribute which fires a bookmarkable GET request. It cannot directly invoke a managed bean action method.

<apex:outputlink value="https://www.google.co.in"> Google </apex:outputlink>

<apex:outputlink value="/{!r.Id}"> {!r.Name}… Read more

]]>
125561c4a0194fb18f032794658618a8 saloni gupta started the discussion how to access the file uploaded to the feed of case? in the forum https://www.forcetalks.com/salesforce-topic/how-to-access-the-file-uploaded-to-the-feed-of-case/ Wed, 19 Jul 2017 13:05:13 +0530 how to access the file uploaded to the feed of case?

i want to access the file which uploaded into the case feed

]]>
53b639e0496d28c4c2d9568e608ff7e0 saloni gupta started the discussion what is the use of webservice method in Salesforce? in the forum https://www.forcetalks.com/salesforce-topic/what-is-the-use-of-webservice-method/ Wed, 19 Jul 2017 13:03:44 +0530 what is the use of webservice method in Salesforce?

use of webservice method

]]>
44064ab24b92b674436360a29237eb2f saloni gupta started the discussion What are the parameters of a clone method in Salesforce? in the forum https://www.forcetalks.com/salesforce-topic/what-are-the-parameters-of-a-clone-method/ Tue, 18 Jul 2017 13:52:12 +0530 What are the parameters of a clone method in Salesforce?

What are the parameters of a clone method, sometimes we call clone method by one parameter , sometimes by two and more. how would we differentiate when to use one/two/three/four parameters?

]]>
258bc3760fa27d781dc47bf5079e81c0 saloni gupta started the discussion Can we mass delete reports using Salesforce Apex ? in the forum https://www.forcetalks.com/salesforce-topic/can-we-mass-delete-reports-using-apex/ Tue, 18 Jul 2017 13:40:56 +0530 Can we mass delete reports using Salesforce Apex ?

Can we mass delete reports using Apex (Anonymous Apex) ?

]]>
55a2008b76d808e95c10b3b3ccf04749 saloni gupta started the discussion Difference between lightning component and visualforce component in Salesforce? in the forum https://www.forcetalks.com/salesforce-topic/difference-between-lightning-component-and-visual-force-component/ Tue, 18 Jul 2017 13:37:08 +0530 Difference between lightning component and visualforce component in Salesforce?

Visualforce already has components. How are Lightning Component different and why would I want to use them?

]]>
968955af7c97c6b17042455e81ec91ca saloni gupta replied to the discussion Why do we use interface in Salesforce Apex Class? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/why-do-we-use-interface-in-apex-classes/#post-21078 Tue, 18 Jul 2017 13:24:08 +0530 Reply to Why do we use interface in Salesforce Apex Class?

hi parv,

An interface is like a class in which none of the methods have been implemented, the method signatures are there, but the body of each method is empty. To use an interface, another class must implement it by providing a body for all of the methods contained in the interface.

public class InterfaceClass
{
//Lets consider a… Read more

]]>
3ffa79ad46138cbcc13b99042d5fd46a saloni gupta started the discussion What are difference between lookup and fast lookup data elements in flow? in the forum https://www.forcetalks.com/salesforce-topic/what-are-difference-between-lookup-and-fast-lookup-data-elements-in-flow-2/ Mon, 17 Jul 2017 13:59:38 +0530 What are difference between lookup and fast lookup data elements in flow?

What are difference between lookup and fast lookup data elements in flow?

]]>
69af3e6443f91a2d933a39ba1771ab76 saloni gupta started the discussion How to lock record using SOQL in Salesforce? in the forum https://www.forcetalks.com/salesforce-topic/how-can-you-lock-record-using-soql-so-that-it-cannot-be-modified-by-other-user-2/ Mon, 17 Jul 2017 13:58:21 +0530 How to lock record using SOQL in Salesforce?

How can you lock record using SOQL so that it cannot be modified by other user?

]]>
4692e35e2fb06af3df2d146043d78754 saloni gupta replied to the discussion What is the difference between Salesforce Batches and Queueable Apex? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/when-to-use-batches-and-queueable-apex/#post-21037 Mon, 17 Jul 2017 13:46:49 +0530 Reply to What is the difference between Salesforce Batches and Queueable Apex?

Batchable Interface

Complex long running processes (thousands of records)
- Asynchronous processing - Scheduled jobs

Queueable Interface

When Batch and @future need to meet in the middle - Chaining jobs
- You need @future method with support for non-primitive types
- Asynchronous monitoring

]]>
3ad2ab2f9dfd22375e8c4e0263d6bd97 saloni gupta replied to the discussion What is CSV (comma separated values) file in salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-csv-comma-separated-values-file-in-salesforce/#post-20958 Fri, 14 Jul 2017 05:36:11 +0530 Reply to What is CSV (comma separated values) file in salesforce?

CSV is a simple file format used to store tabular data, such as a spreadsheet or database. Files in the CSV format can be imported to and exported from programs that store data in tables. In salesforce when we want to import and export data, we use the csv file.

]]>
40eebfb06a97c39d77a373b9c0592463 saloni gupta started the discussion What is the governor limits of sub query in SOQL? in the forum https://www.forcetalks.com/salesforce-topic/what-is-the-governor-limits-of-sub-query-in-soql/ Thu, 13 Jul 2017 12:38:23 +0530 What is the governor limits of sub query in SOQL?

In the nested query, what is the governor limits of sub query in SOQL ?

]]>
659edbbc06ee36da5351ee7d3012897b saloni gupta replied to the discussion can we execute two component in single Salesforce Lightning app ?? If yes, How ?? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/can-we-execute-two-component-in-single-lightning-app-if-yes-how/#post-20938 Thu, 13 Jul 2017 12:31:10 +0530 Reply to can we execute two component in single Salesforce Lightning app ?? If yes, How ??

hi shubham,

yes, we can execute more than one  component in single Lightning App.

<aura:application >
<c:firstComponent />

<c:secondComponent />

<c:ThirdComponent />
</aura:application>

]]>
fb7b8c157ef30d0881ea96d20e37c714 saloni gupta replied to the discussion Is it possible that two Salesforce objects can have same Id in different orgs? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/is-it-possible-that-two-objects-can-have-same-id-in-different-orgs/#post-20937 Thu, 13 Jul 2017 12:28:06 +0530 Reply to Is it possible that two Salesforce objects can have same Id in different orgs?

hello shariq,

ID differs according to environment. so it is not possible that two objects can have same id in different and same org.

]]>
567cba0890ea6ba50b1405f215df2f07 saloni gupta replied to the discussion Why Governor Limits are introduced in Salesforce in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/why-governor-limits-are-introduced-in-salesforce/#post-20936 Thu, 13 Jul 2017 12:22:25 +0530 Reply to Why Governor Limits are introduced in Salesforce

hello uday,

In Salesforce, everything for everybody is on Cloud. That means the database is not in your personal machine but on the cloud. So to allow everybody to avail the space in cloud Salesforce.com has to enfore Governer Limits.

]]>