Hi All!
Could You please advice me with a solution of how to get BDM data for using on app page that will be similar as H2 respond on such code:
SELECT E.TYPE, E.MODEL, E.SERIALNUMBER, E.MANUFACTURER, A.ASSIGNDATE, A.ASSIGNCONDITION FROM ASSIGNEE A
JOIN EQUIPMENT E
ON A.GUID= E.GUID
WHERE A.ID = ‘hber@iug.uf’ AND A.ISASSIGNEDNOW = TRUE
I have two tables - equipment and assignee and need to get equipment table records that have the same guid’s wth assignee table by providing assignee id field
Probably requesting a whole equipment table and updating ‘assigned’ variable with JS would be my only option?