I have created a rectangle and just can't find the solution how to draw a bent arrow from the south side (close to the south east corner) to the east side (also close to the south east corner).
\documentclass[12pt,twoside,a4paper]{report}
\usepackage{a4}
\usepackage{tikz}
\usetikzlibrary{calc,decorations.markings,arrows,backgrounds,calendar,matrix,mindmap,patterns,shadows,trees,positioning}
\begin{document}
\begin{tikzpicture}[auto, node distance=1cm,
block_small/.style ={rectangle, draw=black, thick, fill=white, text centered, text width=4em, minimum height=4em}]
\node [block_small, xshift=-3.3cm] (A) {A} ;
\node [block_small,right of=A, xshift=3.3cm] (B) {B} ;
\begin{pgfonlayer}{background}
% Rectangle
\path (A.west |- A.north)+(-0.45,0.45) node (a) {};
\path (B.south -| B.east)+(0.45,-0.45) node (b) {};
\path[draw=black!50, dashed] (a) rectangle (b);
\end{pgfonlayer}
\end{tikzpicture}
\end{document}
I have spent already too much time on this and hope someone may help!

paths.ortholibrary. – Jake Nov 07 '13 at 10:00(start angle:end angle:radius), so for the other corner it would bearc (-180:90:0.5). If you would doarc (180:90:0.5)it would just draw a qurter circle clockwise. If you don't like negative angles, you can also specify angles larger than 360 degree, soarc (180:450:0.5)would also work. – Tom Bombadil Nov 07 '13 at 12:47