ContributionsMost RecentMost LikesSolutionsRe: How can generate customer execution report in SOAP UI Open Source? Never mind. My problem is resolved. I am now renaming my reports file in tear down script at Test Suite level once all my test cases are executed. Thanks How can generate customer execution report in SOAP UI Open Source? Hi All, I am using SOAP UI Open Source and trying to generate some custom report for different test suites having multiple test cases. Currently I am using groovy script which creates default CSV Reports, but it generates another report when time gets changed between execution as I am appending time of execution in report. This script is being called in tear down of every test case. Can someone help or have better approach of creating custom reports? Thanks in advance. Shishir Re: How to pass value from properties in query parameter ? If you are asking about passing a property value to a Query in JDBC Request then your approach is correct. Its just that if query parameter type is string then use single quotes otherwise use property as is. Below is simple example: SELECT * FROM EMPLOYEE WHERE LAST_NAME = '${EMP_DTL#LAST_NM}' AND EPMPLOYEE_ID = ${EMP_DTL#EMPID) In this example EMP_DTL is Properties step where LAST_NM and EMP_ID are properties stored in. Hope this help resolving your issue. Accept this as solution if this really helps or provide more details on what you are trying to achieve with details explanation of your tests. Thanks Re: Validating current response against previous response? PrathapR Basically both. Thanks, Shishir Validating current response against previous response? Hello Everyone, I am new to SOAP UI Open Source and trying to explore different features. Can we compare current reponse of web service with the response on previous execution? If yes then do we need to right groovy script or any assertion will help to achieve this? Thanks in advance and happy learning. Solved