Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
May 14, 2025 4:50:43 AM
Sonja_Bauernfeind
An outer set expression returns an empty selection.
Examples:
Table 1 has source data that contains a row for Beta. The inner set and outer set behave identically.
Table 2 has source data that does not include a row for Beta. The inner set and outer set behave differently.
To make this work as expected, add “&” to the beginning of the set expression.
Example:
{&<group1={'Beta'}>} sum( {&<Company1={'A'}>} salary1)
This behavior is caused by how sets are combined when using multiple set expressions.
If the outer set expression produces an empty set, it is ignored when the inner set expression is evaluated.
The result is that only the inner set expression is used.
SUPPORT-3523