I’m tying to located three Primary Contact checkboxes (Billing, Purchasing, Shipping) located in Customer Maintenance. I’ve created a BAQ and searched Customer, Custcnt, Person, etc. Extending Property has no DB Assigned and has them checked as External.
Which database can I use to located these fields for my BAQ??
Sure, depends on your end goal. Perhaps a screenshot of you current query in the builder would give me an idea of what you are looking for (tables, links, etc).
I had to build a BAQ for this so I thought I would post the Calculated Fields for 10.1.500:
Primary Billing (bit): CASE WHEN CustCnt.ConNum=Customer.PrimBCon THEN 1 ELSE 0 END
Primary Purchasing (bit): CASE WHEN CustCnt.ConNum=Customer.PrimPCon THEN 1 ELSE 0 END
Primary Shipping (bit): CASE WHEN CustCnt.ConNum=Customer.PrimSCon THEN 1 ELSE 0 END