Re: Unable to retrieve customfield values from NewList for a filter - Writing...
For user defined fields the syntax to use is as follows:theBug.Field("BG_USER_**")Also for some system fields you need to use this syntax. Only limited system fields like ID, Status and Priority are...
View ArticleRe: HPQC 10 - Error "The field cannot be used with requirement type
Hi. Only one suggestion- what is NWSADCom? Is it string variable or object and what is its value? Br, Tomas
View ArticleRe: How to protect Workflow Code
Hi. There is one 'tricky' way - create your own library and call it directly from workflow. Br, Tomas
View ArticleRe: How to move test cases to a different folder using VBA?
This was perfect! Thanks so much Tomas! It will save us heaps of time. Apologies for the late response, I could not come back to this thread last week.
View ArticleRe: How to move test cases to a different folder using VBA?
Hi obelisque.No problem, I'm glad I could help you, some Kudos will be enough :-).Br, Tomas
View ArticleRe: Import of requirements gives unexpected error
Hi sundaytwins. Could you try to add these codes to cleanup objects?Public Function uploadRequirement(TdConnection, reqPath, reqName, reqType, reqAuthor, Optional reqPriority) Dim reqFact,req parentID...
View ArticleRe: How to manage traces (requirement tracability) with ALM 11 REST API
I'm also searching for deleting or updating a trace, but I may help with getting a list of traces: Dim objReq Dim objReqFact Dim objReqFactFilter Dim objReqFactFilterList Dim...
View ArticleChanging style according to entity criteria for QC11 report template
Hello,In V11, a new reporting feature is available. I would like to know if it's possible to change style of an Entity displayed in Project report according to criteria conditions.For instance if a...
View ArticleRe: Project stuck in maintenance mode.
I was able to "remove" this project and restore it.Once restored, I was able to complete the verify and repair processes.
View ArticleRe: CASE
I haven't used that pariticular keyword syntax in a SQL statement, in or out of ALM. But I did find these two references that you may find helpful, since you say you are new to...
View ArticleRe: Quality Center 11 Migration Users Table Issue
The reason you don't see the user details in Site Admin in this case is because when a project is restored into the Site it will only bring the user's login name with it, and only that will be added to...
View ArticleRe: Detect end of test execution using OTA
Did you find a solution for this problem? We recently moved to ALM and while this worked great with QC10, I'm having the same issue with ALM: The testset seems to have finished, but it's not being...
View ArticleRe: How to sync the test case in ALM with the one on local when no...
Thanks for the reply, but what about the external action connection and repository and function library connection. If we only copy the script, the above won't be passed. So We have to rebuild those in...
View ArticleHow to split a QC project
We have set up our two major divisions commercial and non-commercial on one QC project. Now Commercial wants to be seperated from non-commercial but they want all commercial data needs to be carried to...
View ArticleRe: How to split a QC project
Given the size of the project (based on the disk consumption you listed) I would say most methods that might be used for splitting the project are high risk. I think the least risky option is for you...
View ArticleRe: CASE
Try something like this:SELECT case when one.total > 1 then one.total else two.total2 endas value from (select count(*) as total from BUG) one,(select count(*) as total2 from req) twoBut I am not...
View ArticleRe: How to split a QC project
What is you main reason for this split? Is it because of too big project (slowness), maintainability or something else? You need to move all the entities to a new project? So whole set of data related...
View ArticleRe: QC10_Excel Add-in error: "Invalid server response"
Hi.Probably you have url in wrong format.It has to be "http://<localhost>[:8080]/qcbin/" not "http://<localhost>[:8080]/qcbin".Br, Tomas
View ArticleRe: Check mandatory fields for a defect , update with valid values before...
Hi Javasaigon. There is your code:Sub Bug_FieldChange(FieldName) On Error Resume Next If FieldName = "BG_STATUS" then if Bug_Fields.Field("BG_STATUS").Value = "Fixed" then...
View Article