Considerations and activation of 'Create Audit Fields'
Knowledge Article Number 000331038
https://help.salesforce.com/articleView?id=000331038&type=1&mode=1
Bulk API upserts work for Account, Contact, Case, and Opportunity
**/lwc/**/*.html |
/* | |
Set<Id> permissionSetIds = new Set<Id>(); | |
for (PermissionSetAssignment psa : [ | |
select PermissionSetId | |
from PermissionSetAssignment | |
where AssigneeId = '005d0000001rkdpAAA' | |
]) permissionSetIds.add(psa.PermissionSetId); | |
System.debug(JSON.serialize(permissionSetIds)); | |
*/ |
Considerations and activation of 'Create Audit Fields'
Knowledge Article Number 000331038
https://help.salesforce.com/articleView?id=000331038&type=1&mode=1
Bulk API upserts work for Account, Contact, Case, and Opportunity
sudo fallocate -l 4G /swapfile | |
sudo chmod 600 /swapfile | |
sudo mkswap /swapfile | |
sudo swapon /swapfile | |
echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab |
Mohamed Yaya (AFRICA DEVELOPMENT BANK) | |
Urgent Message for the Family of Sullivan | |
This is a personal email directed to you and I request that it be treated as such. I am Mr.Mohamed Yaya, a personal auditor to Engineer A.K.Sullivan account with the Africa Development Bank,LOME TOGO,He died some years ago in an auto accident and he left huge amount of money in the bank for no one to claim it.I want you to provide an account where this funds can be transferred to,since you have the same last name.I will like to present you to the bank here as the relative of my late client who come to claim the money (24.1 million united State dollars) deposited in the bank here in Lome Togo Africa but i have to register your information in the database as next of kin. | |
These are the information’s you are to send: | |
1.Your full names....... | |
2.Your date of birth.......... | |
3.Your private telephone and fax numbers.......... |
const axios = require("axios"); | |
var basicAuth = { | |
auth: { | |
username: process.env.INTERCOM_TOKEN, | |
password: "", | |
}, | |
}; | |
(async () => { |
// currently this does not work, we get 2xx return code but user_id is still on record | |
const axios = require("axios"); | |
var basicAuth = { | |
auth: { | |
username: process.env.INTERCOM_TOKEN, | |
password: "", | |
}, | |
}; | |
var id = 'intercom user id'; |
#!/bin/bash | |
# TODO don't do master, do wherever the PR is going to? | |
# TODO validate that there were diffs? | |
# needed or diff will not be based on our current git | |
Echo "********** RESETTING GIT FOR CLEAN DIFF **********" | |
git reset --hard | |
ZIPFILE=diff-archive.zip |
From: Salesforce Duplicate Management ([email protected]) <[email protected]> | |
Subject: We can't activate your Salesforce matching rule | |
Hello James Sullivan, | |
You tried to activate the matching rule Lead Email for identifying duplicate records. However, we can't activate the rule because it defines an unusually large number of records as possible duplicates. Specifically, take a closer look at these fields: | |
/* scheduled hourly */ | |
List<Lead> leads = [ | |
select Id, Email | |
from Lead | |
where IsConverted = false | |
and Email like '%=%@%example.com' | |
limit 100 | |
]; | |
for (Lead l : leads) { |