• hbrose@egencia.com
  • NEWBIE
  • 0 Points
  • Member since 2012

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

Hi,

 

I have two pages in which the code is nearly idental, but one page isn't rendering the input boxes. 

 

Rendering:

<tr> 
                            <td style="width:130px"><apex:outputlabel value="Your Full Name"/><apex:outputtext value=" *" style="color:red;"/></td>
                            <td>
                                <apex:inputfield style="width:40%;" value="{!cas.SuppliedName}" rendered="{!errors==false || suppliednameerror==''}"/>
                                <apex:inputfield style="width:40%; background-color:#FFD5D5;" value="{!cas.SuppliedName}" rendered="{!errors==true && suppliednameerror !=''}"/>
                                &nbsp;
                                <apex:outputtext style="color:red; font-weight:bold;" value="Your Full Name " rendered="{!errors==true && suppliednameerror != ''}"/>
                                <apex:outputtext style="color:red;" value="{!suppliednameerror}" rendered="{!errors==true}"/>
                            </td>
                        </tr>

 

 

Not Rendering:

<tr> 
                            <td style="width:130px"><apex:outputlabel value="Your Full Name"/><apex:outputtext value=" *" style="color:red;"/></td>
                            <td>
                                <apex:inputfield style="width:40%;" value="{!cas.SuppliedName}" rendered="{!errors==false || suppliednameerror==''}"/>
                                <apex:inputfield style="width:40%; background-color:#FFD5D5;" value="{!cas.SuppliedName}" rendered="{!errors==true && suppliednameerror !=''}"/>
                                &nbsp;
                                <apex:outputtext style="color:red; font-weight:bold;" value="Your Full Name " rendered="{!errors==true && suppliednameerror != ''}"/>
                                <apex:outputtext style="color:red;" value="{!suppliednameerror}" rendered="{!errors==true}"/>
                            </td>
                        </tr>

We have ímplemented On-Demand Email-To-Case for a customer.

The customer recently got 6 emails that had this error message in the body.

 

"The following error occurred at the request of the incoming e-mail:

LIMIT_EXCEEDED : A loop was detected in Email-to-Case processing".

 

It was sent from support@emea.salesforce.com to a system admin with the subject 'Email-to-Case: Failures occurred during processing'

 

However reading about Email Loops, we don't seem to have encountered the same problem with thousands of cases being created due to autoresponse rules at both sender and receiver.

 

I don't think that the example in the e-mail has been registered as a case and email message either since the timestamps don't match exactly. However this is confusing. The email messages that I look at have a message date different from created date altough it says in the object reference documentation that the message date is the date the email was created. How does this work? (sub question)

 

Due to the lack of newly created cases that usually is a symptom on email loops I don't understand the error message and what has really happened. Anyone got a clue here?

 

Thanks / Niklas