Hello BC experts,
I have question about getting list of fields that extension table contains.
On-Premise NAV solution have "Application Object Metadata" table that we use to find out fields of individual extension tables.
On cloud version (BC) we don't have access to this table anymore, so we found replacement table - AllObjWithCaption. We can get some needed info from this table, but when we try to open extension tables from this list, they have 0 fields.
Can anyone give me some pointers where I could get fields from extension tables. This is code snippet how I tries to read field info:
allobj: Record AllObjWithCaption;
field: Record Field
allobj.SetRange("Object Type", allobj."Object Type"::"TableExtension");
field.SetRange(TableName, allobj."Object Name");
Thanks