M
maura
Guest
The find fn returns a reference to the record found, else null, and the record found becomes the working record for that table, so you could do the following: jsdo.find(function(jsrecord) { return (jsrecord.data.CustNum == 2100); }); if (jsdo.record) { jsdo.record.remove(); } Detailed doc below: documentation.progress.com/.../
Continue reading...
Continue reading...