Axapta:在 AOT 中按名称查找表
我想使用 X++ 查询 AOT 以查看表名是否存在。谁能指出我正确的方向或提供一些示例代码来做到这一点?
如果表存在并且提供了名称 (str tableName),则返回 true;否则,返回 false。
I would like to query the AOT to see if a table name exists using X++. Can anyone point me in the right direction or provide some sample code for doing that?
If table exists with the name (str tableName) provided, return true; else, return false.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 tableName2Id 函数。如果表名无效,它将返回 0。
You can use the tableName2Id function. It will return 0 if the table name isn't valid.