Having a hard time wrapping my head about what I need to do to accomplish this task.
I need to create a BAQ that ingests a PerConID and then outputs a list of all valid sold to/ship to/bill to configurations. This is part of an integration with another system, and we are trying to condense 3 calls to 1. The current system first gets a list of available “links” to customers from the CustCnt table. From that selection, which chooses a “Sold To Customer Number”, the next call is to get available Ship Tos for the given sold to, and the third call is to get available Bill Tos for the selected Sold To. We are running into some potential issues with this method however (having a loopback API needed for the browser to be able to call it in the form without a page reload) and wanted to instead have a single call with all the possible configurations, then use filtering in the browser to drill into the selection.
