You need to sign in to do that
Don't have an account?

how to access account name in opportunity object using custom controller
i am using custom controller for opportunity and i have field on my page account name, when i enter account name and submit it does not et store in opportuity i want to fetch and store account name in opportunity object when i click submit button my VF page.
You can access account name from opportunity by writting SOQL
[select accountname from opportunity where: mention condtion like id];
opportunity contains accountname as a field.By that you will get all the account names having opportunity.
Mark it as best to help others.
Thanks,
Deepak
Use this query
Share your code if it doesn't work
Used below query in your controller code :
Query SELECT Id,Name, Account.Name FROM Opportunity LIMIT 10000
I hope you find the above solution helpful. If it does, please mark as Best Answer to help others too.
Thanks,
Ajay Dubedi