Finally this is the workaround..Just closing the loop who may need it...
// Create Checkpoint per this website video http://motevich.blogspot.com/2008/03/qtp...-text.html
// Create Checkpoint per this website video http://motevich.blogspot.com/2008/03/qtp...-text.html
Code:
Browser("Acme, Inc. |").Page("Acme Order Page").Frame("fbody_5").Output CheckPoint("fbody_5")
Dim fso, new_file, a
ordernum = DataTable.Value("order")
msgbox (ordernum)
Set fso = createobject("scripting.filesystemobject")
Set new_file = fso.createtextfile("c:\order.txt", True)
new_file.writeline(ordernum)
new_file.close