You need to sign in to do that
Don't have an account?
sfdcbynite
adding instance methods to Sobjects
Is it possible to (and if so how) to add apex methods to a custom Sobject? standard Sobject? Or do I need to create a child/wrapper class or utility class? Thanks, Dovid
can you please elaborate which apex methods are you talking about? Please search for "Apex sObject Methods" in the Apex developer guide and you will find a list of sObject methods
You can go for Controller Extension to customize the standard functionality..
http://www.salesforce.com/us/developer/docs/pages/Content/pages_controller_extension.htm
Let me know if that answers your question.
Since internal is not exposed by salesforce, this is not possible. You can just add some functionality to standard functionality as I said in my last post.