I want to change the order of elements from: Code, Procedure Name, Date, Entry Date
to: Procedure Name, Code, Date, Entry Date
Starting with:
<ClinicalDocument>
   ...
   <component>
      <structuredBody>
         <component>
            <section>
               <code code="47519-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Procedures"/>
               ...
               <text>
                  <table border="1" width="100%">
                     <thead>
                        <tr>
                           <th>Code</th>
                           <th>Procedure Name</th>
                           <th>Date</th>
                           <th>Entry Date</th>
                        </tr>
                     </thead>
                     <tbody>
                        <tr>
                           <td ID="Procedure1">CPT-93000</td>
                           <td>EKG w/ Interpretation</td>
                           <td>2009/08/28</td>
                           <td>2008/07/29</td>
                        </tr>
                        <tr>
                           <td ID="Procedure2">CPT-80061</td>
                           <td>Lipid Profile</td>
                           <td>2009/08/28</td>
                           <td>2008/07/29</td>
                        </tr>
                        ...
                     </tbody>
                  </table>
               </text>
               ...
            </section>
         </component>
      </structuredBody>
   </component>
</ClinicalDocument>