当我在 ax 2009 中从另一个 table 提供 id 时,如何让我的 table 自动填充
How can i get my table filled automatically when i gave id from another table in ax 2009
我在第一个 table 中有两个 table 我用名称 id 填充值,
第二个 table 如果我给了 id table 需要自动填写名字,我该怎么做请帮忙。
您评论说错误在以下行中:
axsl.TransDate = DateTimeUtil::utcNow();
这是逻辑,因为 axsl.TransDate
是 Date
和 DateTimeUtil::utcNow()
return 一个 UtcDateTime
当你编译得到这个错误 操作数类型与运算符不兼容。
有很多方法可以修复此错误。
试试这个:
axsl.TransDate = DateTimeUtil::date(DateTimeUtil::utcNow())
DateTimeUtil::date()
将 UtcDateTime
转换为 Date
.
或者您可以使用 today()
方法来 return 实际日期。
我在第一个 table 中有两个 table 我用名称 id 填充值,
第二个 table 如果我给了 id table 需要自动填写名字,我该怎么做请帮忙。
您评论说错误在以下行中:
axsl.TransDate = DateTimeUtil::utcNow();
这是逻辑,因为 axsl.TransDate
是 Date
和 DateTimeUtil::utcNow()
return 一个 UtcDateTime
当你编译得到这个错误 操作数类型与运算符不兼容。
有很多方法可以修复此错误。
试试这个:
axsl.TransDate = DateTimeUtil::date(DateTimeUtil::utcNow())
DateTimeUtil::date()
将 UtcDateTime
转换为 Date
.
或者您可以使用 today()
方法来 return 实际日期。