Salesforce
SOQL to find All Users with a Custom Permission
Trova l’id di un dato custom permission in base al suo name Trova gli utenti con un certo custom permission settato
Trova l’id di un dato custom permission in base al suo name Trova gli utenti con un certo custom permission settato
Trailhead Qui dentro trovi informazioni su: @api @wire createRecordupdateRecorddeleteRecord Incapsulamento dei component o gerarchia Trailhead LWC: Eventi Trailhead
Alcuni esempi di codici per LWC Binding Variabili import { LightningElement } from ‘lwc’; export default class App extends LightningElement { name = ‘Electra X4’; description = ‘A sweet bike built for comfort.’; category = ‘Mountain’; material = ‘Steel’; price = ‘$2,700’; pictureUrl = ‘https://s3-us-west-1.amazonaws.com/sfdc-demo/ebikes/electrax4.jpg’; ready = false; connectedCallback() { Leggi tutto…
Questi appunti sono presi durante lo studio di Salesforce Aura Specialist Challenge 2 Classi Apex che interaggiscono con il component public with sharing class BoatSearchFormController { @AuraEnabled public static List getBoatTypes() { return [SELECT Id, Name from BoatType__c ORDER BY Name]; } } Da notare la presenza di @AuraEnabled questa Leggi tutto…
Trailhead Punti chiave dei Big Object An index must include at least one custom field and can have up to five custom fields total. Custom fields included in the index must be marked as required. Long Text Area fields can’t be included in the index. The total number of characters Leggi tutto…