I'm attempting to use SetBrowseIndex/SetBrowseFIlter with the IM_AliastItem_svc object, and am having a little trouble. Basically, I have the following key values available: ARDivisionNo CustomerNo ItemCode And would like to know if a customer alias exists for the item code. This is what I have so far: div = "00" cust = "ABC" item = "12345" retVal = oAlias.SetBrowseIndex("KCUSTOMERITEM", "") retVal = oAlias.SetBrowseFilter(div + cust + item) retVal = oAlias.MoveFirst() When I call the last line above, the method returns zero with a last error message of 'The file is empty or does not match filter'. I've verified that there is at least one existing alias item for the above combination of item/customer. Am I setting the browse filter incorrectly? Any help would be appreciated! Thanks!
↧