This question is locked. New answers and comments are not allowed.
Hi! Back with another question.
Is there a way to extract a single record from an OpenEdge database? What I want it to be able to tell the user when they last created an audit with this app. Here is what I have so far, but it is still not liking it. I know that this would not be the complete code to do this, I'm just not sure where to go or if I'm on the right track.
(function (parent) {var dataProvider = app.data.progressDataProvider; dataProvider.loadCatalogs().then(function _catalogsLoaded() { var jsdo = new progress.data.JSDO({name: 'Pallet_Audit'}); jsdo.autoSort = true; jsdo.setSortFields( "STAMP_DT:DESC" ); jsdo.fill(); });})(app.welcomeView);