
By now you know about SAP Gateway for Microsoft and how it can help to building solutions that bring SAP data to Microsoft Office. A prerequisite for building such a solution is the availability of a suitable OData service. Sometimes you will face the situation that such a service is not available but you would like to build a quick prototype of your Windows solution before investing time and energy into the development of an OData service.
Here is an idea:
With the help of the function module RFC_READ_TABLE you can build an OData service that can generically read any DDIC table. Such a service could be used by the GWM Excel Add-In or GWM Visual Studio Add-In to build quick prototypes.
Here a screenshot of the Company Code table (T001) when testing function module RFC_READ_TABLE:
As can be seen in this screenshot, the output of RFC_READ_TABLE isn’t perfect for consumption in an OData service. In this blog I will briefly explain how to utilize this function module and wrap it in a way to make it more suitable so you can finally do something like this:
Example: Reading Company Code table (T001) via generic table reader OData service from GWM Excel Add-In:
Example: Reading Plants table (T001W) via generic table reader OData service from the GWM Excel Add-In:
Please read note 382318 (FAQ|Function module RFC_READ_TABLE) before you continue. It states “Avoid to use the external generic table access (with function module RFC_READ_TABLE) in your solutions. The function is not meant to be publicly used.”
Some other points to consider about RFC_READ_TABLE:
It will only facilitate the READ operation (no CREATE, UDATE or DELETE). It can’t read all tables under the sun - some work and some don’t. Especially tables that are wider than 512 characters are not supported. Also the function module can’t directly be used in the SAP Gateway Service Builder (SEGW). It will need to be wrapped in another function module to make it suitable for Service Builder. The error handling needs to be improved to meet the Service Builder requirements. And finally the return structure is quite unsuitable as each table entry is returned as a long string.
If you are cool with that, then please continue reading. Otherwise please disconnect at this time. 😉
Here a high-level outline of the tasks:
To appreciate this blog you need to be familiar with the process on how to create OData services with SAP Gateway.
I create a new DDIC structure in SE11 (with name ZDATA_FORMATTED), which will be used by the new function module to return the table entries. I am limiting the number of columns to 20. As for the data type I am using SYCHAR512, which will allow for 512 characters per column.
Note: The settings of this structure will have two implications for the OData service: 1) For tables that have more than 20 fields only the first 20 fields are returned and 2) any field value that is longer than 512 characters will be truncated.
To speed up things, I copy the original RFC_READ_TABLE to my own function module (with name Z_READ_TABLE).
Now I adjust the interface of my function module starting with the Import tab. I removed some of the parameters and only retain these:
On the Export tab I add parameter RETURN, which will be used to return error messages in a format that the Service Builder likes:
On the Tables tab, here I set all existing parameters to Optional and then I add a new parameter DATA_FORMATTED of type ZDATA_FORMATTED (which I created earlier in the first step):
I retain all the Exceptions that were copied from the original function module.
As for source code, I first delete all existing code and replace it with the following sample coding, which should give you an idea on how to wrap the original function module in a way to make it usable in the Service Builder:
Source Code Example |
---|
FUNCTION z_read_table. TRANSLATE query_table TO UPPER CASE. LOOP AT data INTO ls_data. |
Based on this function module, now I create an OData service.
In transaction SEGW I create a new project with name ZGWM_READ_TABLE. Then I create a new Entity Type with name TableEntry. The easiest way to do this is to use the Import -> RFC/BOR Interface feature. This screenshot shows my final list of properties:
Optional: After the import, I make a couple of tweaks to the structure to facilitate the consumption of this OData service:
Next I create an Entity Set for the Entity Type. Once the Entity Set exists, then I can do the mapping for the GetEntityset(Query) operation. I map to the newly created function module Z_READ_TABLE. I use the Propose Mapping feature. Now I only need to do one additional manual change. I add new entry for the mapping of the entity set property TableNameFilter to the data source parameter QUERY_TABLE.
The Service Builder will automatically recognize that the data source parameter RETURN should be mapped for error/message handling. Additionally I have to flag data source parameter ROWCOUNT should be flagged as ‘Max Hits’.
Now it is time to generate the OData service. Once successfully generated, I can now register it in (transaction /IWFND/MAINT_SERVICE). Here a screenshot of my registered service:
Now I can consume this service from different consumption tools, like the GWM Visual Studio Add-In or GWM Excel Add-In. Via the filter parameter TableNameFilter I can specify which table should be queried. This allows me to read any table in the SAP System (provided that it is supported by the underlying function module RFC_READ_TABLE). When testing make sure to add the filter (otherwise the RFC will throw an error). The URL should look like this:
... /ZGWM_READ_TABLE_SRV/TableEntryCollection?$filter=TableNameFilter eq 'T001'
Here a simple example of using this OData service and GWM from a Windows Forms application (reading the Currency Text table TCURT):
Another example of using the same OData service from GWM Excel Add-In (reading table TCURT):
I hope you find this generic table reader OData service helpful, especially when building prototypes. Later when building a solution for productive usage then you will need to build a new tailored OData service.
Here a couple of improvement ideas to take this even further:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
11 | |
10 | |
9 | |
7 | |
6 | |
5 | |
5 | |
5 | |
4 | |
4 |