• Chandu017
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 2
    Replies
Hi Team,

Does anybody has Communication Template/Email or any other document for Salesforce Maintainance Releases(Spring/Winter/Summer).

Regards,
Ram
Hi,
I have created the record in custom object in the related list nots and attachments i need to attach only one attachment not more than one.Can anybody Suggest how to achieve this either validation rule or trigger.
Hi Team,

Does anybody has Communication Template/Email or any other document for Salesforce Maintainance Releases(Spring/Winter/Summer).

Regards,
Ram
I created a visualforce page with a simple save action and it just works fine.
However when I added recordSetVar, the save/quicksave actions don't seems to work anymore.
<apex:page standardController="Account" recordSetVar="accounts">
    <apex:form >
        <apex:pageBlock >
        <apex:pageMessages />
        <apex:pageBlockSection >
            <apex:inputField value="{!account.name}"/>
            <apex:commandButton action="{!QUICKSAVE}" value="SAVE!"/>
        </apex:pageBlockSection>
        </apex:pageBlock>
    </apex:form>
</apex:page>

can you please point out what did I miss?