My company runs a pretty complex configurator that references UD tables in our UD Methods.
I was able to successfully pull the UD table into a dataview using a BO event, filtered.
Does anyone know how to reference the UD dataview in a c# code in the configurator?
Can you expand on that a little? Are you trying to show the data in the client? And which UD Tables are you using? Are they the same tables in the configurator context (OrderHed_UD, OrderDtl_UD for order configurators, QuoteHed_UD, QuoteDtl_UD for quote configurators, etc)?
I’ve done a lot with UD tables in configurators, generally querying the tables in the UDMethods rather than trying to access a customization dataview.
On the client side you aren’t able to access the database directly. Server based UD methods have full access to the database. Servier based User Defined methods can pass back strings, decimal, etc. You can pass back a fair amount of data via a string or string array but nothing that is natively a dataview. I think they are adding some sort of local dataview but haven’t seen it first hand yet. I am guessing you will need to load it yourself with data from a server method or otherwise.