Hi,
Is it possible to create a 'custom' odata web service based on a sql query, i.e. is it possible for a 'normal user' without having to pay a developer ?
Sample query
SELECT Item_No
,MIN(Posting_Date) as NewOnStock_Date_UK
FROM < the Dynamics table called [item ledger entries export] >
WHERE Location_Code = 'GIN'
AND Document_Type = 'Purchase Receipt'
GROUP BY Item_No
ORDER BY Item_No ASC