cancel
Showing results for 
Search instead for 
Did you mean: 

Universe and Report details

naveen_kumar29091984
Participant
0 Kudos

Hi Team,

When we execute below query, we are not getting any query list as output. We are able to access the Universe and Document details But the Data content of the document which is run from query is not available to download as output. Please advise.

public String query_sl(String method, String link, String format) throws Exception {

return query(method, biprws + "/sl/v1" + link, format, token, null);

}

// Get Query information

String que = connection.query_sl("GET", "/queries" , "application/json");

System.out.println(que);

System.out.println(que.length());

JSONArray queries = new JSONObject(que).getJSONObject("queries").getJSONArray("query");

denis_konovalov
Active Contributor
0 Kudos

I have fixed your tags, please select more careful next time.

Accepted Solutions (0)

Answers (1)

Answers (1)

daniel_paulsen
Active Contributor
0 Kudos

Hi Naveen,

What is the result of your GET? Do you get an error or is it just an empty list of Queries?

Before you can GET a query, you have to Create one by specifying the resultobjects of your query. Then you can retrieve the details of the query as well as the results by using the oData query APIs

https://help.sap.com/viewer/5431204882b44fc98d56bd752e69f132/4.2.6/en-US/ec55543d6fdb101497906a7cb0e...

Dan