분류 전체보기 11

[Hands-on Challenge] 성과 우편번호를 입력하고 그에 해당하는 조건 반환 - Create an Apex class that returns contacts based on incoming parameters - Salesforce

[Hands-on Challenge] - Salesforce Create an Apex class that returns contacts based on incoming parameters. https://trailhead.salesforce.com/ko/content/learn/modules/apex_database/apex_database_soql Apex 기본 및 데이터베이스 Apex를 사용하여 Salesforce에서 비즈니스 로직을 추가하고 데이터를 조작해 보세요. trailhead.salesforce.com For this challenge, you will need to create a class that has a method accepting two strings. The method se..

카테고리 없음 2023.02.09

[Hands-on Challenge] Account 계정에 이름 삽입하고 오류 있으면 잡아내기 Create a method for inserting accounts - Salesforce

Create a method for inserting accounts. Account 계정에 이름 삽입하고 오류 있으면 잡아내기 https://trailhead.salesforce.com/ko/content/learn/modules/apex_database/apex_database_dml To pass this challenge, create an Apex class that inserts a new account named after an incoming parameter. If the account is successfully inserted, the method should return the account record. If a DML exception occurs, the method shoul..

카테고리 없음 2023.02.09

[세일즈포스] What is SOQL?( SOQL 사용법 및 예제)

💡 SOQL 쿼리란? SOQL은 Salesforce Object Query Language의 약자! SOQL을 사용해 조직의 데이터베이스에 저장되어 있는 정보를 읽을 수 있다. 세일즈포스는 이 SOQL을 이용해서 SQL의 기능을 한다. SOQL의 구문은 SQL(Structured Query Language)과 유사하지만 그렇다고 SOQL이 SQL은 아니다. 💡 일반 SQL과 차이점 - SELECT * 을 쓸 수 없다. - 쿼리문만 지원한다( 일반 SOQL 처럼 스키마라든지, CRUD, 트랜잭션 등은 지원하지 않는다) https://trailhead.salesforce.com/ko/content/learn/modules/apex_database/apex_database_soql Apex 기본 및 데이터베이..

카테고리 없음 2023.02.08

[Hands-on Challenge] Create an Apex class with a method that returns a list of strings

https://trailhead.salesforce.com/content/learn/modules/apex_database/apex_database_intro Hands-on Challenge Create an Apex class with a method that returns a list of strings Create an Apex class with a method that returns a list of formatted strings. The length of the list is determined by an integer parameter. You can also use an array if you prefer, but these instructions assume you’re using a..

[APEX란?] APEX는 무엇이고 어떻게 사용하나요?

https://trailhead.salesforce.com/ko/content/learn/modules/apex_database/apex_database_intro Get Started with Apex Apex 기본 및 데이터베이스 Apex를 사용하여 Salesforce에서 비즈니스 로직을 추가하고 데이터를 조작해 보세요. trailhead.salesforce.com Apex는 무엇인가요? Apex는 Java와 유사한 구문을 사용하고 데이터베이스 저장 프로시저와 같이 작동하는 프로그래밍 언어입니다. Apex를 통해 개발자는 버튼 클릭, 관련 레코드 업데이트 및 Visualforce 페이지와 같은 시스템 이벤트에 비즈니스 논리를 추가할 수 있습니다 즉 객체 지향 언어로 자바랑 비슷하긴 하지만 람다, 제네..

카테고리 없음 2023.02.08

[ADX-201E] Ursa Major Solar has a training sandbox with 160MB of test data that needs to be refreshed every other day.Which two sandboxes should be used in this instance?

Ursa Major Solar has a training sandbox with 160MB of test data that needs to be refreshed every other day. Which two sandboxes should be used in this instance? Choose 2 answers A. Developer Pro -> 1GB 무료 B. Developer -> 200MB 무료 C. Full – D. Partial -> 5GB 유료 Developer : 하루 한번 새로고침, 개발 및 테스트에 사용! Developer Pro : 하루헤 한번 새로고침, 개발 및 품질 보증 작업, 테스트 Partial : 5일에 한번 새로고침, 일부 프로덕션 포함 Full : 29일마다 한번 새..

카테고리 없음 2023.02.05

[Apex Basics & Database] - Manipulate Records with DML(DML로 레코드 조작하기) 세일즈포스 DML 레코드 조작

https://trailhead.salesforce.com/ko/content/learn/modules/apex_database/apex_database_dml Manipulate Records with DML 과제 YOUR CHALLENGE Create a method for inserting accounts. To pass this challenge, create an Apex class that inserts a new account named after an incoming parameter. If the account is successfully inserted, the method should return the account record. If a DML exception occurs, th..

Developer 2023.02.04

[Apex Basics & Database] - Use sObjects (sObject 사용하기)

what is sObject? 데이터베이스 테이블의 개체 -> 즉 자바의 Object랑 비슷하다. Here are some common sObject type names in Apex used for standard objects. Account Contact Lead Opportunity sObject 변수 생성 Account acct = new Account(Name='Acme', Phone='(415)555-1212', NumberOfEmployees=100); Account acct = new Account(); acct.Name = 'Acme'; acct.Phone = '(415)555-1212'; acct.NumberOfEmployees = 100; 세일즈포스 API 이름 규칙 맞춤형 객체 및..

Developer 2023.02.04