Find Order By PartNum

Hello folks!

In the client, I know I can use Part Tracker to see open orders for a given part, but I need to do the same outside the client via the API.

My intent was just to create a BAQ on the OrderDtl table, where OpenLine = true AND PartNum = XYX and call that that via the API.

I think that’s pretty simple, but wanted to see if any of you could think of anything special the Part Tracker is doing that would make doing this a different way via the API more efficient?

Thanks!

Hi Jeff,
I was looking into this as well. Not finding any answers other than a BAQ. I was hoping to use a function for future use of a possible update if they needed it. You find any good answers?

Unfortunately no. Built a parameterized BAQ and called it from the API.

Is HTTP an option?

./Erp.BO.OrderDtlSearchSvc/OrderDtlSearches?%24filter=OpenLine%20eq%20true%20and%20PartNum%20eq%20%27...your part number...%27'