Module "Calls", field "Call_Status" - "unsupported column" error

Module "Calls", field "Call_Status" - "unsupported column" error

Dear Zoho developers!
I've got a really strange problem. 
There are 2 Zoho CRM accounts:  my developer's account and one of my client's account.
Requesting metadata: https://www.zohoapis.com/crm/v2/settings/fields?module=Calls for the Calls module will provide the same result for the Call_Status field, with the only difference in ID value:


  1.         {
  2.             "system_mandatory": false,
  3.             "webhook": false,
  4.             "json_type": "string",
  5.             "crypt": null,
  6.             "field_label": "Call Status",
  7.             "tooltip": null,
  8.             "created_source": "default",
  9.             "field_read_only": false,
  10.             "display_label": "Call Status",
  11.             "read_only": true,
  12.             "association_details": null,
  13.             "businesscard_supported": false,
  14.             "multi_module_lookup": {},
  15.             "currency": {},
  16.             "id": "xxxx000090001",
  17.             "custom_field": false,
  18.             "lookup": {},
  19.             "visible": true,
  20.             "length": 120,
  21.             "view_type": {
  22.                 "view": false,
  23.                 "edit": false,
  24.                 "quick_create": false,
  25.                 "create": false
  26.             },
  27.             "subform": null,
  28.             "external": null,
  29.             "api_name": "Call_Status",
  30.             "unique": {},
  31.             "history_tracking": false,
  32.             "data_type": "picklist",
  33.             "formula": {},
  34.             "decimal_place": null,
  35.             "mass_update": false,
  36.             "blueprint_supported": false,
  37.             "multiselectlookup": {},
  38.             "pick_list_values": [],
  39.             "auto_number": {}
  40.         }


The following COQL query: https://www.zohoapis.com/crm/v2/coql
  1. {
      "select_query""select Call_Status  FROM Calls WHERE Owner is null OR Owner is not null LIMIT 200 OFFSET 0"
    }
Returns:
  1. For my account:
  1. {
  2.     "data": [
  3.         {
  4.             "id""4197230000000241660",
  5.             "Call_Status""Overdue"
  6.         }
  7.     ],
  8.     "info": {
  9.         "count"1,
  10.         "more_records"false
  11.     }
  12. }
  1. For client's account:
  1.  {
  2.     "code""INVALID_QUERY",
        "details": {
            "column_name""Call_Status"
        },
        "message""unsupported column",
        "status""error"
    }

So, dear developers, why? And how to fix this?