Reading a file into an array

Hi I have a file with contents as below :

server | ABC Issue : File System Missing XYZ Issue : Wrong Syntax PQR Issue : Old File to be removed

Now I am looking for an o/p similar to

server <tab> ABC Issue : File System Missing 
         <tab> XYZ Issue : Wrong Syntax 
         <tab> PQR Issue : Old File to be removed

Any help is appreciated.

What needs to be read into an array as the title suggests?

pl ignore the title

TrY:

awk '{$2=x; for(i=3; i<=NF; i++) if($i=="Issue") $(i-1)=(i>4?RS:x) "\t" $(i-1)}1'  file

If you change the contents, edit your title and your post.