Hi
I want to find each employee and up to 3 managers up in the entire organization like below. We have position management implemented.
Employee, Manager1 -> Manager 2 -> Manager -> 3
SELECT REPORTS_TO, EMPLID
FROM PS_POS_DATA_EF_VW A, PS_POSN_INCUMENT B
WHERE EFF_STATUS='A'
CONNECT BY NOCYCLE PRIOR REPORTS_TO=A.POSITION_NBR
Thanks!