I have a tex file which is like this :
\cleardoublepage
\phantomsection
\includepdf[pages=-,addtotoc={ 1,section,1, 200_project_title: , p1,
1,subsection,1,Section A - Project Identification, p2,
1,subsection,1,Section C - Basic or Applied Research,p3,
3,subsection,1,Section D - Additional project information,p4
}]{fixed_2010_2.pdf}
pdflatex fails to compile wherever there is undercore in section title
e.g 200_project_title:
It would be great if someone help me fine out a better way to pass section title without escaping those underscore and possibility handling other special characters which might mess up with compilation
thanks
EDIT: using
\begingroup \catcode'\_=12 \tableofcontents \endgroup
EDIT: using
in preamble : \usepackage[T1]{fontenc}
and for table of contents
\begingroup \catcode'\_=12 \tableofcontents \endgroup

Working one after you kind suggestions and answers: This working now for me (do not know any hazards yet) thank you for all your suggestions:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{pdfpages}
\usepackage[
pdfpagelabels=true,
pdftitle={Report Title},
pdfauthor={sakhunzai},
]{hyperref}
\usepackage[T1]{fontenc}
\hypersetup{
colorlinks=true,
linkcolor=blue
}
\begin{document}
\catcode`\_=12
\cleardoublepage
\pdfbookmark{\contentsname}{toc}
\pagenumbering{roman}
\tableofcontents
\cleardoublepage
\phantomsection
\includepdf[pages=-,addtotoc={ 1,section,1, 200_project_title: , p1,
1,subsection,1,Section A - Project Identification, p2,
1,subsection,1,Section C - Basic or Applied Research,p3,
3,subsection,1,Section D - Additional project information,p4
}]{fixed_2010_2.pdf}
\end{document}

\begingroup \catcode'\_=12 \tableofcontents \endgroupso_is a normal character while the toc file is being processed. (with a backtick not ' but I can't remember how to get that in this chat) – David Carlisle Nov 15 '12 at 11:30\begingroup\catcode`\_=12 \tableofcontents\endgroup. Another way would be to write200\_project\_title:(which would work also with OT1 encoded fonts). – egreg Nov 15 '12 at 11:50\begin{document}\catcode_=12` and rest of script , its working bookmarks look great but the Content area showing a dot , please check the attachedscreen shot , thanks for your direction – sakhunzai Nov 15 '12 at 11:58\usepackage[T1]{fontenc}– David Carlisle Nov 15 '12 at 11:58