How to get the correct reference for method in trace?

I’m basically trying to emulate hitting tab on a field with some predefined data that I brought into the form. I’ve traced out the method, but I’m curious how you call the method that the trace shows. All of the references I try don’t seem to resolve.

<businessObject>Erp.Proxy.BO.PartImpl</businessObject>

Trying to call the PartExists method and maybe GetPartXRefInfo.

Thank you much.

The very next line in your trace will show the method that the BO (in the line above) called.

edit

since it’s on a form, you’ll probably want to edit the dataview, then update it.

I’m a little brain fried right now, I guess I’m trying to ask how to get a reference to even call the method from. I get the “type or namespace does not exist” errors, I guess I’m not sure how to construct the reference.

Edit: Like how you can throw Ice.Adapters.DynamicQueryAdapter to construct a DQA, I can’t figure out how to take the BO listed and use the methods in it.