Since Intuit has broken the QBFC reference today, I have to ask a question that I could normally look up. (I do not know who to complain to).

I normally query by list_id like so: ICustomerQuery CustomerQueryRq = requestMsgSet.AppendCustomerQueryRq(); CustomerQueryRq.ORCustomerListQuery.ListIDList.Add(qb_list_id);

Is there a way to query by AccountNumber?

Thanks!

有帮助吗?

解决方案

No, QuickBooks does not support querying by the AccountNumber field.

其他提示

This is old, but maybe worth adding.

Create a temp "cached" object, containing all the properties you want to search for. Them when launching, and whenever customer changes are made, cache a list of custom QBcustomersForSearch objects with only the properties that you would want to use for the search.

class qbCustomerForSearch

property email as string
property accountnumber as string
property whatever as string
property QBListId as string

end class

Cache / create a list of these objects when and as needed, and search your list. Once located in your list, use the listID to identify the QB customer.

Cheers

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top