Script Suggestion

I am trying to get output for fcs0 fcs1 side by side with "Date" "FCAdapter_Name" "Last Reset" "DMA_Res" "Adapter_Count" "Command_Res" for all the captured output in fcstat.out

Am I missing any thing below, as its just showing same values all the coloums:
#!/usr/bin/ksh
head -30 fcstat.out |awk -F: '/2014$/ {ts=$0} /fcs/{f1=$1} /DMA Resource/{d1=$2} /Adapter Elements/{a1=$2} /Command Resource/{c1=$2} 
/fcs/{f2=$1} /DMA Resource/{d2=$2} /Adapter Elements/{a2=$2} /Command Resource/{print ts,f1,d1,a1,c1,f2,d2,a2,$2}'
File fcstat.out contains below:
Mon Mar 3 18:20:00 EST 2014
fcs0
Seconds Since Last Reset: 114730
FC SCSI Adapter Driver Information
No DMA Resource Count: 78
No Adapter Elements Count: 0
No Command Resource Count: 1309
fcs1
Seconds Since Last Reset: 114730
FC SCSI Adapter Driver Information
No DMA Resource Count: 107
No Adapter Elements Count: 0
No Command Resource Count: 1531
Mon Mar 3 18:30:00 EST 2014
fcs0
Seconds Since Last Reset: 115330
FC SCSI Adapter Driver Information
No DMA Resource Count: 98
No Adapter Elements Count: 0
No Command Resource Count: 9309
fcs1
Seconds Since Last Reset: 115330
FC SCSI Adapter Driver Information
No DMA Resource Count: 807
No Adapter Elements Count: 0
No Command Resource Count: 8531

Running your script on your data, I get this:

Mon Mar 3 18:20:00 EST 2014 fcs0  78  0  1309 fcs0  78  0  1309
Mon Mar 3 18:20:00 EST 2014 fcs1  107  0  1531 fcs1  107  0  1531
Mon Mar 3 18:30:00 EST 2014 fcs0  98  0  9309 fcs0  98  0  9309
Mon Mar 3 18:30:00 EST 2014 fcs1  807  0  8531 fcs1  807  0  8531

But I'm on Linux and I have no AIX for testing.

Try

awk -F: '/2014$/ && NR>1        {print ts,f[0],d[0],a[0],c[0],f[1],d[1],a[1],c[1]}
         /2014$/                {ts=$0}
         /fcs/                  {ix=substr($1,length($1));f[ix]=$1}
         /DMA Resource/         {d[ix]=$2}
         /Adapter Elements/     {a[ix]=$2}
         /Command Resource/     {c[ix]=$2}
         END                    {print ts,f[0],d[0],a[0],c[0],f[1],d[1],a[1],c[1]}
        ' file
Mon Mar 3 18:20:00 EST 2014 fcs0  78  0  1309 fcs1  107  0  1531
Mon Mar 3 18:30:00 EST 2014 fcs0  98  0  9309 fcs1  807  0  8531