Dear Cspro teams
Iam requesting, I need batch application on android platforms please if it's possible try it make to run on android platforms. It is better for data cleaning on spot when data is collecting at filled deployment period.
Batch application on Android
-
- Posts: 1882
- Joined: December 5th, 2011, 11:27 pm
- Location: Washington, DC
Re: Batch application on Android
We will support this at some point, as it would be very valuable, but as we are a very small programming team, it keeps getting pushed down the road.
Some people have simulated a batch application by running an entry application that has the dictionary attached as an external dictionary, and then using File.write statements to write out reports. For example:
Some people have simulated a batch application by running an entry application that has the dictionary attached as an external dictionary, and then using File.write statements to write out reports. For example:
File listing;
listing.open("listing.txt", create);
forcase MY_DICT do
if SOMETHING then
listing.write("Some error");
endif;
endfor;
listing.open("listing.txt", create);
forcase MY_DICT do
if SOMETHING then
listing.write("Some error");
endif;
endfor;