Page 1 of 1

Batch application on Android

Posted: April 2nd, 2024, 7:37 am
by Habtamu
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.

Re: Batch application on Android

Posted: April 16th, 2024, 10:10 am
by Gregory Martin
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:
File listing;
listing.open("listing.txt", create);

forcase MY_DICT do

    if
SOMETHING then
       
listing.write("Some error");
    endif

endfor;