我正在运行 SugarCRM 6.5.x 并使用 SOAP API。我想要实现的是通过使用公司注册号检查自定义字段的值来查找帐户,如下所示:
get_entry_list(...
accounts.id in (select id_c from accounts_cstm join accounts on accounts_cstm.id_c = accounts.id where accounts_cstm.company_number__c = '12345678')
... )
我不断收到拒绝访问错误,我不明白为什么?如果我在 phpmyadmin 中运行查询,它可以正常工作吗?我怎样才能使这项工作为 SugarCRM 工作?