abattoir
19th March 2014, 23:50
Hi,
I am new to this, but I have some degree of Baan programming experience. I want to run a report that display data on one huge giant (touch based) screen and keeps refreshing the data on the screen after every 5 seconds.
Any idea how it can be accomplished.
Regards,
Abattoir
bhushanchanda
20th March 2014, 09:28
Hi,
You can display your data on a Webpage and set a refresh rate which will look for any new data updates at every refresh.
abattoir
20th March 2014, 15:08
Hi Bhushan,
I understand what you are saying, but how can we achieve it. We are on baan4c4 doesn't use webtop, so where do we define the refresh rate.
Regards,
Abattoir
bhushanchanda
20th March 2014, 15:43
Hi,
There can be various ways to achieve that which depends on how you implement it. One way is to create some ASCII file from Baan which will be updated automatically when there is some change in the data. For this you can use a Job to create the file by calling the program. Now, you can create a Webpage which reads this ASCII file and presents the data in whatever form you want.
And there are methods in JavaScript to call the read function at some defined rate. That''s it. This is a simple method, if you want to get more complex ones, you can use .NET based calls which will directly query your database to get the results.
As I said, there are various ways. And I guess Baan 4 can handle this and yes I assume you know a little of HTML.