This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Data Collection | |
---------------- | |
This extension collects Salesforce session tokens, cookies, debug log content, and user preferences (polling intervals, notification settings) to provide debugging functionality. No personal information beyond what's necessary for Salesforce API access is collected. | |
Data Usage | |
---------------- | |
Collected data is used exclusively to authenticate with Salesforce APIs, retrieve and format debug logs, and maintain your extension settings. Session data enables automatic login detection and API communication with your Salesforce organizations. | |
Data Storage | |
---------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Privacy Policy for Smart Text Highlighter | |
============================================= | |
1. Introduction | |
-------------------- | |
Smart Text Highlighter ("we," "our," or "the extension") is committed to protecting your privacy. This Privacy Policy explains how we collect, use, and safeguard your information when you use our Chrome browser extension. | |
2. Information We Collect | |
------------------------------ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
System.debug('Accessible: ' + Schema.sObjectType.Contact.isAccessible()); | |
System.debug('Updateable: ' + Schema.sObjectType.Contact.isUpdateable()); | |
System.debug('Createable: ' + Schema.sObjectType.Contact.isCreateable()); | |
System.debug('Deletable: ' + Contact.sObjectType.getDescribe().isDeletable()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sfdx Your_Command | |
sfdx force:doc:commands:list | |
Command Description | |
================================================================================== | |
alias:list list username aliases for the Salesforce CLI | |
alias:set set username aliases for the Salesforce CLI | |
alias:unset unsets aliases for the Salesforce CLI | |
auth:device:login authorize an org using a device code | |
auth:jwt:grant authorize an org using the JWT flow |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
trigger DmlTriggerBulk on Account(after update) { | |
List<Opportunity> relatedOpps = [SELECT Id,Name,Probability FROM | |
Opportunity WHERE AccountId IN :Trigger.New]; | |
List<Opportunity> oppsToUpdate = new List<Opportunity>(); | |
for(Opportunity opp : relatedOpps) { | |
if ((opp.Probability >= 50) && (opp.Probability < 100)) { | |
opp.Description = 'New description for opportunity.'; | |
oppsToUpdate.add(opp); |