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": "Stretch", | |
"edition": "Developer", | |
"features": [ | |
"EnableSetPasswordInApi", | |
"Pardot" | |
], | |
"hasSampleData": true, | |
"language": "en_US", | |
"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
<# | |
.SYNOPSIS | |
Creates a txt based list of GPIDs | |
.DESCRIPTION | |
Creates a txt based list of GPIDs | |
One GPID pr line. Can also add it with single ' before and after for salesforce support. | |
It provides a file saver window to save to a place of your chosing. | |
.OUTPUTS |
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 : Multi purpose class for Account Deletion. | |
* Can be scheduled to run itself, the batch job constructed by this class. | |
* @author : erlend.hansen@stretch.no | https://trailblazer.me/id/ehansen7 | |
* @group : Consumer, Anonymization, Scheduler, Batch | |
* @last modified on : 10-26-2021 | |
* @last modified by : erlend.hansen@stretch.no | https://trailblazer.me/id/ehansen7 | |
* @example execute single batch | |
* Database.executeBatch( new AccountDeleteBatch(), 1); | |
* @example Schedule batch |
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
// Test data | |
Integer intTrue = 1; | |
Integer intFalse = 0; | |
String sNumberTrue = '1'; | |
String sNumberFalse = '0'; | |
Boolean bTrue = true; | |
Boolean bFalse = false; | |
String capTrue = 'TRUE'; | |
String capFalse = 'FALSE'; | |
String smallTrue = 'true'; |
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
$ErrorActionPreference = "Stop" | |
$notificationTitle = "Notification: " + [DateTime]::Now.ToShortTimeString() | |
[Windows.UI.Notifications.ToastNotificationManager, Windows.UI.Notifications, ContentType = WindowsRuntime] > $null | |
$template = [Windows.UI.Notifications.ToastNotificationManager]::GetTemplateContent([Windows.UI.Notifications.ToastTemplateType]::ToastText01) | |
#Convert to .NET type for XML manipuration | |
$toastXml = [xml] $template.GetXml() | |
$toastXml.GetElementsByTagName("text").AppendChild($toastXml.CreateTextNode($notificationTitle)) > $null |
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
/* Velger fonten for nettsiden */ | |
.wForm, .wFormTitle, .default, .wFormWebPage, .body, .wFormContainer { | |
font-family: 'lato'; | |
font-weight: 300; | |
} | |
#wfTabNav { | |
color: #000; | |
} | |
/* sentrer neste og tilbske knapp */ | |
.wForm .wfPagingButtons, .wForm .actions { |
NewerOlder