Quantcast
Channel: SCN: Message List - SAP Manufacturing Integration and Intelligence (SAP MII)
Viewing all articles
Browse latest Browse all 4841

Re: Passing Query Params using SAP UI5 in SAP MII

$
0
0

Hi Ayush,

 

Just add the parameters in the URL like this:

/XMII/Illuminator?QueryTemplate=<Path of Query Object>&Param.1=value&Content-Type=text/xml

and then you can use this URL in the ajax call from your web page (controller of your view in your case).

This would basically use the GET method of http call.

 

For POST call, add the parameters in the body of the request.

Example using jQuery ajax function:

 

jQuery.ajax({

        url: '/XMII/Illuminator?QueryTemplate=<Path of Query Object>&Content-Type=text/xml',   

        type: 'POST',

        data:{Param.1:'value', Param.2:'value'},

        success: function(data)

        {

 

        }

});

 

Regards,

Rohit Negi.


Viewing all articles
Browse latest Browse all 4841

Trending Articles