function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
danlatdanlat 

Billing Address Field

Hi All,

 

I am having trouble trying to access the Billing Address standard field on an Account object and I am

looking for some help.

 

I am using the following in a visualforce page:

 

{!opportunity.Account.BillingAddress}

 

but this gives me an exception saying "invalid field"? but I do not have any trouble accessing, for example:

the lead_source stabdard field:

 

{!opportunity.Account.PersonLeadSource} 

 

I am aware this may be somthing simple so would appreciate any pointers.

 

Thanks

Best Answer chosen by Admin (Salesforce Developers) 
prageethprageeth
Hello danlat;
There is no field named "BillingAddress" in salesforce database.
You have to build the address as below.
 

{!opportunity.account.BillingStreet}

{!opportunity.account.BillingCity}

{!opportunity.account.BillingState}

{!opportunity.account.BillingPostalCode}

{!opportunity.account.BillingCountry}

 

 As you believed the answere was simple:)

All Answers

prageethprageeth
Hello danlat;
There is no field named "BillingAddress" in salesforce database.
You have to build the address as below.
 

{!opportunity.account.BillingStreet}

{!opportunity.account.BillingCity}

{!opportunity.account.BillingState}

{!opportunity.account.BillingPostalCode}

{!opportunity.account.BillingCountry}

 

 As you believed the answere was simple:)
This was selected as the best answer
danlatdanlat

Hi,

 

prageeth, thanks for the reply, that worked. Im now gonna bang my head 

against a brick wall..:smileyhappy:

kavya g 3kavya g 3
Hi Guys...

before save address is cleansed on lead.

similarly, can we perform address cleansing on Standard opportunity page before click on 'save' ??

if yes... how it can achieved?
if No... why??

Thanx in advance.