How to make a BAQ Search?

Let’s say I have a BAQ for NonConf table. I want to use it in the BAQ Search for NonConf (Inspection Processing). How do I get it to appear in there?

1 Like

You need to add the TranID field from NonConf table into the BAQ Search. That works for me.

3 Likes

Oh shoot - you said Inspection Processing. I ran this in Nonconformance… I retract my post.

So this may or may not be helpful. But I took a second look at this… I did a trace because I was curious just how I’d find out what column it would look at and lo and behold, this is the column that makes the BAQ appear in that BAQ Search tab.

NonConf.ResourceID

Here is what the trace looked like:
note the parameter called likeTableAndField

  <businessObject>Ice.Proxy.BO.QuickSearchImpl</businessObject>
  <methodName>GetBaseDefault</methodName>
  <appServerUri>net.tcp://vanair-epicor.ext.corp.le/Kinetic11Prod/</appServerUri>
  <returnType>System.Void</returnType>
  <localTime>2/11/2026 15:11:46:6126112 PM</localTime>
  <threadID>1</threadID>
  <correlationId>27bd675f-b991-42a6-83db-7ab7bc7a7f53</correlationId>
  <executionTime total="136" roundTrip="136" channel="0" bpm="0" bpmDataForm="0" other="0" />
  <retries>0</retries>
  <parameters>
    <parameter name="likeTableAndField" type="System.String"><![CDATA[NonConf.ResourceID]]></parameter>
    <parameter name="callFrom" type="System.String"><![CDATA[Erp.UI.InspectionProcessingEntry]]></parameter>
    <parameter name="baseSearchId" type="System.String"><![CDATA[]]></parameter>
  </parameters>
</tracePacket>
1 Like