I have 1 database table, i know the name of the table and the database name.
But I need help finding its Entity in the outsystems.
How can I get the Entity name from the database table name?
Hi Pradip Chavhan
are you using integration studio for integration the database?
Prince
Hi Pradip Chavhan,
We have data tab in that we have all table(Entities ) you can go through that or search by the Name in same module or other Modules .
If you have configured the external database you can open the Integration and, in Data Tab you can get the all tables .
Hope this will help you
Hello,
You can do this with a SQL node in an OutSystems application. Add references to the {Entity} and {Espace} entities from the "System" module and run this query:
SELECT {Entity}.[Name], {Espace}.[Name]FROM {Entity}INNER JOIN {Espace} ON {Entity}.[Espace_Id] = {Espace}.[Id]WHERE {Entity}.[Physical_Table_Name] = 'YourTableName'