As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
Mark,
Can't you just create the object then change the kmd field in the databrowser, or is this something you expect to have to do more often than that? This is something you can handle through business logic as well.
Thanks,
{ _id: ......, _kmd: { ect: ...., lmt: .... }, transactionDate: ... }
You can then leave ect and lmt to be automatically updated, and modify transactionDate as you wish.
Mark Thien
Hi guys,
I am facing a challenge that my client need to save some record which was done on previous day due to workers absent or no internet connection. I tried the following before saving a new record but doesn't work and kinvey still save as current datetime.
KinveyMetaData meta = new KinveyMetaData();
meta.set("_kmd.ect", "2015-06-07T10:10:10.001Z");
meta.set("_kmd.lmt", "2015-06-07T10:10:10.002Z");
I am thinking create 1 more field but it is kind of duplicate record. appreciate any advice please.
Cheers,
Mark Thien