Hi Trent,
I download the sample app found at:
http://forum.strataframe.net/Topic24160-6-1.aspx#bm24293 for the browse dialog and it is works fine on my computer. But in my scenario I can not make it to work.
I even tried a to test with a simple form as you did in your sample. When I had the fields name like: SearchOption and SearchCategory I still loose these names when looking into other fields in the combo box for Search Fields or the BrowseResultLayout. For the SearchOption and SearchCategory I have actually the FKs in that BO. If I type the names of those 2 fields and running the browse dialog I am getting this error as well: Object reference not set to an instance of an object.
If I had another field which is part of the BO then the browse dialog is loaded but those 2 fields SearchOption and SearchCategory are not shown.
This the main bo is named: ProductsMGRBO and it has the below fields:
ProductsMGR_PK
SearchOptions_FK
SearchCategories_FK
Products_FK
DisplayProdutOrder
DateTimeCreated
Actually me Edhy tried to make it work, but it just did not happen. Is there a view problem in here? See also attached data after running the view. If you look at the attached spread sheet there is no any NULL record. It is a straight forward data.

The below view is based on a SP that I used all the time with no problem.
Here is the corrected view:CREATE VIEW [dbo].[Get_Products_MenuOptions_View]
AS
SELECT
dbo.ProductsMGR.ProductsMGR_PK,
dbo.ProductsMGR.SearchOptions_FK,
dbo.ProductsMGR.SearchCategories_FK,
dbo.ProductsMGR.Products_FK,
dbo.ProductsMGR.DisplayProdutOrder,
dbo.ProductsMGR.DateTimeCreated,
dbo.Products.ProductName,
dbo.Products.Price,
dbo.Products.OriginalPrice,
dbo.Products.DiscountedPrice,
dbo.SearchCategories.SearchCategory,
dbo.SearchOptions.SearchOption,
dbo.Products.ProductNo,
COALESCE(dbo.Products.Percentage,'UNKNOWN') AS Percentage
FROM
dbo.ProductsMGR
INNER JOIN dbo.Products
ON dbo.ProductsMGR.Products_FK = dbo.Products.Products_PK
INNER JOIN dbo.SearchOptions
ON dbo.ProductsMGR.SearchOptions_FK = dbo.SearchOptions.SearchOptions_PK
INNER JOIN dbo.SearchCategories
ON dbo.ProductsMGR.SearchCategories_FK = dbo.SearchCategories.SearchCategories_PK
GO
Thanks,
Doron