cancel
Showing results for 
Search instead for 
Did you mean: 

A simple oData-service methods

Former Member
0 Kudos

Hello!
I am a JavaScript developer and I have never worked with SAP/ABAP. I need a simple service to test my SAPUI5 apps. Please help me to create a test oData service based on table.

I created a simple table ZSTUD_USERS, add a data into table, activate it. Then I add a methods, register a service, activate it.

I test in /n/IWFND/MAINT_SERVICE but I do not get the data in the browser.

Help me please write a getentityset-method to get the data from table based on this:


method ZSTUD_USERSSET_GET_ENTITYSET.

    SELECT * FROM ZSTUD_USERS.

  ENDMETHOD.

As well as how do I write the methods for create, update and getentity-method correctly?

Thank you!

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Thank you all!
...But nothing helped. Maybe I'm doing something wrong, but the XML remains the same.I would read and study the articles.

former_member185414
Active Contributor
0 Kudos

Hi Alexander,

You can also refer -

Let us know in case you need more help.

BR.

Former Member
0 Kudos

Hi,

Just use

SELECT * FROM ZSTUD_USERS INTO CORRESPONDING FIELDS OF TABLE ET_ENTITYSET.

hope this helps

Odata service implementation for GET_ENTITYSET | sap abap | sapui5 made easy

Regards

Joseph_BERTHE
Active Contributor
0 Kudos

Hello,

What you should do is to Redefine methode in SE24.

If you want to get the full table, you only need to redefine entitySet method.

It should work