Just upgraded to 2025.2.13 and I missed a small customization in testing that no longer works and I’m hitting a wall.
The point of this is on the NewPO suggestion screen it does a lookup to see if there is an open contract PO and makes a cute little green rectangle that says “Contract PO Active”.
This is the code that used to work.
whereClause = "PartNum = '" + partNum + "' and ContractActive = '1' and OpenLine = '1'";
System.Data.DataSet dsPODetailSearchAdapter = Ice.UI.FormFunctions.SearchFunctions.listLookup(this.oTrans, "PODetailTrackerSearchAdapter", out recSelected, false, whereClause);
Using the BL Reader, it looks like it stopped working because the PODetailTrackerSearch got replaced by PODetailLineSearch. The problem I’m running into is that there is no PODetailLineSearch adapter.
I could use the PODetailSearch adapter but that has a whereclause for the POHeader and PODetail, and I can’t figure out how to pass both of them in a single string with the list lookup.
Any ideas?