OQLQuery to get an Obj in Java action

0
ExportManagerModule.generateXLS(this.getContext(), __Sales1, ExlExport,OQLquery,true); String OQLquery="select * from IMendixObject"; this query is throwing error can anyone plz help in retrieving the data from an IMendixObject.
asked
1 answers
0

Change it to (if IMendixObject is a valid Mendix entity):

FROM IMendixObject 
SELECT ATTR1, ATTR2

Create a dataset in Mendix to get help with the syntax.

Alternative: use the Excel Exporter from the appstore.

answered