Export change sets in csv format with custom information
One answer
The Eclipse client supports Saving change logs: https://jazz.net/help-dev/clm/index.jsp?topic=%2Fcom.ibm.team.scm.doc%2Ftopics%2Ft_scm_eclipse_change_exp_save.html
Anything else will likely have to be a custom solution you have to develop. In that case I would suggest looking at the SCM command line see the help https://jazz.net/help-dev/clm/topic/com.ibm.team.scm.doc/topics/c_scm_cli.html
Comments
our server 5.0.2 and I got error that client(6.0.5) and server(5.0.2) are not compatible.
Yes, because they are not compatible. See https://jazz.net/help-dev/clm/index.jsp?topic=%2Fcom.ibm.jazz.install.doc%2Ftopics%2Fc_n-1.html
I read your second solution SCM . But i understood that it does'nt fit my question .because first i will list files.than histories corresponding file.It will be very difficult.I need to list component history like that: [change set name or id] [date] [file that changes][author name] [file added,deleted,churn,change_type]
The SCM command line absolutely fits your question. Just because it is work or difficult does not mean it won't be a potential solution.
Last resort would be a custom solution using the Java API which will be as complex as the SCM command line. To get started with that go here: https://rsjazz.wordpress.com/2015/09/30/learning-to-fly-getting-started-with-the-rtc-java-apis/
That is all I can answer. Good luck.