Re: Gateway and oData POST and GET methods
Hiin your screenshot url not exist.1.After create new project you need registrer your service, if status green then good.2. Full url service and test enity you can see in Sap getaway client test.select...
View ArticleRe: Gateway and oData POST and GET methods
var sPath_cust = "/Customer_DetailsSet(Kunnr='" + custID + "')"; this.oModel.read(sPath_cust,null, null, false, function(oData,response) { var jsonModel = new sap.ui.model.json.JSONModel(oData);...
View ArticleRe: Gateway and oData POST and GET methods
It says that the url doesn't exist only when i pass it like Nikhil suggested ("/Customer_DetailsSet(Kunnr='" + custID + "')";), if I pass it like i did, the url exists. Also i have created and...
View ArticleRe: Gateway and oData POST and GET methods
Yes it is a key in the structure.I tried your suggestion with $filter but doesn't work as well. BTW, this is my new service:I want to make it simple to pass 1 parameter and get the table after...
View ArticleRe: Gateway and oData POST and GET methods
Now it gives me 400 (Bad Request) .Another thing I noticed If I pass it like this: "/oEntitySet?" then I can enter in debug in the FM and doesn't give an error (but like that I'm not sending any input...
View ArticleRe: Gateway and oData POST and GET methods
It says that the url doesn't exist only when i pass it like Nikhil suggested ("/Customer_DetailsSet(Kunnr='" + custID + "')";), if I pass it like i did, the url exists. Also i have created and...
View ArticleRe: Gateway and oData POST and GET methods
please show full url request with filter params(at chrome console).
View ArticleRe: Gateway and oData POST and GET methods
in end at url delete )Example requestGet_Entity_Set uUrl:port/sap/opu/odata/sap/U_SRV/NameEntitySet?$filter=Objid eq '123'
View Article