• INDY ONE
  • NEWBIE
  • 0 Points
  • Member since 2021

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 1
    Replies
i wrote the following codes and had the above error message but has not been able to sort it out any help will be great:
<apex:page standardController="Meeting__c" extensions="TheMeetingController" tabStyle="Meeting__c" >
   <head>
       <meta charset="utf-8"/>
       <meta name="viewport" content="with=device-with, initial-scale=1"/>
       <apex:slds />
    </head>
   <body>
       <apex:form id="fm">
       <apex:pageBlock id="pb1">
           <apex:pageBlockSection title="Meeting" columns="4">
               <apex:outputtext value="Subject"/>
               <apex:outputText value="Time"/>
               <apex:outputText value="Document Link"/>
           <apex:outputText value="Other"/>
              <apex:pageBlockSectionItem >
               <apex:panelGroup styleClass="col02 requiredInput" layout="block">
                   <apex:panelGroup styleClass="col02 requiredBlock" layout="block"/>
                   <apex:inputText value="{!meeting.Subject__c}" required="true"/>
                   </apex:panelGroup>
               </apex:pageBlockSectionItem>
               <apex:pageBlockSectionItem >
                   <apex:inputfield value="{!meeting.Time__c}" html-placeholder="HH:MM"/> 
               </apex:pageBlockSectionItem>
               <apex:pageBlockSectionItem >
                    <apex:inputText value="{!meeting.Document_Link__c}"/>
               </apex:pageBlockSectionItem>
                <apex:pageBlockSectionItem >
                    <apex:inputTextarea value="{!meeting.Other__c}"/>
               </apex:pageBlockSectionItem>
           </apex:pageBlockSection>
           </apex:pageBlock>
           <apex:pageBlock id="pb2">
               <apex:pageBlockSection title="Member" columns="1">
               <apex:outputpanel >
                   <apex:pageBlockSectionItem>
                   <apex:commandButton action="{!memberAdd}" value="Add A Member"/>
                   </apex:pageBlockSectionItem>
                   <apex:variable  var="rowNumber" value="{!0}"/>
     <apex:pageBlockTable value="{!listMember}" var="lm" width="100%" columns="5" columnsWidth="10%,20%,30%,100%">
                   <apex:column headervalue="Available">
                       <apex:inputfield value="{!lm.Available__c"/>
                   </apex:column>
                   <apex:column headervalue="Member Name">
                       <apex:inputField value="{!lm.Name}" style="width: 90% !important;" required="true"/>
                   </apex:column>
                   <apex:column headervalue="Agree or Not">
                       <apex:inputField value="{!lm.Agree__c}" style="width: 90% !important;"/>
                   </apex:column>
                   <apex:column headervalue="Comment">
                       <apex:inputField value="{!lm.Comment__c}" style="width: 90% !important;"/>
                   </apex:column>
                    <apex:column headervalue=" ">
                       <apex:commandButton value="Remove" action="{!memberMinus}" reRender="pd2">
                           <apex:param name="rowIndex" value="{!rowNumber}"/>
                       </apex:commandButton>
                       <apex:variable var="rowNumber" value="{!rowNumber}"/>
                   </apex:column>
                   </apex:pageBlockTable>
               </apex:outputpanel>
                   </apex:pageBlockSection>
           <apex:pageBlockButtons location="bottom">
           <apex:commandButton action="{!SaveAll}" value="Save"  immediate="true" html-formnovalidate="formnovalidate"/>
        <apex:commandButton action="{!cancel}" value="Cancel" immediate="true" html-formnovalidate="formnovalidate"/>
           </apex:pageBlockButtons>
           </apex:pageBlock>
       </apex:form>
    </body>
</apex:page>
Using batch Create a scheduler which will run midnight daily. The scheduler will  check for duplicate Accounts and if find any then it will merge the accounts and relate its child records(Contacts,Opportunity and Cases) to the one which is existing.
Please need help with code on  creating a lightning component and putting it on the Home Screen to show all cases owned by the logged in user with a record type critical?
Please need help with code on  creating a lightning component and putting it on the Home Screen to show all cases owned by the logged in user with a record type critical?