PDII 문제 271

코드보다 선언적 사용자 지정을 사용하면 얻을 수 있는 세 가지 이점은 무엇입니까? 3개의 답변을 선택하세요

PDII 문제 272

회사는 계정이 업데이트될 때마다 외부 시스템에 알림을 받을 것을 요구합니다. 다음 코드가 트리거할 수 있는 LimitException은 무엇입니까? 계정에서 AccountTrigger 트리거(업데이트 후) { for (Account updatedAccount : Trigger.new) { AccountTriggerHelper.notinyxternalSystem(updatedAccount.id); } } public class AccountTriggerHelper { future(callout=true) public static void notinyxternalSystemlId accountId) { 계정 acc = [ID, 이름 from.Account 선택, 여기서 accountId = :accountId]; //새 http 객체를 인스턴스화합니다. Http h = new Http(); HttpRequest 요청 = 새로운 HttpRequest(); req.setEndpoint('http://example.org/restService'); req.setMethod('POST'); req.setBody(JSON.serialize(acc)); HttpResponse res = h.send(req); } }