(Ich hätte gar nicht substantielles für ein Minimalbeispiel, daher lasse ich es weg. Bild: so ungefähr könnte es aussehen...)



\documentclass[11pt,border=2pt]{standalone}
\usepackage[T1]{fontenc}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[>=stealth]
\fill[blue!25] (-0.5,-2) rectangle (6,2);
\node (B) at (0:0) {B};
\node (A) at (15:5cm) {A};
\node (C) at (345:5cm) {C};
\node (X) at (0:5.5cm) {X.};
\draw[->] (A) -- (B);
\draw[->] (A.south east) -- +(0,-1);
\draw[->] (B) -- (C);
\draw[->] (C.north east) -- +(0,1);
\draw (B) -- (X);
\end{tikzpicture}
\end{document}