1. Performance Testing in Salesforce
Before you can performance test in your sandbox environment, you must first create a test plan and submit it to salesforce.com Customer Support.
http://www.infallibletechie.com/2017/07/performance-testing-in-salesforce.html
2. PK Chunking in Salesforce
http://www.infallibletechie.com/2017/07/pk-chunking-in-salesforce.html
3. Divisions in Salesforce
http://www.infallibletechie.com/2017/07/divisions-in-salesforce.html
4. Community user unable view articles?
a. Check the Article type access to community user profile.
b. Make sure articles are shared to customer or partner or just Internal App.
5. How to create Global Picklist Value Sets from existing pick list field in Salesforce?
http://www.infallibletechie.com/2017/08/how-to-create-global-picklist-value.html
6. Default Values formula in Picklist Fields Salesforce
http://www.infallibletechie.com/2017/08/default-values-formula-in-picklist.html
7. Session-Based Permission Sets in Salesforce
http://www.infallibletechie.com/2017/08/session-based-permission-sets-in.html
8. Chatter Streams in Salesforce
http://www.infallibletechie.com/2017/08/chatter-streams-in-salesforce.html
9. Grant Access Using Hierarchies in Public Group in Salesforce
http://www.infallibletechie.com/2017/10/grant-access-using-hierarchies-in.html
10. Dynamic Apex
http://www.infallibletechie.com/2012/10/dyanamic-apex.html
11. JavaScript in Strict Mode
http://www.infallibletechie.com/2017/10/javascript-in-strict-mode.html
12. Are CRUD and FLS considered in Lightning component?
No. Visualforce enforces the active user’s CRUD and FLS permissions when a page renders a Salesforce object. Lightning doesn’t do any client-side authorization, so it doesn’t respect these permissions. The following code shows data to all users, even those who aren’t authorized to see it.
<b>Hello <i>{!v.User.FirstName}</i>.</b>
13. How to use JAVASCRIPT file stored in Static Resources in custom Lightning component?
http://www.infallibletechie.com/2017/10/how-to-use-javascript-file-stored-in.html
14. {! } and {# } delimiters in Salesforce Lightning
http://www.infallibletechie.com/2017/10/and-delimiters-in-salesforce-lightning.html
15. force:createRecord in Salesforce Lightning
http://www.infallibletechie.com/2017/11/forcecreaterecord-example-in-salesforce.html
16. How does Platform events trigger fire?
Unlike triggers on standard or custom objects, triggers on platform events don’t execute in the same Apex transaction as the one that published the event. The trigger runs asynchronously in its own process under the Automated Process entity. As a result, there might be a delay between when an event is published and when the trigger processes the event. Also, debug logs corresponding to the trigger execution are created by Automated Process. System fields, such as CreatedById and LastModifiedById, reference the Automated Process entity.
17. Is it possible to schedule a dynamic dashboard in Salesforce?
In Salesforce, it is not possible to schedule a dynamic dashboard.
18. What is the use of static variable?
When you declare a method or variable as static, it’s initialized only once when a class is loaded. Static variables aren’t transmitted as part of the view state for a Visualforce page. Static variables are only static within the scope of the request. They are not static across the server, or across the entire organization.
19. <force:recordView> Types?
<force:recordView recordId="a02D0000006V8Ov" type="MINI"/> - Uses Compact Layout
<force:recordView recordId="a02D0000006V8Ov" type="FULL"/> - Uses page layout
Before you can performance test in your sandbox environment, you must first create a test plan and submit it to salesforce.com Customer Support.
http://www.infallibletechie.com/2017/07/performance-testing-in-salesforce.html
2. PK Chunking in Salesforce
http://www.infallibletechie.com/2017/07/pk-chunking-in-salesforce.html
3. Divisions in Salesforce
http://www.infallibletechie.com/2017/07/divisions-in-salesforce.html
4. Community user unable view articles?
a. Check the Article type access to community user profile.
b. Make sure articles are shared to customer or partner or just Internal App.
5. How to create Global Picklist Value Sets from existing pick list field in Salesforce?
http://www.infallibletechie.com/2017/08/how-to-create-global-picklist-value.html
6. Default Values formula in Picklist Fields Salesforce
http://www.infallibletechie.com/2017/08/default-values-formula-in-picklist.html
7. Session-Based Permission Sets in Salesforce
http://www.infallibletechie.com/2017/08/session-based-permission-sets-in.html
8. Chatter Streams in Salesforce
http://www.infallibletechie.com/2017/08/chatter-streams-in-salesforce.html
9. Grant Access Using Hierarchies in Public Group in Salesforce
http://www.infallibletechie.com/2017/10/grant-access-using-hierarchies-in.html
10. Dynamic Apex
http://www.infallibletechie.com/2012/10/dyanamic-apex.html
11. JavaScript in Strict Mode
http://www.infallibletechie.com/2017/10/javascript-in-strict-mode.html
12. Are CRUD and FLS considered in Lightning component?
No. Visualforce enforces the active user’s CRUD and FLS permissions when a page renders a Salesforce object. Lightning doesn’t do any client-side authorization, so it doesn’t respect these permissions. The following code shows data to all users, even those who aren’t authorized to see it.
<b>Hello <i>{!v.User.FirstName}</i>.</b>
13. How to use JAVASCRIPT file stored in Static Resources in custom Lightning component?
http://www.infallibletechie.com/2017/10/how-to-use-javascript-file-stored-in.html
14. {! } and {# } delimiters in Salesforce Lightning
http://www.infallibletechie.com/2017/10/and-delimiters-in-salesforce-lightning.html
15. force:createRecord in Salesforce Lightning
http://www.infallibletechie.com/2017/11/forcecreaterecord-example-in-salesforce.html
16. How does Platform events trigger fire?
Unlike triggers on standard or custom objects, triggers on platform events don’t execute in the same Apex transaction as the one that published the event. The trigger runs asynchronously in its own process under the Automated Process entity. As a result, there might be a delay between when an event is published and when the trigger processes the event. Also, debug logs corresponding to the trigger execution are created by Automated Process. System fields, such as CreatedById and LastModifiedById, reference the Automated Process entity.
17. Is it possible to schedule a dynamic dashboard in Salesforce?
In Salesforce, it is not possible to schedule a dynamic dashboard.
18. What is the use of static variable?
When you declare a method or variable as static, it’s initialized only once when a class is loaded. Static variables aren’t transmitted as part of the view state for a Visualforce page. Static variables are only static within the scope of the request. They are not static across the server, or across the entire organization.
19. <force:recordView> Types?
<force:recordView recordId="a02D0000006V8Ov" type="MINI"/> - Uses Compact Layout
<force:recordView recordId="a02D0000006V8Ov" type="FULL"/> - Uses page layout
No comments:
Post a Comment