• Peter Yao 9
  • NEWBIE
  • 0 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 1
    Likes Given
  • 1
    Questions
  • 3
    Replies
We have deleted email templates and a SOQL query that includes HtmlValue or Body works differently in Summer 18 than Spring 18.

Specifically, doing this in an Anonymous Apex window in Summer 18:
List<EmailTemplate> templates = [SELECT Id, HtmlValue FROM EmailTemplate];
Results in an "Internal Salesforce.com Error".

Running that SOQL in the Query Editor raises a dialog "entity is deleted".

Apex tests that have that SOQL fail with an Internal Salesforce.com Error.

It works fine if I omit HtmlValue, include a where clause that excludes deleted templates, or if I run it in a Spring 18 org.

I don't see a known issue about it - is it an issue for others? Is there a way to exclude all deleted templates in SOQL?

Thanks,
Peter
 
I am trying to deploy the metadata from a Non Winter 19 sandbox to a Winter 19 preview version sandbox, but I am getting following internal server errors on test classes
  • Internal Salesforce Error: 398686825-35477 (-1379387317) (-1379387317) 
    Stack Trace: null
  • Internal Salesforce Error: 398686825-35476 (-41106703) (-41106703) 
    Stack Trace: null
  • Also when I try to access the test failure page later it it says 
    • User-added image
Other Notes: When I execute the same test class manually , it passes in a few seconds , but during deployment it says the same test class has long execution time more than 5 min

Does anybody has faced the same issue and know about the workaround?
We have deleted email templates and a SOQL query that includes HtmlValue or Body works differently in Summer 18 than Spring 18.

Specifically, doing this in an Anonymous Apex window in Summer 18:
List<EmailTemplate> templates = [SELECT Id, HtmlValue FROM EmailTemplate];
Results in an "Internal Salesforce.com Error".

Running that SOQL in the Query Editor raises a dialog "entity is deleted".

Apex tests that have that SOQL fail with an Internal Salesforce.com Error.

It works fine if I omit HtmlValue, include a where clause that excludes deleted templates, or if I run it in a Spring 18 org.

I don't see a known issue about it - is it an issue for others? Is there a way to exclude all deleted templates in SOQL?

Thanks,
Peter
 
Lightning Design System is not rendering the ordered-list of html. Is it a bug?

=================================================================================
​WITH CSS
<aura:component >
    <ltng:require styles="/resource/SLDS090/assets/styles/salesforce-lightning-design-system.css" />  
<ol >
    <li>red</li>
    <li>green</li>
    <li>blue</li>
</ol>
</aura:component>
User-added image
============================================================================
WITHOUT CSS
<aura:component >
<ol >
    <li>red</li>
    <li>green</li>
    <li>blue</li>
</ol>
</aura:component>
User-added image
  • January 11, 2016
  • Like
  • 1
I am trying to deploy the metadata from a Non Winter 19 sandbox to a Winter 19 preview version sandbox, but I am getting following internal server errors on test classes
  • Internal Salesforce Error: 398686825-35477 (-1379387317) (-1379387317) 
    Stack Trace: null
  • Internal Salesforce Error: 398686825-35476 (-41106703) (-41106703) 
    Stack Trace: null
  • Also when I try to access the test failure page later it it says 
    • User-added image
Other Notes: When I execute the same test class manually , it passes in a few seconds , but during deployment it says the same test class has long execution time more than 5 min

Does anybody has faced the same issue and know about the workaround?