This file contains 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
.main-message { | |
text-align: center; | |
} | |
.main-message img { | |
margin: 50px 0 0; | |
width: 150px; | |
} | |
.main-message h1 { |
This file contains 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
//guide: | |
//1) login to salesforce | |
//2) open dev tools console | |
//3) execute "pre-start script" in dev tools console | |
//4) in "useful script" replace ObjectApiName to your object name | |
//5) execute "useful script" in dev tools console | |
//pre-start script | |
document.write('<script src="/soap/ajax/44.0/connection.js" type="text/javascript"></script><script src="/soap/ajax/44.0/apex.js" type="text/javascript"></script>') | |
var __sfdcSessionId = document.cookie.split('; ').find((item) => {return item.indexOf('sid=') == 0}).substring(4) |
This file contains 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
var userIds = [] | |
var queryUsersCallBack = (res) => { | |
console.log(res.records.length) | |
console.log(res.done) | |
console.log(res.queryLocator) | |
for (let user of res.records) { | |
userIds.push(user.Id) | |
} | |
if (res.done != 'true') { |