Speed of the Browse Filters

SOLVED

I'm calling the browse method and trying to find an order by number. This code takes around 4-5 minutes. Are these method really that slow?

var view = OpenView("OE0520");
view.Browse("ORDNUMBER = 5555555555", true);

Parents Reply
  • 0 in reply to Jay Converse Acumen

    Sorry, but does this look right because it's returning nothing for the fields, I don't see any docs on this view

    var view = OpenView("CS0120");
    view.Browse("SELECT IDCUST FROM ARCUS", true);

    while (view.Fetch(false))
    {

    var field = view.Fields[0];
    Console.WriteLine((string)field.Value);
    Console.WriteLine((string)field.Name)
    }

Children