I need to create a 2 lookup fields, the first one will display all the section objects and the second one will display all the fields of the selected object. I need to know the following
I tried to execute select query on both 'SysSchema' and 'SysSchemaProperty' to check its values but 'SysSchemaProperty' does not contain the fields of my section object. Please see screenshot below
There is no way to display columns as a lookup since this information is stored in SQL server directly and it can be displayed using:
select * from information_schema.columns where [Table_Name] = 'SysAdminUnit'
this query returns all columns that SysAdminUnit table has. You can use this query to see all columns for each object separately. List of tables can be displayed using this query: