분류 전체보기30 Developer Beginner | Apex Basics & Database | Manipulate Records with DML public class AccountHandler { public static Account insertNewAccount(String name) { Account answer = null; try { Account acct = new Account(Name = name); insert acct; ID acctId = acct.Id; answer = [SELECT Name from Account WHERE Id=:acctId]; } catch (DmlException e) { System.debug(e.getMessage()); } return answer; } } Challenge Code 통과 빈 문자열 넣으면 아래와 같이 log 찍힘 2021. 3. 19. 처음 작성한 Apex code ㅋㅋㅋ 그냥 기념하려고 써본다... declarative dev만 하다가 ㅠㅠㅠ 뭘 써봐서 ㅠㅠㅠ 감동함 ㅠㅠㅠ 그리구 한방에 통과 ㅠㅠㅠ 2021. 3. 18. Salesforce Data Loader 설치 help.salesforce.com/articleView?id=sf.loader_install_windows.htm&type=5 Help | Training | Salesforce help.salesforce.com 링크에서 시키는대로 하면 되는데 Zulu OpenJDK Java 11을 설치할 것 > 처음에 오라클 JDK 설치했더니 다음과 같은 메시지 뜸 Data Loader requires Zulu OpenJDK 11. Checking if it is installed... Zulu OpenJDK is not installed, or ZULU_JAVA_HOME not in path. Download Zulu OpenJDK 11 for Windows here: www.azul.com/downloads/z.. 2021. 3. 8. Overview Training Org를 생성하고 둘러봄 - Org? (= Organization) a deployment of Salesforce that has a defined set of licensed users. Org는 모든 데이터 및 애플리케이션을 포함하고, 다른 모든 Org와는 별개다. (세일즈포스는 클라우드 기반이기 때문에 Org를 생성한다는 건 서버를 열어준다는 거와 같다... 라고 생각해도 됨(???)) Org의 Username은 global하게 unique 검사를 함에 유의 classic이 있고 lightning이 있는데, lightning이 새로이 개발된 플랫폼. (발전된 UI) - 일단 Training Org에 가입하면 Administration Essential for New Admins를 .. 2021. 3. 4. 이전 1 2 3 4 5 6 7 8 다음