cancel
Showing results for 
Search instead for 
Did you mean: 

Issuse while execution of IRPT Page

swapnil_mohite
Explorer
0 Kudos

While execution of IRPT Page for a QM dev. How to Pass multiple and single values to an Exacute query. I am currently usung XML to pass values but it is not giving the correct results like working fine for single entries but not for multiple ones.

Kindly suggest a better way to do the above task. Thanks in advance.

Regards,

Swapnil

Accepted Solutions (1)

Accepted Solutions (1)

aravinth_anandhan
Active Participant
0 Kudos

Hi,

go through the link which is mentioned below

make sure that you have checked Append XML in Assignment action in your Transaction

Edited by: Aravinth A on Dec 15, 2011 7:06 AM

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi

Use Param in the irpt page as show in code below

<APPLET NAME="Untitled" CODEBASE="/Illuminator/Classes" CODE="iGrid" ARCHIVE="illum8.zip" WIDTH="400" HEIGHT="400" MAYSCRIPT>

<PARAM NAME="QueryTemplate" VALUE="ModuleName/Templates/QueryTemplate/xtXecute_query">

<PARAM NAME="DisplayTemplate" VALUE="ModuleName/Templates/DisplayTemplate/dtGrid">

<PARAM NAME="Param.1" VALUE="'%'">

<PARAM NAME="Param.2" VALUE="'%'">

<PARAM NAME="Param.3" VALUE="'%'">

</APPLET>

Assign the param in the execute query correctly..

Regards

Sweety