Dear Taniarto.
1. Check out if there is svgraph.tpl on Clarion Template folder.
2. I do not know what is the reason for getting this error, but it is
important how did you define date in Clarion DCT?
In PostgreSQL which I use, there must be defined "mydate_str" (for
example), as string and "mydate_grp" (for example), as group:
mydate_str STRING(8)
mydate_grp GROUP,PRE(),OVER(mydate_str)
mydate_date DATE
mydate_time TIME
END
Note that mydate_grp must be placed OVER mydate_str which means that
it use same memory space as mydate_str.
On Clarion side, in templates and in source code, you have to use
mydate_date and mydate_time!!!
On SQL server, or in SQL queries, you have to define and use
mydate_str. In PostgreSQL it is string(8), I do not know what it is
for MSSQL Server
I do not know if it will help.
Regards from Zoran.