일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- platform developer1
- sObject
- developer console
- BASIC
- salesforce
- apex class
- Database Methods
- object setting
- apex
- difference with java
- Too many DML statements
- google extension
- deactivate record type for chatter user profile
- Too many SOQL queries
- dump
- DML Statement
- Administrator
- VARIABLE
- sales cloud consultant
- sharing
- chatter user profile
- service cloud consultant
- development link
- System.LimitException
- Today
- Total
목록apex (4)
어느 Salesforce Developer의 개발 성장기
DML Statement DML Statement는 single sObject 또는 a list (or array) of sObjects를 허용한다. Salesforce에 있는 특별한 DML 문 upsert : 지정된 필드를 사용하여 기존 개체의 존재 여부를 결정하거나 필드가 지정되지 않은 경우 ID 필드를 사용하여 단일 레코드 내에서 sObject 레코드를 새로 작성하고 업데이트한다 (→ 기존 레코드가 있으면 Update / 레코드가 없으면 Insert) merge : 동일한 sObject 유형의 최대 세 개의 레코드를 레코드 중 하나에 병합하고, 다른 레코드를 삭제하고, 관련된 모든 레코드를 다시 연결한다. bulk DML operation Limits: Apex transaction 당 DML 제한..
sObjects는 Salesforce의 개체를 선언하는 생성자이다. Account acct = new Account(); Account acct = new Account(Name='Acme'); Account acct = new Account(Name='Acme', Phone='(415)555-1212', NumberOfEmployees=100); sObjects과 Field는 필드 이름(API Name으로 호출한다. Book book = new Book__c(Name='Workbook 1', ISBN__c='978-89-93635-85-0'); Generic sObject (parent of all sObject): Generic sObject는 모든 개체를 상속 받는다. ex) 계정(Account) ..
Apex는 객체지향언어로 Lightning Platform에서 저장되고, 컴파일되며, 실행된다. Data Type: 모든 변수는 기본적으로 null로 초기화된다. - Integer - Double - Long - Date - Datetime - String - Boolean - ID Collection: List, Set, Map를 사용한다. List List myStrings = new List(); Apex에서 List는 배열과 거의 동일하게 작동하며, 서로 바꿔서 사용할 수 있다. String[] myStrings = new List(); add() 함수: List myStrings = new List {'String1', 'String2', 'String3' }; List myStrings = n..
with sharing 사용자에 대한 공유 규칙이 클래스에 고려되도록 지정할 수 있다. Apex Code가 System Context에서 실행되므로 클래스에 대해 이 키워드를 명시적으로 설정해야한다. System Context에서 Apex Code는 개체에 대한 사용 권한, 필드 수준 보안, 공유 규칙이 현재 사용자에게 적용되지 않은 모든 개체 및 피드에 대한 권한을 가진다. with sharing 키워드를 활용하여 사용자의 공유 규칙에 따라 코드가 실행되지 않도록 한다. 예외: Developer Console에서 Execute Anonymous Windows에서 Apex Class 실행 public with sharing class sharingClass { // Code here } without s..