Navision - 将记录字段名称动态传递给函数
不知道有没有人用Navision?!但我们最近一直被它困扰,我正在尝试将字段名称动态传递给函数。
而不是
ModelRec.SETCURRENTKEY(ModelRec.Transmission);
我想做一些类似...
ModelRec.SETCURRENTKEY(ModelRec("FieldName"));
其中字符串 FieldName =“Transmission” 的事情,
有人可以指出我正确的方向吗?
I don't know whether any out there uses Navision?! but we've recently been lumbered with it and I'm trying to pass a field name dynamically to a function.
Instead of
ModelRec.SETCURRENTKEY(ModelRec.Transmission);
I want to do something like ...
ModelRec.SETCURRENTKEY(ModelRec("FieldName"));
where the string FieldName = "Transmission"
Can anyone point me in the right direction please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为你需要多写一点代码。在你的函数中,你可以说
I think you need to write a little more code. In you function, you can say
如果我理解正确,您可以使用:
Record.FIELDCAPTION(Field)
。这将返回您的字段的名称。If I understand correctly, you can use:
Record.FIELDCAPTION(Field)
. This will return the name of your field.