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
/** | |
* @File Name : Invocable Template | |
* @Description : | |
* @Author : agentgill | |
* @Group : | |
* @Last Modified By : agentgill | |
* @Last Modified On : 01/07/2020, 07:55:41 | |
* @Modification Log : | |
* Ver Date Author Modification | |
* 1.0 26/05/2020 agentgill Initial Version |
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
/** | |
* @File Name : BatchScheduler.cls | |
* @Description : Universal Batch Scheduling Class | |
* @Author : agentgill | |
* @Group : | |
* @Last Modified By : agentgill | |
* @Last Modified On : 07/06/2020, 17:53:10 | |
* @Modification Log : | |
* Ver Date Author Modification | |
* 1.0 07/06/2020 agentgill Initial Version |
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
{ | |
"label": "Beattie Media Executive Dashboard Template", | |
"mobileDisabled": false, | |
"state": { | |
"dataSourceLinks": [], | |
"filters": [], | |
"gridLayouts": [ | |
{ | |
"name": "Default", | |
"numColumns": 12, |
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
Afghanistan | |
Albania | |
Algeria | |
Andorra | |
Angola | |
Antigua & Deps | |
Argentina | |
Armenia | |
Australia | |
Austria |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<Package xmlns="http://soap.sforce.com/2006/04/metadata"> | |
<types> | |
<name>Layout</name> | |
<members>Account-Account Layout</members> | |
<members>Asset-Asset Layout</members> | |
<members>Campaign-Campaign Layout</members> | |
<members>CampaignMember-Campaign Member Page Layout</members> | |
<members>Case-Case Layout</members> | |
<members>Contact-Contact Layout</members> |
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
Show hidden characters
{ | |
"name": "Salesforce Project2", | |
"dockerFile": "Dockerfile", | |
"extensions": [ | |
"salesforce.salesforcedx-vscode", | |
"redhat.vscode-xml", | |
"dbaeumer.vscode-eslint", | |
"esbenp.prettier-vscode" | |
], | |
"settings": { |
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
{ | |
"orgName": "Health Cloud Person Accounts", | |
"edition": "Developer", | |
"features": ["ContactsToMultipleAccounts", "PersonAccounts", "HealthCloudUser"], | |
"settings": { | |
"orgPreferenceSettings": { | |
"s1EncryptedStoragePref2": false | |
} | |
} | |
} |
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
<?xml version="1.0" encoding="UTF-8" ?> | |
<ruleset xmlns="http://pmd.sourceforge.net/ruleset/2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="Default ruleset used by the CodeClimate Engine for Salesforce.com Apex" xsi:schemaLocation="http://pmd.sourceforge.net/ruleset/2.0.0 http://pmd.sourceforge.net/ruleset_2_0_0.xsd"> | |
<description>Default ruleset used by the Code Climate Engine for Salesforce.com Apex</description> | |
<exclude-pattern>.*/.sfdx/.*</exclude-pattern> | |
<!-- COMPLEXITY --> | |
<rule ref="category/apex/design.xml/ExcessiveClassLength" message="Avoid really long classes (lines of code)"> | |
<priority>3</priority> | |
<properties> | |
<property name="minimum" value="1000" /> | |
</properties> |
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
# List files or directories below to ignore them when running force:source:push, force:source:pull, and force:source:status | |
# More information: https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_exclude_source.htm | |
# | |
package.xml | |
# LWC configuration files | |
**/jsconfig.json | |
**/.eslintrc.json |
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
/* | |
@description How to parse Salesforce REST Responses | |
sfdx force:data:soql:query -q "SELECT Id, Subject, WhatId, Owner.Name,Type, CaseOwnerTeam__c, Case__r.Contact.Email, Case__r.Contact.State__c \ | |
FROM Task \ | |
WHERE \ | |
Case__c != null AND Subject like '%legal%' and Type = 'Call' AND Case__r.ClosedDate != TODAY" -r json > input.json | |
*/ |