위치:
연락처가 없는 사용자를 커뮤니티 라이센스로 업그레이드
External Identity 라이센스를 사용하여 사용자를 커뮤니티 라이센스로 업그레이드해 사이트용 추가 액세스 권한을 부여합니다. 사용자를 업그레이드하려면 사용자에게 연락처부터 할당해야 합니다.
External Identity 라이센스를 사용하여 사용자를 커뮤니티 라이센스로 업그레이드해 사이트용 추가 액세스 권한을 부여합니다. 사용자를 업그레이드하려면 사용자에게 연락처부터 할당해야 합니다.
| 지원 제품: Salesforce Classic 및 Lightning Experience |
| 지원 제품: Enterprise, Performance, Unlimited 및 Developer Edition |
| 필요한 사용자 권한 | |
|---|---|
| 연락처가 없는 사용자에게 연락처 추가: | 사용자 관리 또는 외부 사용자 관리 또는 셀프 서비스 사용자 편집 |
Account a = [SELECT Id FROM Account WHERE Id = '001xx000003DIyf'];
Contact c = new Contact();
c.FirstName = 'Sonia’;
c.LastName = 'James';
c.AccountId = a.id;
insert c;
User u = [SELECT Id FROM User WHERE Id = ‘005xx000001TLlf’];
u.ContactId=c.id;
update u;

We use three kinds of cookies on our websites: required, functional, and advertising. You can choose whether functional and advertising cookies apply. Click on the different cookie categories to find out more about each category and to change the default settings.
Privacy Statement
Required cookies are necessary for basic website functionality. Some examples include: session cookies needed to transmit the website, authentication cookies, and security cookies.
Functional cookies enhance functions, performance, and services on the website. Some examples include: cookies used to analyze site traffic, cookies used for market research, and cookies used to display advertising that is not directed to a particular individual.
Advertising cookies track activity across websites in order to understand a viewer’s interests, and direct them specific marketing. Some examples include: cookies used for remarketing, or interest-based advertising.