Hi Experts,
Hope you can help.
In below picture, I'm trying to filter the field DXFVDT directly in the source, to only return the maximum value.
When I try with below code, only the headlines is returned, no values.
Can anybody help with this?
/Skovgaard
Hope you can help.
In below picture, I'm trying to filter the field DXFVDT directly in the source, to only return the maximum value.
When I try with below code, only the headlines is returned, no values.
Can anybody help with this?
SQL:
SELECT OGDMTX.DXFVDT, OGDMTX.DXOBV1
FROM M3.M3FDBPRD.OGDMTX OGDMTX
WHERE (OGDMTX.DXDISY='DA') AND (OGDMTX.DXOBV1='42850050') AND (OGDMTX.DXFVDT = (SELECT MAX(OGDMTX.DXFVDT) FROM M3.M3FDBPRD.OGDMTX OGDMTX))
/Skovgaard