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

Urgent HELP PLZZZZ:: SOQL QUERY
Hi ....i am new to salesforce.....can u plzz guide me.....
Actullay i have a standard and Custom object..Account and Webinfo ...relationship is master-detail....
...now i have to update account fields ....the query is follows:::
select National_Code__c, PersonEmail, Account where National_Code__c=:input.UserId but now i have to update Webinfo custom object based on this:::: In webinfo i have to update professional and two more fields.....Account id is used to link with professional in webinfo...
Thanks in advance........
Can you explain bit more?
Where have you written the mentioned query ?
Taking a stab at this...
It sounds like you are updating the child object when you update the parent?
In the vein of always do declaratively before doing it programatically:
There have been times when I have had to use APEX to update parent or child objects due to certain business requirements, and to do so (assuming you're updating the parent)..
Check that out - let me know if that does it for you.
-Andy