반응형
# BillingAddress in query generate error
■ ERROR CODE
System.QueryException: No such column 'BillingAddress' on entity 'Account'.
분명 Account 객체에는 BillingAddress 컬럼이 있으나 막상 쿼리에서 사용하려고 하면 존재하지 않는다는 에러를 뱉는다.
원인은 BillingAddress가 복합필드이기 때문이다.
■ 잘못된 query
List<Account> account_list = [select Id, Latitude__c, Longitude__c, BillingAddress from Account];
■ 올바른 query
List<Account> account_list = [select Id, Latitude__c, Longitude__c, BillingState, BillingCity, BillingStreet from Account];
BillingState, BillingCity, BillingStreet 컬럼을 활용하면 된다.
반응형
'heroku & salesforce' 카테고리의 다른 글
[heroku] Django static 깨짐 현상 & WHITENOISE 설정 (0) | 2022.06.03 |
---|---|
[heroku] Auth0 카카오 로그인 연동하기 _Auth0 Social Login (0) | 2022.05.18 |
[Django] 파이썬 장고 salesforce 로그인 연동 _simple_salesforce (0) | 2022.05.16 |
[SalesForce + lwc ] loadScript 사용해서 외부 스크립트 함수 가져오기 (0) | 2022.04.28 |
[heroku] Salesforce와 DB 연동하기 / heroku salesforce mapping (0) | 2022.04.21 |
댓글