Getting the List of Queries

Usage

Gets the list of all query statements available in the instance of the open session.

Request

GET /queries

Request type: application/xml

Response

Response type: application/xml

Response body: a series of <query> elements with the following attributes:

  • dataSourceType is the universe type (unv or unx)
  • dataSourceId is the universe identifier

A <query> has an <id> child element that represents the corresponding query statement identifier.

Example

GET /queries

<queries xmlns="http://www.sap.com/rws/sl/universe">
    <query dataSourceType="unx" dataSourceId="5845">
        <id>5602099021259262832</id>
    </query>
    <query dataSourceType="unx" dataSourceId="5845">
        <id>7059150136676433395</id>
    </query>
</queries>