
`siva krishna
Member-
shradha jain replied to the discussion What is a Salesforce Analytics Query Language (SAQL)? in the forum Salesforce® Discussions 6 years ago
Reply to What is a Salesforce Analytics Query Language (SAQL)?
Hi Prachi,
You can use SAQL (Salesforce Analytics Query Language) to access data in Analytics Cloud datasets.
Analytics Cloud uses SAQL behind the scenes in lenses, dashboards, and explorer to gather data for visualizations. Users don’t write SAQL statements, they use the UI and the app makes the queries.Developers can write SAQL to… Read more
-
shradha jain replied to the discussion What is a Salesforce Analytics Query Language (SAQL)? in the forum Salesforce® Discussions 6 years ago
Reply to What is a Salesforce Analytics Query Language (SAQL)?
Hi Prachi,
You can use SAQL (Salesforce Analytics Query Language) to access data in Analytics Cloud datasets.
Analytics Cloud uses SAQL behind the scenes in lenses, dashboards, and explorer to gather data for visualizations. Users don’t write SAQL statements, they use the UI and the app makes the queries.Developers can write SAQL to… Read more
-
shradha jain replied to the discussion What is Salesforce Apex Email Service? in the forum Salesforce® Discussions 6 years ago
Reply to What is Salesforce Apex Email Service?
Hi,
Email service is special processes that use Apex classes to process incoming email messages. When you set up an email service, we need to generate a special email address in which salesforce will receive your emails.You can use email services to process the contents, headers, and attachments of inbound email. For example, you can create… Read more
-
shradha jain replied to the discussion What is Salesforce Apex Email Service? in the forum Salesforce® Discussions 6 years ago
Reply to What is Salesforce Apex Email Service?
Hi,
Email service is special processes that use Apex classes to process incoming email messages. When you set up an email service, we need to generate a special email address in which salesforce will receive your emails.You can use email services to process the contents, headers, and attachments of inbound email. For example, you can create… Read more
-
shradha jain started the discussion What is use of ui:scrollerWrapper in Salesforce? in the forum Salesforce® Discussions 6 years ago
What is use of ui:scrollerWrapper in Salesforce?
what is use of ui:scrollerWrapper in salesforce?
-
shradha jain replied to the discussion What all things are not supported in Salesforce Joined Reports? in the forum Salesforce® Discussions 6 years ago
Reply to What all things are not supported in Salesforce Joined Reports?
Hi Anjali,
One more thing that is not supported in joined report is:
You can’t filter data on a joined report in dashboard view or add a filter to a dashboard that only has joined reports.
-
shradha jain replied to the discussion Why future method is void and static in Salesforce? in the forum Salesforce® Discussions 6 years ago
Reply to Why future method is void and static in Salesforce?
Hi,
Future methods can be accessed from any class and not depend on any class instance hence it is declared as Static.Also Static keyword make it as utility method rather than normal class method. Future method runs on it own thread, so it cannot return any values to previous instance.
-
shradha jain replied to the discussion How to bulkify a code in Salesforce Apex? in the forum Salesforce® Discussions 6 years ago
Reply to How to bulkify a code in Salesforce Apex?
Hi,
To bulkify your code means to combine repetitive tasks in Apex! It’s the only way to get around Governor Limits .
For Example:
This code is not bulkified and will go over the 150 DML statements limit:
// Remember that up to 200 records can be in Trigger.new
for (Opportunity opp : Trigger.new) {
Task t = new Task();
t.Name = 'Give your… Read more -
shradha jain replied to the discussion When a BatchApexworker record is created in batch apex in salesforce? in the forum Salesforce® Discussions 6 years ago
Reply to When a BatchApexworker record is created in batch apex in salesforce?
Hello suniti,
Each time batch Apex is invoked, it creates an AsyncApexJob record. You can use the ID of this record to construct a SOQL query to retrieve the job’s status and progress. Apex creates one additional AsyncApexJob record of type BatchApexWorker for internal use for every 10,000 AsyncApexJob records.
-
shradha jain replied to the discussion When a BatchApexworker record is created in batch apex in salesforce? in the forum Salesforce® Discussions 6 years ago
Reply to When a BatchApexworker record is created in batch apex in salesforce?
Hello Anjali,
Each time batch Apex is invoked, it creates an AsyncApexJob record. You can use the ID of this record to construct a SOQL query to retrieve the job’s status and progress. Apex creates one additional AsyncApexJob record of type BatchApexWorker for internal use for every 10,000 AsyncApexJob records.
-
shradha jain replied to the discussion What is the use of System.assertEquals() in Salesforce? in the forum Salesforce® Discussions 6 years ago
Reply to What is the use of System.assertEquals() in Salesforce?
Hi Avnish,
System.assertEquals() is used to validate two values are equal. Basically it is used in test method. This method asserts that the first two arguments, x and y are the same, if they are not a runtime exception is thrown.
Example:
Account ac=new Account(name=’testName’);
Insert ac;
Account acc=[select id,name from account where… Read more
-
shradha jain replied to the discussion What are different chart types available for Dashboards? in the forum Salesforce® Discussions 6 years ago
Reply to What are different chart types available for Dashboards?
Hi Anurag,
The different tchart types available for Dashboards are:
Chart:Use a chart when you want to show data graphically. You can choose from a variety of chart types.Gauge:Use a gauge when you have a single value that you want to show within a range of custom values. For example, to create a dashboard that measures where your… Read more
-
shradha jain replied to the discussion Explain Salesforce CPQ Product Rules and Features. in the forum Salesforce® Discussions 6 years ago
Reply to Explain Salesforce CPQ Product Rules and Features.
Hi Anjali,
Product Rules evaluate a Quote’s Products against user-made conditions and then display a message in the Quote Line Editor if conditions aren’t met. Product rules contain a condition to meet, an error message (to display if the condition is not met) and a filter. Users create Error Conditions to determine if a certain set of… Read more
-
shradha jain replied to the discussion What are the meaning and uses of External Objects, Platform Event and BigObjects in Salesforce? in the forum Salesforce® Discussions 6 years ago
Hi Avnish,
External objects are similar to custom objects, except that they map to data that’s stored outside your Salesforce org. ach external object relies on an external data source definition to connect with the external system’s data.External objects enable your users and the Lightning Platform to search and interact with the external… Read more
-
shradha jain replied to the discussion How is a site related to community in Salesforce? in the forum Salesforce® Discussions 6 years ago
Reply to How is a site related to community in Salesforce?
Hello Anurag,
Every community comes with a linked Site.com site, which we can use to create pages in the community.We’ll be using Site.com to build a compelling home page for our community. Communities users can use Site.com to build custom, branded pages for a community.Each community has one associated Lightning Platform site where you can… Read more
-
shradha jain replied to the discussion Define error: "Initial term of field expression must be a concrete SObject: LIST<User> " in Salesforce in the forum Salesforce® Discussions 6 years ago
Hi Anjali,
The reason for this kind of error may be comparison of list with single sobject because list is a collection of data ,you can't compare with it single sobject .
For example, in the code below we query the set of users [into list variable user}for which ManagerId with a new Id are updated and then adding it to TrsfrMgr list. The… Read more
-
shradha jain replied to the discussion Define error: "Initial term of field expression must be a concrete SObject: LIST<User> " in Salesforce in the forum Salesforce® Discussions 6 years ago
The reason for this kind of error may be comparison of list with single sobject because list is a collection of data ,you can't compare with it single sobject .
For example, in the code below we query the set of users [into list variable user}for which ManagerId with a new Id are updated and then adding it to TrsfrMgr list. The… Read more
-
shradha jain replied to the discussion Why sidebar and showheader attribute have no effect in Salesforce Lightning Experience? in the forum Salesforce® Discussions 6 years ago
Reply to Why sidebar and showheader attribute have no effect in Salesforce Lightning Experience?
Hi Madhulika,
The standard header and sidebar are always suppressed for pages when they’re displayed in Lightning Experience.
In particular, the showHeader and sidebar attributes of <apex:page> have no effect on Visualforce pages when displayed in Lightning Experience.
Pages behave as though the showHeader and sidebar attributes of… Read more -
shradha jain replied to the discussion Explain the difference between CRM and PRM in Salesforce. in the forum Salesforce® Discussions 6 years ago
Reply to Explain the difference between CRM and PRM in Salesforce.
Hi Anjali,
The core differences between CRM and PRM are:
Purpose-built– A CRM system is, by definition, designed for customer relationship management, so in most cases the way accounts are set up is designed for a direct sales team to prospect, sell and grow existing end-customer accounts directly. On the other hand, PRMs are built… Read more
-
shradha jain replied to the discussion ensure quality data by declarative method in salesforce in the forum Salesforce® Discussions 6 years ago
Reply to ensure quality data by declarative method in salesforce
Hi Madhulika,
Following are the declarative method that helps to ensure quality data:
- Workflow alerts
- Lookup filters
- Validation rules
- Load More