You need to use API's of Quality Center in the Script.
Login to rate this answer.
You Must have MS Excel plugin installed in your system, then you will get one option in your Excel---> Export to QC.
Regards
Venkat
Login to rate this answer.
Uploading text or xml files to quality Center:--------------
Function UpLoadAttachmentToQC(FilePath)
Set ObjCurrentTest = QCUtil.CurrentTest.Attachments
Set ObjAttch = ObjCurrentTest.AddItem(Null)
ObjAttch.FileName = FilePath
ObjAttch.Type = 1
ObjAttch.Post ObjAttch.
Refresh
End Function
Call UpLoadAttachmentToQC(FilePath) This works fine with Quality center 10.0 Version... but to achive the same task in Quality center 9.0 version ,we need to use ObjAttch.Save(True) Method also. This save method works fine with quality center 9.00 but not with 10.00 version. also i want the difference between save and post methods!!!!

1 User has rated as useful.
Login to rate this answer.
Aruna
Answered On : Feb 23rd, 2012
Install the Execl Add in to the QC........
!open the excel u want to Export
!Click on the Add In Menu on the Excel
!Excel export option will come........
Provide the Respective path
Login to rate this answer.