如何读取表中某列的每个值
使用 x++ 如何创建作业来读取 Microsoft Dynamics AX 2009 中表中列的每个值?
Using x++ how to create a job to read each value of a column in a table in Microsoft dynamics AX 2009?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
此代码将显示记录的所有列值。
要获取特定列的所有值,请使用 Carlos Heuberger 的代码。
This code will display all the column values for a record.
For getting all the values for a specific column, please use Carlos Heuberger's code.
一种可能性:在 AOT (Ctrl-D) 中右键单击
Jobs
并选择New Job
。在新窗口中输入类似的内容(使用您想要读取的正确表和列名称):但还有其他一些方法: 选择语句
One possibility: in the AOT (Ctrl-D) right-click on
Jobs
and selectNew Job
. In the new window enter something like (using the correct table and column name you want to read):but thera are some other ways: Select Statements
只是一个小小的修改,拿出
any2str
来让我的表格工作:strFmt('%1 = %2 \r\n', dictField.label(), value);
Just a slight mod, took out
any2str
to make my table work:strFmt('%1 = %2 \r\n', dictField.label(), value);