In my application i have two functionalities that are explained below in depth.
Note:My transaction is login to the application entering some data and here i have two options to save the data "SEND" and "OK" buttons.
SEND-If we add one data and click on "SEND" the particular request will go through the mobile web services mobile application service(maximo server) and finally it saves in the MAXIMO database.(Synchronous request is executed right way).
OK(Actions->send)-If we add one data and click on"OK"(Actions->send) All the data containing the particular work order will go through the mobile web services(maximo server)--> mobile app service (maximo server) then it enters in to MOBILE table after that CRON TASK will process the data from the MOBILE table and if there are no errors then it will directly save in the MAXIMO database and the record(one defect report) is deleted in the MOBILE table(if some error occured in the record(one defect report) then it will update the error flag in the MOBILE table and the same error will send back to the maximo mobile user(Homepage)).
If i use "SEND" button then the data gets reflected in the database ,the same procedure if i use "OK" button the data not saving in db(but in the script also executing sucessfully without any errors).
Note:As of my knowledge if we click on "SEND" button our lr is going to capture only inputs which we enter manually if we execute this is working fine, same thing if we do with "OK"button here it will go entier data to db ,here our intension is saving one record but all the data containing the work order is going to the db.Because of that it is not getting saved in db i guess if my statement is wrong please correct me.
***My point is whether this application will support our lr***