Study the following page in a process:
Calculation stages will write A, B or C to the Output value data item.
What will be the outcome after the page has run?
Study the following page in a process:
Calculation stages will write A, B or C to the Output value data item.
What will be the outcome after the page has run?
In the decision properties, the expression EndsWith([Input], ?) lacks quotation marks around the question mark, which represents a syntax error. Therefore, the process will throw an internal exception due to the incorrect expression format.
An internal exception will be thrown, as ? sign is not in the quotation marks.
If the question mark is not quoted, it simply fails the condition. Why internal exception?
Internal Exceptions come based on our missing mandatory data in stages. Suppose, we want to save the data for newly created excel. However, we missed to provide path, then we get the internal exceptions. Another example is when we give invalid expression in calculation stage
Internal exceptions happens when you the flow have a wrong design, wrong code, mismatch formula.. etc. And here it wont let the flow continue because of the wrong expression.
The correct answer is D - Syntax Error. [?] must be within '' ''.
D - is correct i executed the code and the exception is thrown
D - Syntax Error
D is correct - Syntax mistake: the ? must be in "?"
the question marque should be like this "?", that's why an internal exception
D is correct
Why D is the correct option? What we know from the question is that the first condition is failing. What about 2nd and 3rd condition?
It is not failure of condition. It is invalid expression in 1st decision. It will not proceed beyond condition check so will not reach at 2nd and 3rd condition.
Option D.
1. In the input data item there is no Question mark that ends with (it ends with !) 2. while verifying the same it should be quoted in ""
Answer is D
Symbols needs to be in double quotes as well as it is for String
D is the Answer, tested it: Actual Error Internal Data Item must be between [ and ] test must be between " and "
The Answer must be D because putting this in BP causes a Validation Error because there MUST be double quotes around the question mark.