Hello,
I want to retrieve only the records greater than today using SDK REST.
Any help is appreciated.Below is the code :
// JavaScript source code :
var datedujour = new Date();
var options = "$filter=abo_produit/Id eq guid'" + productID+ "' and abo_date_expedition gt " + datedujour;
SDK.REST.retrieveMultipleRecords(
"abo_lot",
options,
function (lotCollection) {
},
function (error) {
alert(error.message);
},
function (){
});