I am relatively new to biblatex but have some experience with latex. I want to print only the initial page instead of page range in bibliography and suppress the printing of prefix pp. as well. I know similar questions have been asked but couldn't find a solution to the effect. Here is my MWE:
\documentclass[12pt]{report}
\usepackage[
backend=biber,
style=numeric-comp,
url=false,
eprint=false,
date=year,
doi=false,
sorting=none
]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@ARTICLE{Born_1926,
author = {Born, M.},
title = "{Zur Quantenmechanik der Sto{\ss}vorg{\"a}nge}",
journal = {Zeitschrift fur Physik},
year = 1926,
month = dec,
volume = 37,
pages = {863-867},
doi = {10.1007/BF01397477}
}
\end{filecontents}
\addbibresource{\jobname.bib}
\nocite{*}
\begin{document}
\printbibliography
\end{document}

