Index: branches/features/taskProcedureRework/grails-app/domain/MaintenanceAction.groovy
===================================================================
--- branches/features/taskProcedureRework/grails-app/domain/MaintenanceAction.groovy	(revision 787)
+++ branches/features/taskProcedureRework/grails-app/domain/MaintenanceAction.groovy	(revision 788)
@@ -8,5 +8,5 @@
 
     String description
-    String reasoning = ""
+    String pageRef = ""
     Integer procedureStepNumber
 
@@ -26,5 +26,5 @@
         procedureStepNumber(nullable:true)
         description(blank:false,maxSize:100)
-        reasoning(maxSize:100)
+        pageRef(maxSize:100)
     }
 
Index: branches/features/taskProcedureRework/grails-app/views/taskDetailed/show.gsp
===================================================================
--- branches/features/taskProcedureRework/grails-app/views/taskDetailed/show.gsp	(revision 787)
+++ branches/features/taskProcedureRework/grails-app/views/taskDetailed/show.gsp	(revision 788)
@@ -568,5 +568,5 @@
                                             <th>Assembly</th>
                                             <th>Description</th>
-                                            <th>Reference</th>
+                                            <th>Page Ref</th>
                                         </tr>
                                     </thead>
@@ -592,5 +592,5 @@
 
                                                 <td  valign="top" style="text-align:left;" class="value">
-                                                    ${fieldValue(bean:maintenanceAction, field:'reasoning')}
+                                                    ${fieldValue(bean:maintenanceAction, field:'pageRef')}
                                                 </td>
 
Index: branches/features/taskProcedureRework/grails-app/views/taskProcedureDetailed/_maintenanceAction.gsp
===================================================================
--- branches/features/taskProcedureRework/grails-app/views/taskProcedureDetailed/_maintenanceAction.gsp	(revision 787)
+++ branches/features/taskProcedureRework/grails-app/views/taskProcedureDetailed/_maintenanceAction.gsp	(revision 788)
@@ -27,7 +27,7 @@
         </td>
 
-        <td valign="top" class="value ${hasErrors(bean:ma,field:'reasoning','errors')}">
-            <g:textArea name="maintenanceActionLazyList[${i}].reasoning"
-                                    value="${ma?.reasoning}"
+        <td valign="top" class="value ${hasErrors(bean:ma,field:'pageRef','errors')}">
+            <g:textArea name="maintenanceActionLazyList[${i}].pageRef"
+                                    value="${ma?.pageRef}"
                                     style="width:100%;height:auto;"
                                     rows="2"
Index: branches/features/taskProcedureRework/grails-app/views/taskProcedureDetailed/_maintenanceActions.gsp
===================================================================
--- branches/features/taskProcedureRework/grails-app/views/taskProcedureDetailed/_maintenanceActions.gsp	(revision 787)
+++ branches/features/taskProcedureRework/grails-app/views/taskProcedureDetailed/_maintenanceActions.gsp	(revision 788)
@@ -4,5 +4,5 @@
     var ma_cloneId = "maintenanceActionLazyList_clone";
     var ma_lazyList = "maintenanceActionLazyList";
-    var ma_fields = ["toBeDeleted", "isNew", "description", "reasoning", "assetSubItem.id", "procedureStepNumber"];
+    var ma_fields = ["toBeDeleted", "isNew", "description", "pageRef", "assetSubItem.id", "procedureStepNumber"];
     var ma_focusField = "procedureStepNumber";
 
@@ -51,5 +51,5 @@
                     <th>Assembly</th>
                     <th>Description</th>
-                    <th>Reasoning</th>
+                    <th>Page Ref</th>
                     <th></th>
 
