Quick question hopefully: I have a custom field in Zoho Books: Credit Notes. The custom field is called "RMA". I'd like to create a simple SQL query that shows all credit notes that have "false" in that field. Query below:
SELECT
"Credit Notes"."Credit Note Number",
"Credit Notes"."Credit Note Date",
"Credit Notes"."Customer ID",
"Credit Notes"."Sub Total (BCY)",
"Credit Note Items"."Item Name",
"Credit Note Items"."Item ID",
"Credit Notes"."RMA"
FROM "Credit Notes"
WHERE "Credit Notes"."RMA" = 'False'
I get an error message saying the "Credit Notes"."RMA" is an invalid column. Is there any way to access Custom Fields?
Thanks in advance.