The following awk
may help you with this.
awk '!/S\/N:244/' Input_file
EDIT: . The full line will be displayed above the code in the form of output, if you need to start from the serial number to the end on the output, and then it can help you.
awk -F':' '!/S\/N:244/{print $2}' Input_file
EDIT2: Adding a solution is sed
also here for this.
sed -n '/:244/d;s/.*://;p' Input_file