cancel
Showing results for 
Search instead for 
Did you mean: 

rowset in xmlHttp.response returns only message and not rows and columns

0 Kudos
282

Hi all,

i have created a transaction in sap mii . It returns mutilple rows.

on testing the transaction it returns data.

but when i am using the transaction in http url it returns me a message "TRANSACTION EXECUTED OK" but there is no rows and columns returned from transaction

Accepted Solutions (1)

Accepted Solutions (1)

former_member229176
Participant
0 Kudos

It seems your illuminator/runner URL contains OutputParameter as "*". It should be a output parameter from Transaction.

  • So define a output parameter - lets say outputXML(type XML) in the transaction's "transaction properties".
  • Assign the XML that you are getting in tracer to outputXML variable.
  • Modify your URL to add OutputParameter=outputXML&content-type=text/xml

Answers (1)

Answers (1)

0 Kudos

Thanks Soham Shah, yes the problem is solved now 🙂