Integration of SAP time tables in the web API

I am trying to find a way to integrate our SAP time tables with a web API. What I want to do is let users enter their time sheets through the (more convenient) web interface and automatically add these time sheets to our SAP system. We are currently using SAPGUI 7.10rev3 to enter temporary sheets, and this is a nightmare! I searched for API links, but they all seem too verbose and require much more knowledge of SAP than I personally know.

Through my research, I was able to find a link to the .NET connector:

Integrate SAP into an ASP.NET project?

However, my project will use the LAMP setting. I was able to find this page , which seems to have many resources:

And thanks to further research, I was able to find this page , which seems to be a good starting point.

So my question is: can someone give me some direction where to go from here? Are there any links or documents to update temporary sheets that will help me in my situation? Or is there a link to the database tables that SAP uses for temporary sheets that I could update with LAMP?

+4
source share
2 answers

The backend APIs are usually complex for a good reason - most likely, you will have to overcome this difficulty with the help of an experienced SAP consultant if you have no previous experience in accessing ABAP backend systems. The first thing to do is get cooperation if one of these consultants or administrators is otherwise you may encounter all kinds of non-technical problems.

Assuming we're talking about CA-TS, you're at least on the right track with BAPI / RFC programming. Read the BAPI programming guide (outdated version, but not much has changed there) - one example is even related to the schedule . Then take a look at the BAPI definitions using the BAPI transaction, using this as a starting point and approach the consultant or administrator of your choice. get the completed details.

In addition, if you have never accessed the R / 3 system before, note that things are usually more complicated than they seem at first glance. You have been warned ...

+2
source

Or you can create a web interface directly in SAP, BSP , WebDynpro or even ITS
Update: for information on tables, functions ... for updating time sheets you can search in SDN / SCN

+1
source

Source: https://habr.com/ru/post/1447024/


All Articles