• scamero2
  • NEWBIE
  • 0 Points
  • Member since 2008

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

We have created a custom object called Case_Items__c that has a lookup relationship to the Case object. I would like to create a workflow that sends an email to the Case Owner when a field on the Case Item object is updated. I cannot do this directly within the workflow editor but have been told that I may be able to use a formula to accomplish this. Does anyone know how to accomplish this?

 

Scott

I am trying to create a data entry page and I am having trouble with the save command button.  When I enter values I am getting the following error
 
Illegal view ID save. The ID must begin with /
  1. I have the following VF code
 
<apex:page standardController="Plan_Holding__c">
    <apex:Form >
        <apex:pageBlock title="Plan Holding Information">
            <apex:pageBlockButtons >
                <apex:commandButton action="save" value="Save"/>
            </apex:pageBlockButtons>
            <apex:pageBlockSection >
                <apex:inputField value="{!Plan_Holding__c.Plan__c}" >
                </apex:inputField>
                <apex:inputField value="{!Plan_Holding__c.As_of_Date__c}">
                </apex:inputField>
            </apex:pageBlockSection>
        </apex:pageBlock>
    </apex:Form>
</apex:page>