Hi,
Good Day!
Am very new to SAP UI5 and also in ODATA.
As I have created a ODATA in SEGW Tcode and also I have imported the data from the Structure and also I have wrote the logic in the DPC EXT a Simple select Query.
Once I run the SERVICE MAINTENANCE -> Click on Gateway Client am not able to display the data.
Hello Sadiq:
If yo have implemented the logic for GET_ENTITY or GET_ENTITYSET methods, you will have to define what EntitySet you want to test. You can do it using this button:
If you dont have this button, you can replace you URL adding your entityset name, something like this:
/sap/opu/odata/sap/ZBRONTOBYTE_SRV_01/EntitySetYouWantToTest for testing GET_ENTITYSET method
OR
/sap/opu/odata/sap/ZBRONTOBYTE_SRV_01/EntitySetYouWantToTest('KEY_VALUE') for testing GET_ENTITY method
Rewards if usefull 😉
Best regards,
Didier
add /ytestset at the end of ..../*BYTE_SRV_01
Hi ,
Please make sure ,the structure of your query should be same as the stricture of the entityset which you have created using SEGW..
Also if you have implemented ytestset_getentityset then below url you need to hit
/sap/opu/odata/sap/ZBRONTOBYTE_SRV_01/ytestset
and if you have implemented ytestset_getentity then below url you need to hit
/sap/opu/odata/sap/ZBRONTOBYTE_SRV_01/ytestset('value_of_key')
Add a comment