Batch application on Android

What would you like to see in CSPro?
Post Reply
Habtamu
Posts: 7
Joined: March 18th, 2024, 4:18 am

Batch application on Android

Post 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.
Gregory Martin
Posts: 1796
Joined: December 5th, 2011, 11:27 pm
Location: Washington, DC

Re: Batch application on Android

Post 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;
Post Reply