ContributionsMost RecentMost LikesSolutionsRe: TestComplete returns NULL from Excel in Property Checkpoint, but returns Correct value in Jscript As ive mentioned, I could understand what you were trying to tell me. But istill hadn't got a solution to my problem. Thanks for your response. Much appreciate it.:smileyhappy: Re: TestComplete returns NULL from Excel in Property Checkpoint, but returns Correct value in Jscript Resolved! After reading several articles on TestComplete DDT and Excel compatibility, and even after trying the apostrophe <'> hack, my problem persisted. Taking info fromother articles and the much helpful replies above, that TestComplete determines the format of a Rowbased on the First Cell ofthat Row, I Stored a junk value 'X' inall the Empty Cells(which were not required) in my Excel. Nowmy scripts run smoothly. :smileyvery-happy: Thanks for your replies! Re: TestComplete returns NULL from Excel in Property Checkpoint, but returns Correct value in Jscript Hmm..i see that i'm not clear enough yet... Ill tryagain.. Testcomplete returns NULL fromexcel when i use the "Property Checkpoint" TestStep in my Keyword Test, like below.. But when i use JScript(like below) for the same purpose, it works fantastically fine! aqObject.CheckProperty(AliasesCaseTabPublishedPanelIdCardInfo.tableLayoutPanel1.label10, "Text", cmpEqual, Project.Variables.QAT_ESDH_Properties.Value("IDKort"), false); Bottomline:I'm just using 2 different ways to achieve the same goal, but i want to know why is it that one works and the other doesn't. U may suggest me to go with JScript since it works fine, but it is puzzling me andi want to know whats going wrong.. Re: TestComplete returns NULL from Excel in Property Checkpoint, but returns Correct value in Jscript Yes, i triedthat too. However,how is it possible that i get the data by using Jscript for the same Excel, but the Checkpoint returns NULL. To make it more clear, Log.Message(Project.Variables.QAT_ESDH_Properties.Value("IDKort")); ->returns 8760913 Property Checkpoint -reading from the sameCell -> returns NULL I even tried removing and adding theExcel, resetting the data loop, restartingTestcomplete. and even restarting my computer..:smileytongue: TestComplete returns NULL from Excel in Property Checkpoint, but returns Correct value in Jscript I am using the PropertyCheckpoint to verifya value from UI with a value from an Excel. Thecheckpoint returns a NULL value from the Excel, but when i use a script to do the same, i get the correct value. Pleaselet me knowwhat the issue is. P.S: This is just one of themany "irregularities" i have found in TestComplete. Willbring them upwhen i get time. SolvedRun SoapUI tests through Java I need to run a SoapUI Test project through Java and get the Exit Code of that run. I have tried using the below LOC: Runtime.getRuntime().exec(new String[]{"C:/Program Files (x86)/SmartBear/SoapUI-Pro-5.0.0/bin/testrunner.bat","-EDefault","D:/Projects/UAT-soapui-project.xml"}); But this fails to workif the execution encounters any errors, i.e., if thetest has any errors, the code just keeps running infinitely, niether returns a Exit Code. I have also tried running a batch file through Java, which contains command line instructions to run the tests, but the Java code returns the Exit Code forthe batch file and not for the test executedusingthe batch file. Please provide asolution.