That worked. TY!
Now I am testing the component with several different spreadsheets (from various sources), and I am running into problems with dates.
My schema in tFileExcelSheetInput for all columns is set to String, which I then parse and convert appropriately in a tMap. Since different authors format dates differently in their spreadsheets, I am getting this error from a few of the spreadsheets on the date columns (in the spreadsheet the date appears as 3/30/2015)
connecting to socket on port 3846
connected
Exception in component tMap_1
java.lang.RuntimeException: java.text.ParseException: Unparseable date: "20150330000000"
at routines.TalendDate.parseDate(TalendDate.java:864)
at routines.TalendDate.parseDate(TalendDate.java:808)
at me_comm1.load_tmp_commfeed_0_1.Load_TMP_CommFeed.tFileExcelSheetInput_1Process(Load_TMP_CommFeed.java:2700)
The date fields in the spreadsheet are formatted like so:
I stepped through Java debug and the date is coming in from tFileExcelSheetInput as "20150330000000".
Any suggestions?