Searching by Lookup Field Stopped Working

Searching by Lookup Field Stopped Working

Hello,

I have code that has been working for years suddenly stop working a few days ago, around 2020-Dec-03.

The lookup field used to have Field Name "HH ID", Deluge Name "HH_ID" and Field ID of "HH_ID_ID".  Despite the awkwardness it worked for years.  Thinking the problem might be caused by a Deluge Name ending in "_ID", I renamed the field to "Household" which updated code throughout, but the problem persists.

  1. void Test()
  2. {
  3. //assoc = zoho.crm.getRecordById("Recalls",2383098000027466297);
  4. //info assoc;
  5. fulfillment = Shipping_Info[Fulfillment_Name == "Endpoint"];
  6. info fulfillment;
  7. shipments = Computer_Shipment[ZIP == "02476"];
  8. info shipments;
  9. for each  shipment in shipments
  10. {
  11. info shipment.State;
  12. info shipment.Household;
  13. }
  14. oneShipment = Computer_Shipment[Household == "13498"];  //This line gets error
  15. info oneShipment;
  16. oneShipment = Computer_Shipment[Household_ID == 2383098000012721115];
  17. info oneShipment;
  18. oneShipment = Endpoint_Shipment_Notice[HH_ID = "13498"];
  19. info oneShipment;
  20. }
Here's what I get:

I've noted which line gets the error.  Even though from the code above, you can see that the set of Computer_Shipments going to ZIP Code 02476 contains a Computer_Shipment going to Household 13498, when I search for the set of Computer_Shipments going to Household 13498, i get that error.

As it suddenly broke, I'm wondering if something happened on the Zoho side.

Many thanks for any help anyone can offer here!
James