Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 navision 2013 中过滤数据“类型(A)”。我收到以下错误消息“过滤器对类型字段无效”。没想到a'('。我在c / side代码中使用setfilter。如何在navision中过滤'('?谢谢
您需要使用以下语法:
SETFILTER(Type,'%1','Type(A)');
这同样适用于经典客户端/开发环境中的过滤 - 查询应该用撇号包装:
'Type(A)'
代替
Type(A)