Eystein Bye
01/06/2025, 10:40 AMcustomer
I get Search error occurred: Invalid or unsupported search
and it times out.
I have permissions > List > Customers > Full
This just started happening after the update. Does anyone know what permission I need to set to fix this?raghav
01/06/2025, 12:59 PMSELECT id
FROM customer
Run it in suiteql query tool which is deployed and execute as role is set as admin.Eystein Bye
01/06/2025, 1:00 PMEystein Bye
01/06/2025, 1:01 PMraghav
01/06/2025, 1:01 PMEystein Bye
01/06/2025, 1:04 PMSELECT d.name
FROM customrecord_sta_dtid AS d
INNER JOIN customrecord_sta_dtid_subs AS l ON d.id = l.custrecord_sta_dtid_subs_dtid_2
INNER JOIN customrecord_sta_dt_subs AS s ON s.id = l.custrecord_sta_dtid_subs_contractsubs
INNER JOIN transaction AS t ON t.id = s.custrecord_sta_dt_subs_so
-- If I remove this line it works
INNER JOIN customer AS c ON c.id = t.entity
WHERE d.name = 'cqsqjcqo0001976r0cl0'
Eystein Bye
01/06/2025, 1:05 PMINNER JOIN customer AS c ON c.id = t.entity
it works,
But, this works
SELECT t.entity
FROM transaction AS t
INNER JOIN customer AS c ON c.id = t.entity
WHERE c.id = 204
Eystein Bye
01/06/2025, 1:05 PMraghav
01/06/2025, 6:51 PMEystein Bye
01/07/2025, 7:20 AMInvalid or unsupported search
INNER is what I have uses for about 2 yearsraghav
01/07/2025, 5:05 PMEystein Bye
01/09/2025, 1:22 PM