我有服务器和客户端。我想在Crystal报表的Print字段中显示Server Date,而不是Client的本地日期。 我怎么能这样做?
答案 0 :(得分:2)
您必须将服务器日期从SQL Server返回到Crystal Report,并将PrintDate字段替换为新字段。
e.g
<强> SQL 强>
Select Col1,
Col2,
...
GetDate() as 'ServerDateTime'
From dbo.MyTable
将Crystal Report中的{PrintDate}
替换为数据库字段列表中的{ServerDateTime}