Skip to Content
Author's profile photo Christoph Lenschow

SOAP Consumption of Easy Query

This blog complements the blog “Easy queries on SAP Netweaver” written by Uwe Fisher giving detailed information about a SOAP based consumption of ‘Easy Query’ as delivered with SAP NetWeaver BW 7.30 SP5.

An easy way to consume the data from ‘Easy Query’ is to use an automatically generated Web service via SOAP. The Simple Object Access Protocol is a common and well known protocol. which can be used by several other programs and languages. Due the fact that SOAP is XML based it is possible to use it several ways e.g. calling the Web Service via JAVA to display the data.

The first thing to do is to download the WSDL for the Web Service of the query you want to use. Therefore you have to go to the Easy Query Management (Transaction ‘EQMANAGER’). There you can select the specific Query and jump to the SOA Manager via the button “Start SOA MANAGER” in the toolbar. 

 

 

Within the SOA Manager you have to choose a binding you want to use (or create a new one) and after that you have to open the WSDL document for your selected binding. You can now ether download the WSDL and store them on your computer or save the URL. (Note: If you want to use the URL directly please implement note 1649833)

 

 

The WSDL document contains the whole information about the Web Service you want to use. Let’s have a closer look to the document itself. Use the Internet Explorer to open it. Within this document you find the fields which the Web Service returns. It also mentions the type of the parameters so that you can implement you application in the right way.

Each Web Service defines a couple of tables which he returns:

 

 

  1. ETGridDATA
    This Table contains the query information. Here you will find all values of your query. The columns were dynamically built out of the structure of your Query. So you will find the characteristics and key figures plus the formatted once here. The rows contain the specific values. The type of this table changes with every Web Service.
      
  2. ETColumnDescription
    This table includes the technical name the type and also the description for every characteristic and key figure you use in the query.
     
  3. ETRowDescription
    This table contains specific information for each cell in the query. A cell is specified via RowID and ColumnID. For this cell you can retrieve information if this value is a sum or if this value is part of a hierarchy. If there is a hierarchy you also receive information about the parent and the hierarchy level this cell belongs to. 
  4. ETMessageLog
    This table contains messages if they occur in the call stack. You can handle errors which you receive in this table so that your application becomes more stable or you can simply display them so that the user knows that something doesn’t work right. 
  5. ESQueryProperties
    This structure contains information about the query e.g. owner or creation date.
     
  6. EQueryOutdatedOrInvalid
    When this flag is true, something is wrong with the query.

It is also possible to use input variables. If you want to use them you have to provide the values for Sign (normally ‘I’ – Including), Option (‘EQ’ – Equal, ‘BT’ – Between, ‘CP’ – Contains Pattern), Low (value) and high (value if needed). The parameters need to be passed to the Web Service so that they can send to the backend. Feel free to visit the ‘Easy Query API’ (http://help.sap.com/saphelp_nw73/helpdata/en/27/02f6e4306346f3baad0cfd4af56bf0/content.htm) documentation to gain more information about it.

At the end of the WSDL you find the information about the binding. You will find a web address in the binding section. This is the information you need to connect to the system which the Web Service wants to call for Function Module to retrieve the data. 

With this information you should be able to understand the Web Service. You can now use it in your application. Of cause you have to implement the connection and internal structures by yourself.

Let’s verify the result of the Web Service by using Microsoft Office InfoPath2007©. You can open a new form which is based on a Web Service.

 

 

On the next screen you have to choose if your service receive or send data or does both. On the next screen you need to provide the location of your service. You can ether choose an URL or if you download the WSDL to your computer you can use the location on your directory or you enter the URL from the Web Service directly. Select an operation you want to use and enter a name for the connection and continue.

Now you see a simple template. On the right sight under the folder ‘dataFields’ you can find the well known structures mentioned above. Drag and drop the ‘item’ folder under ‘ETGridData’ into the lower box. Select ‘Repeating Table’ in the context menu.

 

 

Now run your template via ‘Preview’ in the toolbar.

In the preview click ‘Run Query’ to start the Web Service and receive the data. After logging into the system you will see that the data occur in a table like format.

 

 

You build your first application which uses a Web Service based on ‘Easy Query’. Of course the table is the easiest way to show the data. However there are a lot of other options to display the result in a nice way. Just try it out!

Assigned Tags

      6 Comments
      You must be Logged on to comment or reply to a post.
      Author's profile photo Former Member
      Former Member

      Thanks for the blog. We tried to build a prototype and we are having issue in the last step after we click Run query in the Infopath. It is keep on asking username and password after we give the right credentials as well. Not sure why it is not retrieving any data. Any idea what causing this behavior?

      Author's profile photo Ronald Konijnenburg
      Ronald Konijnenburg

      I have the exact same problem. Strange.

      Author's profile photo Former Member
      Former Member

      I used the function module which is created by easy query, went to SE37 and created a webservice for that function module. This way i could make it work.

      Thanks

      Naga

      Author's profile photo Ronald Konijnenburg
      Ronald Konijnenburg

      Fantastic tip! Created the end point in SOAMANAGER after the creation of the web service and it works beautifully (including authentication using the BW credentials)

      Author's profile photo Former Member
      Former Member

      I guess with easy query it will work following way (without creating a webservice link using FM)

      1. Goto SOAMANAGER

      2. In Service Administration Tab > Click Simplified Web Service Configuration

      3. In the search pattern look for the service definition you are working on

      4. Check on the User Name / Password and in the API settings tab as well check on Basic Authentication

      5. Now go to Webservice configuration and Select the new binding and display the link and use  it in your infopath

      By default easy query webservices is using SAPLOGONTICKET and hence initially authentication is failing. Now username and password should work.

      Hope you figured this out, just in case sharing it.

      Author's profile photo Former Member
      Former Member

      Hi everybody:

      Could you please take a look to my question published in the next link related to Easy Query functionality?

      https://answers.sap.com/questions/79003/easy-query-web-service-input-variables.html

      Thanks,
      Manuel