Version in use: app 10.0.8 / plat 32
I've created a new table with the following fields in my custom model:
(int)UnitIdNumber,(real) Cost,(enum) Spared,(enum) Priority ,(string) Description
I then created an entity so I could export this data. When the entity is created it also creates a few additional fields in the staging table that I do not need
(DefinitionGroup, ExecutionId, IsSelected, TransferStatus.), so I delete them from the staging table.
After building and Syncing the database, I go to my table view URL to ensure the table is there. It is there and it's currently empty.
Then I go to data import/export to test the export and verify the empty table is exported without issue.
I then add 1 row of data to the table from the table view, and then return to data export workspace.
Now when I try to export the data this time it fails with the generic error "The field with ID '0' does not exist in table 'MyDataTable'". Other answers around this seem to point to the issue being in the map, however I don't know why this is working for an empty table then because the map should be the same. I did review the map settings in data import/export and all fields are mapped correctly. I removed my data from the table and the export works without issue. What could be causing this to happen?