전체 글 279

[Agentforce Workshop Guide] - Data 360 (2) Exercise 5 ~ 8

이전글 참고더보기[Agentforce Workshop Guide] Getting Started (환경세팅하기)https://songsunkite.tistory.com/342 [Agentforce Workshop Guide - 1] Getting Started (환경세팅하기)Data Cloud 전용 Org 생성 필요https://trailhead.salesforce.com/ko/content/learn/projects/quick-start-explore-the-coral-cloud-sample-app/deploy-the-coral-cloud-sample-app Deploy the Coral Cloud Sample App GuideDeploy the Coral Cloud sample app and lears..

[Agentforce Workshop Guide] - Data 360 (1) Exercise 1 ~ 4

https://developer.salesforce.com/workshops/agentforce-workshop/data-cloud/overview Agentforce Workshop | Salesforce DevelopersBuild the Future with Agentforce Get hands-on with Data 360, Prompt Builder, and AI Agents.developer.salesforce.comExercise 1: Ingest Contacts Using the CRM ConnectorSalesforce 내부에 흩어져 있는 고객 데이터를 Data Cloud에 넣고 AI가 읽을 수 있는 표준 규격으로 변환하는 기초 공사입니다.1단. Data Cloud 준비 및 Data ..

카테고리 없음 2026.02.25

[Agentforce Workshop Guide] Getting Started (환경세팅하기)

Data Cloud 전용 Org 생성 필요https://trailhead.salesforce.com/ko/content/learn/projects/quick-start-explore-the-coral-cloud-sample-app/deploy-the-coral-cloud-sample-app Deploy the Coral Cloud Sample App GuideDeploy the Coral Cloud sample app and learn to create personalized guest experiences using Data Cloud and Agentforce. Start enhancing your skills today!trailhead.salesforce.com 그냥 Org에다가 할 수 없고 ' ..

비동기

async function fetchData(id) { // 데이터를 가져오는 비동기 함수 // 예를 들어, 백엔드 API 호출이라고 가정합니다. // ID에 해당하는 데이터를 가져옵니다. } async function parallelFetchData(dataIds) { try { const promises = dataIds.map(id => fetchData(id)); // 데이터를 병렬로 가져오는 Promise 배열 생성 const results = await Promise.all(promises); // 모든 Promise가 완료될 때까지 기다림 // 결과 처리 for (const result of results) { // 결과를 사용하는 로직을 구현합니다. } } catch (error) { //..

카테고리 없음 2023.07.11

[프로그래머스] 문자열 출력하기 JS

문자열 출력하기 문제 설명 문자열 str이 주어질 때, str을 출력하는 코드를 작성해 보세요. 제한사항 1 ≤ str의 길이 ≤ 1,000,000 str에는 공백이 없으며, 첫째 줄에 한 줄로만 주어집니다. 입출력 예 입력 #1 HelloWorld! 출력 #1 HelloWorld! 방법1. const readline = require('readline'); const rl = readline.createInterface({ input: process.stdin, output: process.stdout }); let input = []; rl.on('line', function (line) { input = [line]; }).on('close',function(){ str = input[0]; con..

Validation by finding required fields - LWC (Salesforce)

Validation by finding required fields - LWC (Salesforce) How to use reportValidity? 필드들을 작성하고 save를 누르면 필드를 채우지 않은 것만 알림을 주고싶다! 어떻게 해야할까 import {LightningElement} from 'lwc'; export default class Practice extends LightningElement { selectedValue = ''; fruitOptions = [ {label: 'Apple', value: 'apple'}, {label: 'Banana', value: 'banana'}, {label: 'Orange', value: 'orange'}, {label: 'Grape', value:..

카테고리 없음 2023.04.30

[ADX-201E] 세일즈포스 어드민 덤프 2023 문제풀이(1)

Salesforce.ADX-201E.v2023-02-04.q59 2023년 2월 4일 버전 1번부터 30번까지 해설 풀이 틀린게 있을 수 있음! 1. Ursa Major Solar uses the custom object Product Development to track Ideas R&D is wording on. A former administrator added the custom object Potential Name with a lookup to Product Development to allow R&D to track names under consideration for those product. The R&D manager recently ran a record and noticed seve..

카테고리 없음 2023.02.26