I create a report using the Crystal Reports built-in module in Visual Studio 2008, and for this I have added a DataSet containing several DataTables. At the moment, there are a certain number of fields in DataTables that can grow in the future, so the next person updating my report will need to update the DataSet schema.
The problem is that whenever I add new fields to Datatable, these Datatable fields are not updated in Crystal Reports. Each time I tried to do this, I had to completely remove the DataSet and add it again in order to have an updated schema, which is a very bad solution, because all the fields in the reports are already lost.
Is there an easy way to get it to update the structure? (I already clicked Verify Database in the Expert database).
source share