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 i still 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 from other articles and the much helpful replies above, that TestComplete determines the format of a Row based on the First Cell of that Row, I Stored a junk value 'X' in all the Empty Cells(which were not required) in my Excel. Now my 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 try again.. Testcomplete returns NULL from excel 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 and i want to know whats going wrong.. Re: TestComplete returns NULL from Excel in Property Checkpoint, but returns Correct value in Jscript Yes, i tried that 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 same Cell -> returns NULL I even tried removing and adding the Excel, resetting the data loop, restarting Testcomplete. and even restarting my computer.. :smileytongue: TestComplete returns NULL from Excel in Property Checkpoint, but returns Correct value in Jscript I am using the Property Checkpoint to verify a value from UI with a value from an Excel. The checkpoint returns a NULL value from the Excel, but when i use a script to do the same, i get the correct value. Please let me know what the issue is. P.S: This is just one of the many "irregularities" i have found in TestComplete. Will bring them up when 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 work if the execution encounters any errors, i.e., if the test 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 for the batch file and not for the test executed using the batch file. Please provide a solution.