PantherSchools
7.86K subscribers
494 photos
11 videos
23 files
1.52K links
The sole purpose of the channel is to share the knowledge about salesforce mulesoft, javascript and also share any job vacancies.

Join Link
πŸ–‡οΈ https://telegram.dog/sfdcpanther

❌No Dumps ❌
❌No proxy ❌
❌No spam ❌
Download Telegram
What will be the result? Considering there are more than 1000 records for an Account object.

Integer c = 0; For(List<Account> acc: [Select Id, Name From Account Limit 30]){ c++; } System.debug(c);
Anonymous Poll
15%
31
27%
30
31%
1
5%
None of the Above
21%
Syntax Error
Please RSVP and get a chance to connect with our special guest
PantherSchools
What will be the result? Considering there are more than 1000 records for an Account object.

Integer c = 0; For(List<Account> acc: [Select Id, Name From Account Limit 30]){ c++; } System.debug(c);
The correct answer is 1. So as you can see that for loop is expecting list of Account so it can hold upto 200 records at once and because of limit it will hold all the records at once and count will be one.

If you increase to limit to 1000 and you have more than 1000 records then the count will be 5
πŸ”₯1
PantherSchools
We can call future method from ...... ?
Please don't post the answer here. I will share the answer by tomorrow
PantherSchools
We can call future method from ...... ?
Anyone who have these kind of questions please feel free to ping me
PantherSchools
We can call future method from ...... ?
We can call future method from the queueable apex but the catch is we can only call one future method
There is a requirement to import 10K Opportunity Record in Salesforce. Which toll you will use to import the records?
Anonymous Poll
38%
Data import wizard
50%
Data loader
1%
Static Resources
3%
Batch Apex
8%
Any one of the above
PantherSchools
There is a requirement to import 10K Opportunity Record in Salesforce. Which toll you will use to import the records?
The correct answer is data loader as from data import wizard we can only important the below standard
Account, Contact, Lead & Solution object
Can we use Trigger.newMap in before insert event?
Anonymous Poll
46%
No
12%
It will throw Compile time error
32%
Yes
10%
Run time error will occur
PantherSchools
Can we use Trigger.newMap in before insert event?
The correct answer for the poll is yes. We can call trigger.newMap in any event as these are context variable. The catch is if the context is not available for that event then it will return null value.
Can we share a record with particular user using Sharing rule directly without using any intermediate component?
Anonymous Quiz
75%
Yes
25%
No
Forwarded from Salesforce Geeks
LookingπŸ‘ for Salesforce Flows Scenarios to learnπŸ‘¨πŸ»β€πŸ’»πŸ‘©β€πŸ’»

Good News😍

2️⃣0️⃣ + video Playlist is now available on youtube.com/salesforcegeek

Check it out πŸ‘‡πŸ‘‡

Salesforce Flow Scenarios:
https://www.youtube.com/playlist?list=PL9kdg63vJl6C0URtd8NW18zcjaRSsczQ_
If you are new to Salesforce and wondering how to proceed with learning and what path you need to follow then Here is the document for you. πŸ”»

https://sfdc-panther.quip.com/ubNmAMnGbFGO/Salesforce-AdminDeveloper-Path

For more join - πŸ“Œ

http://telegram.dog/sfdcpanther
Can we send a body using HTTP Get method?
Anonymous Quiz
52%
Yes
48%
No