How to filter required data from file using bash script?

Hi All ,

I have one file like below ,

Owner name = abu2-kxy-m29.hegen.app
Item_id = AX1981, special_id = *NULL*, version = 1
Created = 09/01/2010 12:56:56 (1283389016)
Enddate = 03/31/2011 00:00:00 (1301554800)

From the above file I need to get the output in the below format ,i need onlu owner_name , Itel_id , Created and Enddate with Time using awk ,sed,cut ,etc.

abu2-kxy-m29.hegen.app  AX1981 09/01/2010 17:56:56  03/31/2011 00:00:00

I tried a lot but not able to achieve the output ,Can anyone help me on this ?

awk -F'[(=)]' '{split($2,a,",");printf ((a[2])?a[1]:$2)}' file
bash-2.05$ cat file|  awk -F'[(=)]' '{split($2,a,",");printf ((a[2])?a[1]:$2)}'
awk: syntax error near line 1
awk: illegal statement near line 1

Use gawk, nawk or /usr/xpg4/bin/awk on Solaris.