The pagenumber from "Inhaltsverzeichnis" is missing in the bookmarks.
I manually added the Inhaltsverzeichnis (TOC) with
\addcontentsline{toc}{chapter}{Inhaltsverzeichnis}
but it doesn't print the pagenumber. The LOF or LOT, which I added with the same command, appear as I wish.

When I add
\pdfbookmark{Inhaltsverzeichnis}{Inhaltsverzeichnis}
instead of \addcontentsline, I get what I want in the bookmarks but the TOC disappears from the TOC.

How to fix that?
UPDATE
Here's the MWE
\documentclass[12pt,a4paper,oneside]{scrbook}
\usepackage[ngerman]{babel} % deutsche Worttrennung
\usepackage[T1]{fontenc} % Ausgabe von Sonderzeichen und Akzenten in PDF verbessert
\usepackage[utf8]{inputenc} % Eingabe von Sonderzeichen möglich
\usepackage{lipsum}
\setcounter{secnumdepth}{3} % subsubsections nummerieren
\setcounter{tocdepth}{3} % subsubsections in TOC
\usepackage[ %
pdfproducer={Texmaker}, %
pdfcreator={pdfLaTeX}, %
hidelinks, % versteckt die Boxen um die Links in der PDF
bookmarksnumbered, % nummereiert Lesezeichen
]{hyperref} % PDF Metainformationen hinzufügen
\begin{document}
\pagenumbering{gobble}
\chapter*{Sperrvermerk}
\addcontentsline{toc}{chapter}{Sperrvermerk}
\lipsum[1]
\clearpage
\chapter*{Vorwort}
\addcontentsline{toc}{chapter}{Vorwort}
\lipsum[2]
\clearpage
\pagenumbering{Roman}
\pagestyle{headings}
\addcontentsline{toc}{chapter}{Inhaltsverzeichnis}
\tableofcontents
\chapter{One}
\lipsum[3]
\section{One.1}
\lipsum[4]
\section{One.2}
\lipsum[5]
\end{document}


\addcontentslineadds the bookmark automatically.\pdfbookmarkwill not add an entry to the Toc however. Please provide a minimal working example (MWE) – Sep 04 '14 at 12:25\setuptoc{toc}{totoc}But ask yourself, why it is not put there by default. – Johannes_B Sep 04 '14 at 12:43