일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- BASIC
- deactivate record type for chatter user profile
- developer console
- VARIABLE
- salesforce
- Too many SOQL queries
- google extension
- DML Statement
- platform developer1
- Database Methods
- service cloud consultant
- difference with java
- development link
- System.LimitException
- Administrator
- object setting
- sales cloud consultant
- chatter user profile
- dump
- Too many DML statements
- sObject
- apex
- apex class
- sharing
- Today
- Total
목록Salesforce/Developer Tools (5)
어느 Salesforce Developer의 개발 성장기
Execute soql queries SQOL? SOQL은 Salesforce Object Query Language의 약자. SOQL을 사용하여 조직의 데이터베이스에 저장된 정보를 읽을 수 있다. SOQL은 구문 적으로 SQL (Structured Query Language)과 유사하다. ex. SOQL Query 실습 Debug | Open Execute Anonymous Window에서 아래 코드를 실행한다. // Add first contact and related details Contact contact1 = new Contact( Firstname='Quentin', Lastname='Foam', Phone='(415)555-1212', Department= 'Specialty Crisis ..
Set Checkpoints in your apex code Checkpoint는 code가 실행되는 과정의 특정 부분에서 어떤 일이 일어나는지 snapshot을 보여준다. Let's set a checkpoint Select File | Open, and open the EmailMissionSpecialist class. Select Debug | Change Log Levels. In the General Trace Settings for You section, click Add/Change. Set the ApexCode log level to FINEST. To save your changes, click Done. To exit the Change Log Levels dialog box, cl..
VIEW DEBUG LOGS View Logs in the Text Editior Debug > Open Execute Anonymous Window (단축키: Ctrl + E)에서 코드를 실행. Logs 탭에 나타난 Log를 더블 클릭. Read your log data 잘못된 코드를 실행할 경우(Compile Error), error message를 포함한 dialog box가 뜬다. 코드가 온전히 실행되면, Logs 탭에 있는 Log를 더블 클릭하여 확인할 수 있다. Timestamp - 이벤트가 발생한 시간. 타임 스탬프는 항상 사용자의 시간대 및 HH : mm : ss : SSS 형식. Event - 디버그 로그 항목을 트리거 한 이벤트. 예를 들어, 생성 한 실행 로그에서치명적 오류 전자 메일..
Create and Execute apex code Create an Apex Class Apex는 Org의 비즈니스 프로세스를 사용자 정의하는 데 사용할 수 있는 Salesforce 프로그래밍 언어이다. Lighting Platform API에 대한 호출과 함께 Lightning Platform 서버에서 Flow 및 Transaction 제어문을 실행할 수 있도록 유형화된 객체지향언어를 호출할 수 있다. JAVA와 비슷하며 org의 데이터와 상호 작용하는 프로그래밍 언어이다. Apex Class 생성 : File > New > Apex Class에서 만들 수 있다. Apex Class 소스코드 확인: File > Open에서 원하는 소스코드를 확인할 수 있다. ex) public class EmailM..