Hi guys. Iam try to build a micro database management system, use to do some data import and export. First i need to list each entity name in my module. How could i get that list ?
The low code way:
First Add reference to the system entities:
Then create a Aggregate with these entities; to get entities for a specific module (fka espace) set a filter on espace.name.
The SQL widget way:
Also add reference to the system entities, and use the outsystems-entity name (between curly brackets) in the SELECT statement:
Matthias Preuter wrote:
Hi Matthias Preuter,
Thanks for your help.
It works perfectly for me.
Hi Ding,
Outsystems store the entities details like Physical Name & Logical Name in one of the platform entity named (OSSYS_ENTITY) and it stores it with Espace id . So you can put some logics to get the Espace Id by its name and than get the entity names.
Regards,
-PJ-
PRAMOD JAIN wrote:
Hi PRAMOD JAIN
I tried to used SQL widget with "SELECT * FROM Ossys_entity;" , i got error says Ossys_is a reserved prefix in SQL1.
Hi Ding ,
Please try how Matthias explained and see if solves your problem.
Hi PJ,
Thank you so much.