Hello Diwakar,
Quote should be not a problem.
"Header","1","2","3"
"Text","1","2","3"
"TextData","1","2","3"
"TextData","1","2","3"
"Text","1",3","5"
It is because of the order of the fields.
In your case if you configure Header,1,Text,*,TextData,* .It's logically wrong because Text records are coming again after TextData records
Try this.
Header,1,Text,1,TextData,*,Text,1.It will work.
To use this FCC-Header,1,Text,*,TextData,* .File data should be like
"Header","1","2","3"
"Text","1","2","3"
"Text","1",3","5"
"TextData","1","2","3"
"TextData","1","2","3"