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.
我想查询 AOT 以查看是否存在使用 X++ 的表名。谁能指出我正确的方向或提供一些示例代码来做到这一点?
如果提供的名称 (str tableName) 存在表,则返回 true;否则,返回假。
您可以使用tableName2Id函数。如果表名无效,它将返回 0。
boolean IsValidTable(str _tableName) { return tableName2Id(_tableName)==0 ? false : true; }