I'm facing the following problem:
I have two inputs:
1) I have a csv base file with 35 columns and their proper headers.
2) I have a variety of given files, not controlled by me, that may or may not contain the 35 columns and, even worse, they may be out of order.
I have to match the columns from the second csv file to the columns in the first csv file. If the second csv file doesn't have all the 35 columns, I should create those in their proper order.
Once I have a proper csv file (one which the header looks like the first csv header) I would pass it to a script that manages the data referencing them by the columns headers.
One possible solution would be getting the existing field inputs inside the script, however, I'm not able to do that because the fields seem to be fixed referencing the existing column headers of the second csv file. Therefore, when I try to access a column that doesn't exist, I end up with an exception...
Any help would be greatly appreciated!