Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi,
i have loaded below table with inline load got the table view, but i want to display the manager name for each employee instead of manager id, please suggest how can i do that
ID NAME DESIGN MANAGER
1 MAHESH CEO
2 CHAITANYA MANAGER 1
3 NARENDRA GM 2
4 ESWAR TECHL 3
5 ASHOK DEVLOPER 4
Add this after your INLINE LOAD
LEFT JOIN (AlreadyLoadedInlineTable)
ID AS MANAGER,
NAME AS MANAGERNAME
RESIDENT AlreadyLoadedInlineTable;
Add this after your INLINE LOAD
LEFT JOIN (AlreadyLoadedInlineTable)
ID AS MANAGER,
NAME AS MANAGERNAME
RESIDENT AlreadyLoadedInlineTable;
Hi,
Can you please share your qvw file ?
HTH-KC
hi,
Thanks its working fine.
Can you please close the discussion by marking an answer as "Correct"? That makes it easier for other community memebers to find solutions to similar problems. Thanks.