Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/extjs/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Axapta 可以从哪个表中检索客户名称?_Axapta_Dynamics Ax 2012 - Fatal编程技术网

Axapta 可以从哪个表中检索客户名称?

Axapta 可以从哪个表中检索客户名称?,axapta,dynamics-ax-2012,Axapta,Dynamics Ax 2012,我想检索客户名称。但是在表CustTable中,没有客户名称字段。可以从哪个表中检索客户名称?您可以使用表CustTable中的name()方法检索名称 选择表CustTable,然后传递方法name()的结果 示例: CustTable custTable; select custTable where custTable.AccountNum == "YourCustomer"; info(custTable.name()); 您可以使用表CustTable中的方法name()检索名称 选

我想检索客户名称。但是在表
CustTable
中,没有客户名称字段。可以从哪个表中检索客户名称?

您可以使用表
CustTable
中的
name()
方法检索名称

选择表
CustTable
,然后传递方法
name()
的结果

示例:

CustTable custTable;
select custTable where custTable.AccountNum == "YourCustomer";
info(custTable.name());

您可以使用表
CustTable
中的方法
name()
检索名称

选择表
CustTable
,然后传递方法
name()
的结果

示例:

CustTable custTable;
select custTable where custTable.AccountNum == "YourCustomer";
info(custTable.name());

嗨,Jonathan,我如何传递SSRS报告CustomerVoiceTMP中的字段。Customername=?我应该传递什么?是的,使用该字段,然后使用SSRS报告中的同一字段来显示它。customerInvoiceTmp.Customername=DirPartyTable.Name;这是正确的???@VinothYesuraj:请为后续问题创建新问题。尽量避免在评论中询问他们,因为这会使其他人更难找到这些问题和答案。嗨,乔纳森,我如何通过SSRS报告CustomerVoiceTMP中的字段。Customername=?我应该在那里通过什么?是的,使用该字段,然后在SSRS报告中使用相同的字段来显示它;这是正确的???@VinothYesuraj:请为后续问题创建新问题。尽量避免在评论中问他们,因为这会让其他人更难找到这些问题和答案。