shariq
IndividualForum Replies Created
-
SaaS means Software as a Service. Through this Services all the software’s are distributes over the cloud. By using SaaS no need to install any software all software’s are readily available over the internet .
-
PaaS means” Platform as a Service”. Here in “PaaS “ the cloud service providers provide hardware, OS (Operating System), Storage, Network services over the cloud. It is the way like a rent. If there is no service like Platform and there will be no Applications. Which applications are build on a Platform.
-
shariq
MemberSeptember 23, 2018 at 7:41 AM in reply to: What are deployment modes of cloud computing in Salesforce?Cloud computing services can be provided in four different deployment modes depending on size and structure of an organization. Four deployment modes of cloud computing are
Public Cloud.
Private Cloud.
Hybrid Cloud and
Community Cloud. -
Cloud Computing is a new trend in IT development, deployment, Delivery module of business Products, Services that are provided over the internet that are been used by the real time User“
-
shariq
MemberSeptember 23, 2018 at 7:32 AM in reply to: What happens if we try to insert records into Salesforce through data loader?All records are inserted in Salesforce successfully.
-
shariq
MemberSeptember 23, 2018 at 7:31 AM in reply to: How to run trigger asynchronously in Salesforce?If you use @FUTURE annotation trigger run asynchronously.
-
shariq
MemberSeptember 23, 2018 at 7:31 AM in reply to: How to call Salesforce Apex class using javascript?Check the below code.
Apex Class:
global class ClassName{
webService static String methodName(String camName) {
Campaign cam = new Campaign(name = camName);
return cam.name;
}
}
Java Script:
var Campaign = sforce.sObject(“Campaign”);
var String = sforce.apex.exceute(“ClassName”,”methodName”,{name=”ABC”});
-
shariq
MemberSeptember 23, 2018 at 7:30 AM in reply to: What is the use of “savepoint” in Salesforce Apex?This is will use for to roll back the changes.”
-
shariq
MemberSeptember 23, 2018 at 7:29 AM in reply to: What is the use of “FOR UPDATE” in Salesforce Object Query Language (SOQL)?FOR UPDATE is used to lock the records.
Ex: Campaign cam = [SELECT id FROM Campaign LIMIT 1 FOR UPDATE];
-
shariq
MemberSeptember 23, 2018 at 7:28 AM in reply to: What is the use of “ALL ROWS” in Salesforce Object Query Language (SOQL)?ALL ROWS is used for retrieving the records from recycle bin.
Ex: SELECT Id from Campaign ALL ROWS
-> “ALL ROWS” is not work in developer console.
-
shariq
MemberSeptember 23, 2018 at 7:27 AM in reply to: How to update the record using After Trigger context in Salesforce?Not possible. You will get error like “Record is Read only”.
-
shariq
MemberSeptember 23, 2018 at 7:26 AM in reply to: How to delete “Time based workflow” if there is already an action scheduled in Salesforce?We can’t delete the “Time based workflow” if any pending actions in the queue.
-
Dashboard is a pictorial representation of report. We can add up to 20 reports in single dashboard.
-
Record Types are restrict the pick list values and assign to the different page layouts for different Record Types.
-
shariq
MemberSeptember 23, 2018 at 7:22 AM in reply to: How to create Rollup summary field on lookup relation in Salesforce?Not possible. Roll-up summary is enabled for only Master –Detail relationship.
-
shariq
MemberSeptember 23, 2018 at 7:20 AM in reply to: Does checkbox performs like controlling field in Salesforce?Yes possible. Controlling field should be Check box or pick list.
-
According to the field selection on one field filter the pick list values on other field
-
shariq
MemberSeptember 23, 2018 at 7:19 AM in reply to: What is the use of “Transfer Record” in Salesforce Profile?If user have only Read access on particular record but he wants to change the owner name of that record, then in profile level Transfer Record enables he can able to change the owner.
-
shariq
MemberSeptember 23, 2018 at 7:18 AM in reply to: How we can change the Grant access using role hierarchy for standard objects in Salesforce?Not possible.
-
Manual sharing is to share a record to a particular user manually.
Go to detail page of record and click on manual sharing button and assign that record to other user with Read or Read/Write access.
Manual Sharing button enables only when OWD is private to that object
-
Permission sets extend user’s functional access without changing user’s profile.
Ex: A user has only read access through profile on custom object, administrator want to give access Edit and create operations to him without changing the profile. Administrator creates the permission set having edit and creates operation on custom object and assign to that user
-
shariq
MemberSeptember 23, 2018 at 7:16 AM in reply to: How to create Master Detail Relationship between existing records in Salesforce?Directly we can’t create Master Detail relationship between existing records, first we have to create Lookup relationship and provide valid lookup fields and it shouldn’t null.
-
shariq
MemberSeptember 23, 2018 at 7:15 AM in reply to: How many ways we can call the Salesforce Apex Class?Visual force page
Web Service
Triggers
Email services -
shariq
MemberSeptember 23, 2018 at 7:13 AM in reply to: How many controllers can be used in a Salesforce Visualforce Page?Salesforce comes under SAAS so, we can use one controller and as many extension controllers.
-
1. Email Alert
2. Task
3. Field Update
4. Outbound Message