-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Low
-
Affects Version/s: 10.107.0
-
Component/s: Enterprise Insights - Product
-
Severity 3 - Minor
-
No
Issue Summary
GET_Idea.sql incorrectly checks the ExternalUser field to determine if the Owner is external.
This is wrong because:
- ExternalUser = Was created from an external user?
- OwnerExternalUser = is the current owner an external user?
- This is reproducible on Data Center:

Steps to Reproduce
- Run a SQL SELECT query against any given idea
Expected Results
, CASE E.OwnerExternalUser
WHEN 1 THEN 'Yes'
ELSE 'No'
END AS [External Owner Flag]
Actual Results
, CASE E.ExternalUser
WHEN 1 THEN 'Yes'
ELSE 'No'
END AS [External Owner Flag]
Workaround
Currently, there is no known workaround for this behavior. A workaround will be added here when available.
- is connected to
-
JALPM-2193 Loading...
-
JARDA-2238 Loading...
- mentioned in
-
Page Loading...
- resolves
-
ALIGNSP-14953 Loading...