function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Jeff_SFJeff_SF 

Getting an error when updating a visual force page from API version 28 to 29

The page opens fine up through API version 28.  With versin 29, this message comes up when trying to open a record:

'NotesAndAttachments' is not a valid child relationship name for entity Inspection
<apex:page standardController="Inspection__c" showHeader="true"> <style> .activeTab { background-color: white; color: #319431; background-image: none } .inactiveTab { background-color: lightgrey; color: black; background-image: none } </style> <apex:form > <apex:sectionHeader title="Inspection Form" subtitle="{!Inspection__c.name}" description="" printUrl="/apex/Inspection_Form_PDF?id={!Inspection__c.id}" /> <apex:pageMessages /> <apex:pageBlock title="" mode="detail"> <apex:pageBlockSection columns="2" id="biGrid" showHeader="false"> <apex:outputField value="{!Inspection__c.name}" id="inspection_name" /> <apex:outputField value="{!Inspection__c.Date__c}" id="inspection_date" /> <apex:outputField value="{!Inspection__c.Customer__c}" id="customer" /> <apex:outputField value="{!Inspection__c.Tenant__c}" id="tenant" /> <apex:outputField value="{!Inspection__c.Contact__c}" id="contact" /> <apex:outputField value="{!Inspection__c.Performed_By__c}" id="performedby" /> <apex:outputField value="{!Inspection__c.Cleaner__c}" id="cleaner" /> <apex:outputField value="{!Inspection__c.Case_Recommended__c}" id="recommended" /> <apex:outputField value="{!Inspection__c.Contact_Made__c}" id="contactMade" /> <apex:outputField value="{!Inspection__c.Create_Case__c}" id="Create_Case" /> <apex:outputField value="{!Inspection__c.Review__c}" id="review" /> <apex:outputPanel rendered="{!IF((Inspection__c.Date__c < DATEVALUE('2010-05-01')) && ISBLANK(Inspection__c.Contact__c),'TRUE','FALSE')}" /> <apex:outputField value="{!Inspection__c.Contact_Name__c}" id="contactName" rendered="{!IF((Inspection__c.Date__c < DATEVALUE('2010-05-01')) && ISBLANK(Inspection__c.Contact__c),'TRUE','FALSE')}" /> </apex:pageBlockSection> <apex:pageBlockSection title="{!$ObjectType.Inspection__c.fields.Inspection_Score__c.label} {!Inspection__c.Inspection_Score__c}%" columns="2" id="ScoresPageBlock" collapsible="true"> <!-- <apex:outputField value="{!Inspection__c.Inspection_Score__c}" /> --> <apex:outputField value="{!Inspection__c.CustomerSatisfactionScore__c}" /> <apex:outputField value="{!Inspection__c.ResilientFloorAreaScore__c}" /> <apex:outputField value="{!Inspection__c.EntranceAreaScore__c}" /> <apex:outputField value="{!Inspection__c.BreakroomScore__c}" /> <apex:outputField value="{!Inspection__c.DustingScore__c}" /> <apex:outputField value="{!Inspection__c.TrashScore__c}" /> <apex:outputField value="{!Inspection__c.RestroomExamScore__c}" /> <apex:outputField value="{!Inspection__c.GeneralMiscScore__c}" /> <apex:outputField value="{!Inspection__c.CarpetedAreaScore__c}" /> </apex:pageBlockSection> </apex:pageBlock> <apex:pageBlock title="Inspection Detail" mode="detail" id="inspectionDetail"> <apex:pageBlockButtons location="top"> <apex:commandButton action="{!edit}" value="Edit" /> <apex:commandButton action="{!cancel}" value="Cancel" /> <apex:commandButton action="{!delete}" value="Delete" rendered="{!OR($Profile.Name == 'System Administrator', $Profile.Name == 'General Manager')}" /> </apex:pageBlockButtons> <apex:tabPanel switchType="client" selectedTab="CSTab" id="InspectionTabPanel" tabClass="activeTab" inactiveTabClass="inactiveTab" headerSpacing="0px"> <apex:tab label="Customer Satisfation" name="CSTab" id="tabCS"> <apex:pageBlockSection columns="2" id="CSPageBlock"> <apex:pageBlockSectionItem > <apex:outputLabel value="{!$ObjectType.Inspection__c.fields.CS__c.label}" for="E01" style="font-weight:bold" /> <apex:selectRadio readonly="true" disabled="true" value="{!Inspection__c.CS__c}" id="CS"> <apex:selectOption itemValue="1.0" itemLabel="Dissatisfied" /> <apex:selectOption itemValue="2.0" itemLabel="Neutral" /> <apex:selectOption itemValue="3.0" itemLabel="Will Refer" /> <apex:selectOption itemValue="0.0" itemLabel="N/A" /> </apex:selectRadio> </apex:pageBlockSectionItem> </apex:pageBlockSection> </apex:tab> <apex:tab label="Entrance Areas" name="EATab" id="tabEA"> <apex:pageBlockSection columns="2" id="EAPageBlock"> <apex:pageBlockSectionItem > <apex:outputLabel value="{!$ObjectType.Inspection__c.fields.E01__c.label}" for="E01" style="font-weight:bold;" /> <apex:selectRadio readonly="true" disabled="true" value="{!Inspection__c.E01__c}" id="E01"> <apex:selectOption itemValue="1.0" itemLabel="Urgent" /> <apex:selectOption itemValue="2.0" itemLabel="Needs Improvement" /> <apex:selectOption itemValue="3.0" itemLabel="Meets Standards" /> <apex:selectOption itemValue="0.0" itemLabel="N/A" /> </apex:selectRadio> </apex:pageBlockSectionItem> <apex:outputField value="{!Inspection__c.E01W__c}" style="width:30px" id="E01W" /> <apex:pageBlockSectionItem > <apex:outputLabel value="{!$ObjectType.Inspection__c.fields.E02__c.label}" for="E02" style="font-weight:bold" /> <apex:selectRadio readonly="true" disabled="true" value="{!Inspection__c.E02__c}" id="E02"> <apex:selectOption itemValue="1.0" itemLabel="Urgent" /> <apex:selectOption itemValue="2.0" itemLabel="Needs Improvement" /> <apex:selectOption itemValue="3.0" itemLabel="Meets Standards" /> <apex:selectOption itemValue="0.0" itemLabel="N/A" /> </apex:selectRadio> </apex:pageBlockSectionItem> <apex:outputField value="{!Inspection__c.E02W__c}" style="width:30px" id="E02W" /> <apex:pageBlockSectionItem > <apex:outputLabel value="{!$ObjectType.Inspection__c.fields.E03__c.label}" for="E03" style="font-weight:bold" /> <apex:selectRadio readonly="true" disabled="true" value="{!Inspection__c.E03__c}" id="E03"> <apex:selectOption itemValue="1.0" itemLabel="Urgent" /> <apex:selectOption itemValue="2.0" itemLabel="Needs Improvement" /> <apex:selectOption itemValue="3.0" itemLabel="Meets Standards" /> <apex:selectOption itemValue="0.0" itemLabel="N/A" /> </apex:selectRadio> </apex:pageBlockSectionItem> <apex:outputField value="{!Inspection__c.E03W__c}" style="width:30px" id="E03W" /> <apex:pageBlockSectionItem > <apex:outputLabel value="{!$ObjectType.Inspection__c.fields.E04__c.label}" for="E04" style="font-weight:bold" /> <apex:selectRadio readonly="true" disabled="true" value="{!Inspection__c.E04__c}" id="E04"> <apex:selectOption itemValue="1.0" itemLabel="Urgent" /> <apex:selectOption itemValue="2.0" itemLabel="Needs Improvement" /> <apex:selectOption itemValue="3.0" itemLabel="Meets Standards" /> <apex:selectOption itemValue="0.0" itemLabel="N/A" /> </apex:selectRadio> </apex:pageBlockSectionItem> <apex:outputField value="{!Inspection__c.E04W__c}" style="width:30px" id="E04W" /> <apex:pageBlockSectionItem > <apex:outputLabel value="{!$ObjectType.Inspection__c.fields.E05__c.label}" for="E05" style="font-weight:bold" /> <apex:selectRadio readonly="true" disabled="true" value="{!Inspection__c.E05__c}" id="E05"> <apex:selectOption itemValue="1.0" itemLabel="Urgent" /> <apex:selectOption itemValue="2.0" itemLabel="Needs Improvement" /> <apex:selectOption itemValue="3.0" itemLabel="Meets Standards" /> <apex:selectOption itemValue="0.0" itemLabel="N/A" /> </apex:selectRadio> </apex:pageBlockSectionItem> <apex:outputField value="{!Inspection__c.E05W__c}" style="width:30px" id="E05W" /> </apex:pageBlockSection> </apex:tab> <apex:tab label="Dusting" name="DTab" id="tabD"> <apex:pageBlockSection columns="2" id="DPageBlock"> <apex:pageBlockSectionItem > <apex:outputLabel value="{!$ObjectType.Inspection__c.fields.D01__c.label}" for="D01" style="font-weight:bold;" /> <apex:selectRadio readonly="true" disabled="true" value="{!Inspection__c.D01__c}" id="D01"> <apex:selectOption itemValue="1.0" itemLabel="Urgent" /> <apex:selectOption itemValue="2.0" itemLabel="Needs Improvement" /> <apex:selectOption itemValue="3.0" itemLabel="Meets Standards" /> <apex:selectOption itemValue="0.0" itemLabel="N/A" /> </apex:selectRadio> </apex:pageBlockSectionItem> <apex:outputField value="{!Inspection__c.D01W__c}" style="width:30px" id="D01W" /> <apex:pageBlockSectionItem > <apex:outputLabel value="{!$ObjectType.Inspection__c.fields.D02__c.label}" for="D02" style="font-weight:bold" /> <apex:selectRadio readonly="true" disabled="true" value="{!Inspection__c.D02__c}" id="D02"> <apex:selectOption itemValue="1.0" itemLabel="Urgent" /> <apex:selectOption itemValue="2.0" itemLabel="Needs Improvement" /> <apex:selectOption itemValue="3.0" itemLabel="Meets Standards" /> <apex:selectOption itemValue="0.0" itemLabel="N/A" /> </apex:selectRadio> </apex:pageBlockSectionItem> <apex:outputField value="{!Inspection__c.D02W__c}" style="width:30px" id="D02W" /> <apex:pageBlockSectionItem > <apex:outputLabel value="{!$ObjectType.Inspection__c.fields.D04__c.label}" for="D04" style="font-weight:bold" /> <apex:selectRadio readonly="true" disabled="true" value="{!Inspection__c.D04__c}" id="D04"> <apex:selectOption itemValue="1.0" itemLabel="Urgent" /> <apex:selectOption itemValue="2.0" itemLabel="Needs Improvement" /> <apex:selectOption itemValue="3.0" itemLabel="Meets Standards" /> <apex:selectOption itemValue="0.0" itemLabel="N/A" /> </apex:selectRadio> </apex:pageBlockSectionItem> <apex:outputField value="{!Inspection__c.D04W__c}" style="width:30px" id="D04W" /> <apex:pageBlockSectionItem > <apex:outputLabel value="{!$ObjectType.Inspection__c.fields.D05__c.label}" for="D05" style="font-weight:bold" /> <apex:selectRadio readonly="true" disabled="true" value="{!Inspection__c.D05__c}" id="D05"> <apex:selectOption itemValue="1.0" itemLabel="Urgent" /> <apex:selectOption itemValue="2.0" itemLabel="Needs Improvement" /> <apex:selectOption itemValue="3.0" itemLabel="Meets Standards" /> <apex:selectOption itemValue="0.0" itemLabel="N/A" /> </apex:selectRadio> </apex:pageBlockSectionItem> <apex:outputField value="{!Inspection__c.D05W__c}" style="width:30px" id="D05W" /> <apex:pageBlockSectionItem > <apex:outputLabel value="{!$ObjectType.Inspection__c.fields.D12__c.label}" for="D12" style="font-weight:bold" /> <apex:selectRadio readonly="true" disabled="true" value="{!Inspection__c.D12__c}" id="D12"> <apex:selectOption itemValue="1.0" itemLabel="Urgent" /> <apex:selectOption itemValue="2.0" itemLabel="Needs Improvement" /> <apex:selectOption itemValue="3.0" itemLabel="Meets Standards" /> <apex:selectOption itemValue="0.0" itemLabel="N/A" /> </apex:selectRadio> </apex:pageBlockSectionItem> <apex:outputField value="{!Inspection__c.D12W__c}" style="width:30px" id="D12W" /> <apex:pageBlockSectionItem > <apex:outputLabel value="{!$ObjectType.Inspection__c.fields.D06__c.label}" for="D06" style="font-weight:bold" /> <apex:selectRadio readonly="true" disabled="true" value="{!Inspection__c.D06__c}" id="D06"> <apex:selectOption itemValue="1.0" itemLabel="Urgent" /> <apex:selectOption itemValue="2.0" itemLabel="Needs Improvement" /> <apex:selectOption itemValue="3.0" itemLabel="Meets Standards" /> <apex:selectOption itemValue="0.0" itemLabel="N/A" /> </apex:selectRadio> </apex:pageBlockSectionItem> <apex:outputField value="{!Inspection__c.D06W__c}" style="width:30px" id="D06W" /> <apex:pageBlockSectionItem > <apex:outputLabel value="{!$ObjectType.Inspection__c.fields.D07__c.label}" for="D07" style="font-weight:bold" /> <apex:selectRadio readonly="true" disabled="true" value="{!Inspection__c.D07__c}" id="D07"> <apex:selectOption itemValue="1.0" itemLabel="Urgent" /> <apex:selectOption itemValue="2.0" itemLabel="Needs Improvement" /> <apex:selectOption itemValue="3.0" itemLabel="Meets Standards" /> <apex:selectOption itemValue="0.0" itemLabel="N/A" /> </apex:selectRadio> </apex:pageBlockSectionItem> <apex:outputField value="{!Inspection__c.D07W__c}" style="width:30px" id="D07W" /> </apex:pageBlockSection> </apex:tab> <apex:tab label="Dusting (High & Low)" name="DHLTab" id="tabDHL"> <apex:pageBlockSection columns="2" id="DHLPageBlock"> <apex:pageBlockSectionItem > <apex:outputLabel value="{!$ObjectType.Inspection__c.fields.D08__c.label}" for="D08" style="font-weight:bold" /> <apex:selectRadio readonly="true" disabled="true" value="{!Inspection__c.D08__c}" id="D08"> <apex:selectOption itemValue="1.0" itemLabel="Urgent" /> <apex:selectOption itemValue="2.0" itemLabel="Needs Improvement" /> <apex:selectOption itemValue="3.0" itemLabel="Meets Standards" /> <apex:selectOption itemValue="0.0" itemLabel="N/A" /> </apex:selectRadio> </apex:pageBlockSectionItem> <apex:outputField value="{!Inspection__c.D08W__c}" style="width:30px" id="D08W" /> <apex:pageBlockSectionItem > <apex:outputLabel value="{!$ObjectType.Inspection__c.fields.D09__c.label}" for="D09" style="font-weight:bold" /> <apex:selectRadio readonly="true" disabled="true" value="{!Inspection__c.D09__c}" id="D09"> <apex:selectOption itemValue="1.0" itemLabel="Urgent" /> <apex:selectOption itemValue="2.0" itemLabel="Needs Improvement" /> <apex:selectOption itemValue="3.0" itemLabel="Meets Standards" /> <apex:selectOption itemValue="0.0" itemLabel="N/A" /> </apex:selectRadio> </apex:pageBlockSectionItem> <apex:outputField value="{!Inspection__c.D09W__c}" style="width:30px" id="D09W" /> <apex:pageBlockSectionItem > <apex:outputLabel value="{!$ObjectType.Inspection__c.fields.D11__c.label}" for="D11" style="font-weight:bold" /> <apex:selectRadio readonly="true" disabled="true" value="{!Inspection__c.D11__c}" id="D11"> <apex:selectOption itemValue="1.0" itemLabel="Urgent" /> <apex:selectOption itemValue="2.0" itemLabel="Needs Improvement" /> <apex:selectOption itemValue="3.0" itemLabel="Meets Standards" /> <apex:selectOption itemValue="0.0" itemLabel="N/A" /> </apex:selectRadio> </apex:pageBlockSectionItem> <apex:outputField value="{!Inspection__c.D11W__c}" style="width:30px" id="D11W" /> </apex:pageBlockSection> </apex:tab> <apex:tab label="Restrooms & Exams Rooms" name="RETab" id="tabRE"> <apex:pageBlockSection columns="2" id="REPageBlock"> <apex:pageBlockSectionItem > <apex:outputLabel value="{!$ObjectType.Inspection__c.fields.RE01__c.label}" for="RE01" style="font-weight:bold;" /> <apex:selectRadio readonly="true" disabled="true" value="{!Inspection__c.RE01__c}" id="RE01"> <apex:selectOption itemValue="1.0" itemLabel="Urgent" /> <apex:selectOption itemValue="2.0" itemLabel="Needs Improvement" /> <apex:selectOption itemValue="3.0" itemLabel="Meets Standards" /> <apex:selectOption itemValue="0.0" itemLabel="N/A" /> </apex:selectRadio> </apex:pageBlockSectionItem> <apex:outputField value="{!Inspection__c.RE01W__c}" style="width:30px" id="RE01W" /> <apex:pageBlockSectionItem > <apex:outputLabel value="{!$ObjectType.Inspection__c.fields.RE02__c.label}" for="RE02" style="font-weight:bold" /> <apex:selectRadio readonly="true" disabled="true" value="{!Inspection__c.RE02__c}" id="RE02"> <apex:selectOption itemValue="1.0" itemLabel="Urgent" /> <apex:selectOption itemValue="2.0" itemLabel="Needs Improvement" /> <apex:selectOption itemValue="3.0" itemLabel="Meets Standards" /> <apex:selectOption itemValue="0.0" itemLabel="N/A" /> </apex:selectRadio> </apex:pageBlockSectionItem> <apex:outputField value="{!Inspection__c.RE02W__c}" style="width:30px" id="RE02W" /> <apex:pageBlockSectionItem > <apex:outputLabel value="{!$ObjectType.Inspection__c.fields.RE03__c.label}" for="RE03" style="font-weight:bold" /> <apex:selectRadio readonly="true" disabled="true" value="{!Inspection__c.RE03__c}" id="RE03"> <apex:selectOption itemValue="1.0" itemLabel="Urgent" /> <apex:selectOption itemValue="2.0" itemLabel="Needs Improvement" /> <apex:selectOption itemValue="3.0" itemLabel="Meets Standards" /> <apex:selectOption itemValue="0.0" itemLabel="N/A" /> </apex:selectRadio> </apex:pageBlockSectionItem> <apex:outputField value="{!Inspection__c.RE03W__c}" style="width:30px" id="RE03W" /> <apex:pageBlockSectionItem > <apex:outputLabel value="{!$ObjectType.Inspection__c.fields.RE04__c.label}" for="RE04" style="font-weight:bold" /> <apex:selectRadio readonly="true" disabled="true" value="{!Inspection__c.RE04__c}" id="RE04"> <apex:selectOption itemValue="1.0" itemLabel="Urgent" /> <apex:selectOption itemValue="2.0" itemLabel="Needs Improvement" /> <apex:selectOption itemValue="3.0" itemLabel="Meets Standards" /> <apex:selectOption itemValue="0.0" itemLabel="N/A" /> </apex:selectRadio> </apex:pageBlockSectionItem> <apex:outputField value="{!Inspection__c.RE04W__c}" style="width:30px" id="RE04W" /> <apex:pageBlockSectionItem > <apex:outputLabel value="{!$ObjectType.Inspection__c.fields.RE05__c.label}" for="RE05" style="font-weight:bold" /> <apex:selectRadio readonly="true" disabled="true" value="{!Inspection__c.RE05__c}" id="RE05"> <apex:selectOption itemValue="1.0" itemLabel="Urgent" /> <apex:selectOption itemValue="2.0" itemLabel="Needs Improvement" /> <apex:selectOption itemValue="3.0" itemLabel="Meets Standards" /> <apex:selectOption itemValue="0.0" itemLabel="N/A" /> </apex:selectRadio> </apex:pageBlockSectionItem> <apex:outputField value="{!Inspection__c.RE05W__c}" style="width:30px" id="RE05W" /> <apex:pageBlockSectionItem > <apex:outputLabel value="{!$ObjectType.Inspection__c.fields.RE06__c.label}" for="RE06" style="font-weight:bold" /> <apex:selectRadio readonly="true" disabled="true" value="{!Inspection__c.RE06__c}" id="RE06"> <apex:selectOption itemValue="1.0" itemLabel="Urgent" /> <apex:selectOption itemValue="2.0" itemLabel="Needs Improvement" /> <apex:selectOption itemValue="3.0" itemLabel="Meets Standards" /> <apex:selectOption itemValue="0.0" itemLabel="N/A" /> </apex:selectRadio> </apex:pageBlockSectionItem> <apex:outputField value="{!Inspection__c.RE06W__c}" style="width:30px" id="RE06W" /> <apex:pageBlockSectionItem > <apex:outputLabel value="{!$ObjectType.Inspection__c.fields.RE07__c.label}" for="RE07" style="font-weight:bold" /> <apex:selectRadio readonly="true" disabled="true" value="{!Inspection__c.RE07__c}" id="RE07"> <apex:selectOption itemValue="1.0" itemLabel="Urgent" /> <apex:selectOption itemValue="2.0" itemLabel="Needs Improvement" /> <apex:selectOption itemValue="3.0" itemLabel="Meets Standards" /> <apex:selectOption itemValue="0.0" itemLabel="N/A" /> </apex:selectRadio> </apex:pageBlockSectionItem> <apex:outputField value="{!Inspection__c.RE07W__c}" style="width:30px" id="RE07W" /> <apex:pageBlockSectionItem > <apex:outputLabel value="{!$ObjectType.Inspection__c.fields.RE08__c.label}" for="RE08" style="font-weight:bold" /> <apex:selectRadio readonly="true" disabled="true" value="{!Inspection__c.RE08__c}" id="RE08"> <apex:selectOption itemValue="1.0" itemLabel="Urgent" /> <apex:selectOption itemValue="2.0" itemLabel="Needs Improvement" /> <apex:selectOption itemValue="3.0" itemLabel="Meets Standards" /> <apex:selectOption itemValue="0.0" itemLabel="N/A" /> </apex:selectRadio> </apex:pageBlockSectionItem> <apex:outputField value="{!Inspection__c.RE08W__c}" style="width:30px" id="RE08W" /> <apex:pageBlockSectionItem > <apex:outputLabel value="{!$ObjectType.Inspection__c.fields.RE09__c.label}" for="RE09" style="font-weight:bold" /> <apex:selectRadio readonly="true" disabled="true" value="{!Inspection__c.RE09__c}" id="RE09"> <apex:selectOption itemValue="1.0" itemLabel="Urgent" /> <apex:selectOption itemValue="2.0" itemLabel="Needs Improvement" /> <apex:selectOption itemValue="3.0" itemLabel="Meets Standards" /> <apex:selectOption itemValue="0.0" itemLabel="N/A" /> </apex:selectRadio> </apex:pageBlockSectionItem> <apex:outputField value="{!Inspection__c.RE09W__c}" style="width:30px" id="RE09W" /> <apex:pageBlockSectionItem > <apex:outputLabel value="{!$ObjectType.Inspection__c.fields.RE10__c.label}" for="RE10" style="font-weight:bold" /> <apex:selectRadio readonly="true" disabled="true" value="{!Inspection__c.RE10__c}" id="RE10"> <apex:selectOption itemValue="1.0" itemLabel="Urgent" /> <apex:selectOption itemValue="2.0" itemLabel="Needs Improvement" /> <apex:selectOption itemValue="3.0" itemLabel="Meets Standards" /> <apex:selectOption itemValue="0.0" itemLabel="N/A" /> </apex:selectRadio> </apex:pageBlockSectionItem> <apex:outputField value="{!Inspection__c.RE10W__c}" style="width:30px" id="RE10W" /> </apex:pageBlockSection> </apex:tab> <apex:tab label="Carpeted Areas" name="CTab" id="tabC"> <apex:pageBlockSection columns="2" id="CPageBlock"> <apex:pageBlockSectionItem > <apex:outputLabel value="{!$ObjectType.Inspection__c.fields.C01__c.label}" for="C01" style="font-weight:bold;" /> <apex:selectRadio readonly="true" disabled="true" value="{!Inspection__c.C01__c}" id="C01"> <apex:selectOption itemValue="1.0" itemLabel="Urgent" /> <apex:selectOption itemValue="2.0" itemLabel="Needs Improvement" /> <apex:selectOption itemValue="3.0" itemLabel="Meets Standards" /> <apex:selectOption itemValue="0.0" itemLabel="N/A" /> </apex:selectRadio> </apex:pageBlockSectionItem> <apex:outputField value="{!Inspection__c.C01W__c}" style="width:30px" id="C01W" /> <apex:pageBlockSectionItem > <apex:outputLabel value="{!$ObjectType.Inspection__c.fields.C02__c.label}" for="C02" style="font-weight:bold" /> <apex:selectRadio readonly="true" disabled="true" value="{!Inspection__c.C02__c}" id="C02"> <apex:selectOption itemValue="1.0" itemLabel="Urgent" /> <apex:selectOption itemValue="2.0" itemLabel="Needs Improvement" /> <apex:selectOption itemValue="3.0" itemLabel="Meets Standards" /> <apex:selectOption itemValue="0.0" itemLabel="N/A" /> </apex:selectRadio> </apex:pageBlockSectionItem> <apex:outputField value="{!Inspection__c.C02W__c}" style="width:30px" id="C02W" /> <apex:pageBlockSectionItem > <apex:outputLabel value="{!$ObjectType.Inspection__c.fields.C03__c.label}" for="C03" style="font-weight:bold" /> <apex:selectRadio readonly="true" disabled="true" 



 
AnkaiahAnkaiah (Salesforce Developers) 
Hi Jeff,

Changed Relationship Name for Notes and Attachments Related List.

The relationship name for the Notes and Attachments related list has changed. CombinedAttachments now provides data for the Notes and Attachments related list. Until now, NotesAndAttachments was the relationship name used to provide data for this related list. For example, when creating a Visualforce page,
this sample generates the Notes and Attachments related list on an account:
 
<apex:relatedList subject="{!account}"
list="CombinedAttachments" />

Can you check in your org any VF page have apex:relatedList  NotesAndAttachments and you can replace it with CombinedAttachments

Refer the below  release notes.
http://files.cluster2.hostgator.co.in/hostgator81725/file/salesforce_winter14_release_notes.pdf

If this helps, Please mark it as best answer.

Thanks!!