• NinetaM
  • NEWBIE
  • 5 Points
  • Member since 2013
  • Principal
  • Daizy Logik

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 8
    Questions
  • 6
    Replies
I have defined a couple of Stages (Stage 1 and Stage 2) for my flow and embedded a component to show the stages in my 2 flow screens. When I start out on the first screen Stage 1 is correctly highlighted. However when I click Next to move to screen 2 I get this error that I cannot make sense of:

The delimiter of Stage 1 stage is missing.

I have not been able find any information about this cryptic error so I am hoping others have encountered it and know what it means or that SF can shed some light on what this means. 


 
I have a VF page that I have applied lightningStylesheets="true" to. In Lightning, all the outputFields on the page get the help text bubble but when I hover over the bubbles, the text I see is the help text for the last outpuField that I am displaying in the page. Every single field on the VF page is showing the same exact help text (from the last field on the page).
This sounds to me like a bug. I know that lightningStylesheets is a beta feature in Winter'18, but where and how would I report this bug to SF?
I have a custom Exception with a custom Message defined. I would like to send in an HTML string to MyDateRangeException (code below) for some special formatting and so that it might contain some links. Is that possible?

(I am using this exception from a trigger, so I don't have the option of doing anything in the page. Also, cannot use addError because this message will not necessarely refer to the current record being inserted or updated).

public with sharing class MyDateRangeException extends Exception {
    public MyDateRangeException(String badRangeDates, String moreInfo) {        
        this.setMessage((moreInfo == null?'':moreInfo)+' A date range was not met: '+ badRangeDates);
    }
}
I have been working on a managed package and have been building Beta versions that I then installed on a developer box for testing. This has been working fine until this week. Suddenly I am unable to install the Beta build in the developer instance, and I get this error:
Aura Integration Service Error[{"message":"An internal server error has occurred Error ID: 430054948-5901 (1722994013)"}]

Why is this happening all of a sudden and how do I work around it?

I have found the following resources but these have not helped at all:
https://help.salesforce.com/apex/HTViewSolution?id=000206360&language=en_US
https://help.salesforce.com/HTViewSolution?id=000206373&language=en_US

Why has this stopped working and what can be done?
Thank you.
Hi All,

I created a simple custom button which executes javascript onclick of it. How to add this button to Visualforce page to execute this button?

Thanks in advance!