When we upgraded from 8.82 to 9.1 some of the drill-down (golden) arrows disappeared from the query results. Why are they still present in some columns but disappeared from others? The query below worked perfectly before the upgrade...
SELECT
a.[U_ses_EmpAsgn] 'Assigned'
, a.[DocDueDate] 'B/L Date'
, T0.[DocNum] 'PO#'
, T1.[DocNum] 'Return'
, T2.[DocNum] 'SO#'
, T3.[DocNum] 'Partial'
, a.[NumAtCard] 'Ref#'
, a.[CardName] 'Company'
, a.[U_TRC_BOL] 'B/L#'
, a.[Comments] 'Note'
FROM
(
SELECT
T0.[DocNum], T0.[JrnlMemo], T0.[CardName], T0.[NumAtCard], T0.[DocDueDate], T0.[U_TRC_BOL], T0.[U_ses_EmpAsgn], T0.[Comments], T0.[ObjType], T0.[DocEntry] FROM OPOR T0 WHERE T0.[DocStatus] = 'O' and ISNULL(T0.[U_TRC_BOL],'') <>''
UNION
SELECT
T1.[DocNum], T1.[JrnlMemo], T1.[CardName], T1.[NumAtCard], T1.[DocDueDate], T1.[U_TRC_BOL], T1.[U_ses_EmpAsgn], T1.[Comments], T1.[ObjType], T1.[DocEntry] FROM ORDN T1 WHERE T1.[DocStatus] = 'O' and ISNULL(T1.[U_TRC_BOL],'') <>''
UNION
SELECT
T2.[DocNum], T2.[JrnlMemo], T2.[CardName], T2.[NumAtCard], T2.[DocDueDate], T2.[U_TRC_BOL], T2.[U_ses_EmpAsgn], T2.[Comments], T2.[ObjType], T2.[DocEntry] FROM ORDR T2 WHERE T2.[DocStatus] = 'O' and ISNULL(T2.[U_TRC_BOL],'') <>''
UNION
SELECT
T3.[DocNum], T3.[JrnlMemo], T3.[CardName], T3.[NumAtCard], T3.[DocDueDate], T3.[U_TRC_BOL], T3.[U_ses_EmpAsgn], T3.[Comments], T3.[ObjType], T3.[DocEntry] FROM ODLN T3 WHERE T3.[DocStatus] = 'O' and ISNULL(T3.[U_TRC_BOL],'') <>''
)
a
LEFT JOIN OPOR T0 on a.[DocEntry] = T0.[DocEntry] and a.[ObjType] = T0.[ObjType]
LEFT JOIN ORDN T1 on a.[DocEntry] = T1.[DocEntry] and a.[ObjType] = T1.[ObjType]
LEFT JOIN ORDR T2 on a.[DocEntry] = T2.[DocEntry] and a.[ObjType] = T2.[ObjType]
LEFT JOIN ODLN T3 on a.[DocEntry] = T3.[DocEntry] and a.[ObjType] = T3.[ObjType]
FOR BROWSE