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
Which OWD value the share Object will be available for the custom Objects?
Anonymous Quiz
21%
Private
23%
Public Read Only
51%
Both
5%
None
There are Some share records available for a custom object and then for some reason the OWD has been changed to public Read write. what will happen to share object?
Anonymous Poll
67%
Share object will be available?
33%
Share object will not be available?
๐Ÿ”ด Catch us live this Saturday (13/03/2021) at 09:00 PM IST on youtube.com/salesforcegeek with Salesforce Lightning Champion and Founder of #BeASalesforceChamp Akashdeep Arora๐ŸŒฉ๏ธ๐Ÿ‡ฎ๐Ÿ‡ณ๐Ÿ‡ฌ๐Ÿ‡ง ๐Ÿ‡จ๐Ÿ‡ญ ๐Ÿ‡ซ๐Ÿ‡ท ๐Ÿ‡ด๐Ÿ‡ฒ with his inspiring Salesforce Journey.


๐Ÿ“ŒJourney Includes how he switches from customer Executive to Technical Lead, How he became Lightning Champion.

๐Ÿ“ŒHow Akashdeep overcome failures in his starting phase of Salesforce Journey.

๐Ÿ“ŒWe will also discuss the Salesforce Developer/Admin RoadMap as a beginner and How Personal Branding helped him to create his unique identity in Salesforce Ecosystem.

๐Ÿ“ŒGiveaway: Free Salesforce LWC and Integration Vouchers.

๐Ÿ“ŒTo be a part of the giveaway check this out form https://lnkd.in/gdftFmf and we will announce the winners during the live session with the help of Random Picker

๐Ÿ“ŒTo get the reminder just before the live session Make sure you are in the Telegram Group bit.ly/salesforcegeek
๐Ÿ‘1
Will AccountShare object be available if the OWD for Account object is public read write?
Anonymous Poll
56%
Yes
44%
No
๐Ÿšจ๐Ÿšจ Hiring Alert

For more join ๐Ÿ“Œ
https://telegram.dog/sfdcpanther
There is a trigger on contact which is updating the related user title if the contact title is changed. What will happen if the users changes the title of Contact
Anonymous Poll
34%
The related user title will be changed
66%
MIXED DML ERROR WILL BE THROWN
Hello,

I have created a new channel where I will be posting the videos in Hindi. Are you excited? Join @SFDCPantherHindi
Anonymous Poll
61%
Yes
39%
No
Channel name was changed to ยซSFDCPANTHER Discussion ๐Ÿ‘จโ€๐Ÿ’ปยป
What will happen if user tries to save below code.

trigger userTrigger on User ( before delete ){}
Anonymous Poll
21%
Compilation Failed
46%
Trigger will be saved
20%
Run Time error
14%
NONE OF THE ABOVE
Channel photo updated
How can an apex developer prevent serializing and apex class using JSON.serialize() method

Fill in the blanks use @JSONAccess()
Anonymous Poll
42%
Serializable=true
43%
Serializable=never
8%
Deserializable=never
7%
Deserializable=somenamespace
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