I want to formulate a linear program but I have not been able to find exactly what I am looking for. It should look similar to this picture:

The main difference is that I want automatic numbering on right side (like an equation) and a label on the left side i.e. (LP)
I need at least 5 columns (+numbering)
With what should I start array, equation, alignat, or align?
How can achieve this?
Endresult This is the final code (a modified version of Werner's code). I wrote some new commands, now everybody can use these easy commands without caring about proper alignment. Thank you Werner.
\documentclass{article}
\usepackage[a4paper,margin=1in]{geometry}
\usepackage{mathtools,zref-savepos}
% Linear Programm Tex Example
\newcommand{\objective}[2] { & \text{#1} \quad \mathrlap{#2}}
% includes s.t. in front
\newcommand{\stconstraint}[4] { & \text{s.t.} & #1 & \quad #2 \quad #3 && \quad #4}
\newcommand{\constraint}[4] { & & #1 & \quad #2 \quad #3 && \quad #4}
\newcommand{\lpnamereset}{\noindent\zsavepos{text-left-margin}}
\newcommand{\lpnamebegin}{\zsavepos{top-lp}}
\newcommand{\lpnameend}[1]{ \zsavepos{bottom-lp}
\raisebox{0.5\dimexpr\zposy{top-lp}sp-\zposy{bottom-lp}sp}[0pt][0pt]{%
\makebox[0pt][r]{\rlap{(#1)}\hspace*{\dimexpr\zposx{bottom-lp}sp-\zposx{text-left-margin}sp}}}}
% End Linear Programm Tex Example
\begin{document}
\setlength{\jot}{10pt}
\lpnamereset
\begin{alignat}{4}
\lpnamebegin
\objective{min}{\sum_{a \in A} k_a u_a + \sum_{r \in R} \sum_{a \in A} f_a^r y_a^r} \\
\stconstraint{\smashoperator{\sum_{a \in \delta_i^+}} y_a^r - \smashoperator{\sum_{a \in \delta_i^-}} y_a^r}{=}{\left\{\begin{array}{@{}rl@{}}
1, & \text{falls $i = O^r$} \\
-1, & \text{falls $i = D^r$} \\
0, & \text{sonst} \\
\end{array}\right.}{(\forall r \in R)(\forall i \in V)} \\
\constraint{y_a^r}{\leq}{ u_a}{ (\forall r \in R)(\forall a \in A)} \\
\constraint{u_a}{\in}{\{0,1\}}{(\forall a \in A)} \\
\constraint{y_a^r}{\in}{[0,1}{(\forall r \in R)(\forall a \in A)}
\lpnameend{LP}
\end{alignat}
\end{document}


mathmodedocumentation, which should be available as part of your TeX distribution. It has lots of useful examples and discussion of best practices. – Alan Munn Jan 13 '15 at 16:57zref-saveposwill also have to be updated to use a counter, otherwise you'll obtain multiply-defined labels. – Werner Jan 13 '15 at 22:17