SysDictTable的getSerie方法在AX中返回什么?
SysDatabaseLog 向导似乎按此方法调用的结果对可用于审核的表进行分组。 MSDN 没有关于此方法的文档。
我需要知道它返回什么,以便我有机会将一些用户表放入向导中。
The SysDatabaseLog wizard seems to group the tables that are available for auditing by the result of this method call. MSDN has no documentation on this method.
I need to know what it is returning so I can have a chance of putting some user tables into the wizard.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它返回最上面父安全密钥的标签。
例如,
PriceDiscTable
的安全密钥是BasicTables
,BasicTables
的父安全密钥是Basic
- 它不是有父级,因此将返回其标签(英语为Basic
,丹麦语为Basis
等)。It returns the label of the topmost parent security key.
E.g. the security key of
PriceDiscTable
isBasicTables
, the parent security key ofBasicTables
isBasic
- it doesn't have a parent, hence its label (Basic
in English,Basis
in Danish, etc.) will be returned.好的,该代码实际上可以在 AX 中使用。它返回安全密钥的名称。
Okay the code is actually available in AX. It returns the name of the Security Key.