Suraj, Once the user removed from any project, all his stored favourites & data inside the Private folder will be lost.
the only way you acheive this by is to restore the project to that previous snapshot.
Suraj, Once the user removed from any project, all his stored favourites & data inside the Private folder will be lost.
the only way you acheive this by is to restore the project to that previous snapshot.
Oh right I see, thanks for the reply/answer!
Share the screen snip of the same & what is the insights of the Application version you are using.
My opinion is that the ALM application tool should restrict it, along with preventing the Requirements root folder from being linked to a tests as well. We've have many unthinking users do this mistake to the effect of slowing down ALM performance. We, as users, should collectlively request this as an enhamcememt to HP as a usability improvement.
Hi
We have a requirement, where the copied test case should have the design status to be reset as 'New' (We have added new values to the Design status field)
Detailed Scenario:
1. Upload test cases with status as 'New' (Manual test cases)
2. Change the Value of Design status field as 'Sent for Peer Review' for a few test cases
3.Copy the test case which updated design status
Result: The design status of the copied test case should be 'New' instead of 'Sent for Peer Review'
Please advise on how we can achive this via workflow customization;
Thanks in advance
Instead of passing the value 'null' try passing "system.dbnull.value"
Praveen,
Did you install the latest patch for HP ALM 11.5x? Try re-configuring the ALM server and check if it brings up the service.
Is there any report that gives me the total passed, failed,NA step count status of runs ? Please help if you have any report for this
Runid > total passed > total failed steps > Total NA steps
I would imagine you would set a default value to that Design Status field in the Test_New event. Look into the Project Administrators Guide for more reference.
Thanks for your reply.
Now I am receiving different error.
System.Runtime.InteropServices.COMException (0x800403FF): Field < Lines of Business > requires a value from the corresponding list at TDAPIOLELib.IBug.set_Project(String pVal).
Please help me to resolve this issue.
Regards,
Rajeev
I am working with selenium java using eclispse .We are using central repository as ALM.
My question is how to integrate with ALM with eclipse IDE
could please suggest me on integration between ALM and eclipse that really appreciated
Hi Sheyenne
Thank you for your reply, yes that would work for newly created test cases. (We are infact using that option , by defalult New test case's design status would be 'New') we are copying and pasting a test case, and in that scenario, the design status is same as that of the test case from which it is being copied from.
There is no easy way of doing that I believe. Neither Test_New, Test_MoveTo nor Test_AfterPost are triggered when you copy a test.
One thing you could try is overriding the Paste command. Analyze the contents of the clipboard and use the OTA API to create the new tests, copying the information from the source test. Not so easy but probably viable.
Thank you Jan
Are there any sample codes available?
Should I trigger the Copy action itself? If so where can I find the name of that inbuilt action?
Please help
Thanks
HP has inserted some restrictions on performance critical actions. I got the following advice in a case when hitting one of those limits. It might be worth trying as a temporary measure.
You can do so by: - Login to Site Admin - Go to "Site Configuration" tab - Add a new parameter - Parameter: CLOSURE_FACT_BETWEEN_DEPTH_FACTOR_PCT - Value: 200 - Restart the server If the error occurs again keep increasing the parameter value: 300, 400, 500 (500 is the limit, if you put this in 500 and fail please let us know). In case it didn't help, please, do the same with Parameter name = CLOSURE_ROWS_FUSE_FACTOR_PCT.
In the Copy action you don't know yet where you want to paste the test, so you should probably go for the Paste action.
You can always find out the Action names by inserting "MsgBox ActionName" into ActionCanExecute. In this case it would be "TestPlanTree.Paste".
To get the contents of the clipboard, try:
Set objHTML = CreateObject("htmlfile") text = objHTML.ParentWindow.ClipboardData.GetData("text") MsgBox text Set objHTML = Nothing
Apparently Lines of Business is a mandatory field in your project? So you need to give it a value before posting. Something like
bug.Field("BG_USER_01") = "abc"
The first advice must be to try this in a testenvironment, before doing it in the real environment and to keep the old environment until successfull db-migration is done.
Personally I have not upgraded Oracle-version, but MS-SQL and will give you the satep we used (out of my head)
1. Define the new server in SiteAdmin -> DB-servers
2. Create a new Project in the new DB.
3. Check the following values in the dbid.xlm the repository of the newly created project
<DB_CONNSTR_FORMAT>jdbc:mercury:sqlserver://dbserver.company.com:1433</DB_CONNSTR_FORMAT><DBSERVER_NAME>dbserver.company.com</DBSERVER_NAME><DB_USER_PASS>QCC:E+J7KnuB5PSOdSKXTTOSww==</DB_USER_PASS>
4. Shut down ALM.
5. Migrate the databases from old to new server. DBAs are best to do this their way with tool or manual backup/restore.
6. Update Siteadmin to reflect new databasesettings location: c:\ProgramData\HP\ALM\conf\qcConfigFile.properties
7. Update the dbid.xml in the repository of all projects migrated to reflect the new data (see 3.) . Search and replace .
8. If migrated via backup/restore on MSSQL there is a need to sync td user of old db with td-user the new by executing in all databases. But I think that you will need to create the user in Oracle check installation guide section "Restoring Projects from an Oracle Database Server"
9. Start ALM-service again
As said this is out of my head, but shows the main steps we did. There might be easier options.
br /ola
Please mark post as solved if your problems or questions is/are resolved.
If this post was valuable to you, please consider kudo it.
Above issue got resolve. That was my mistake. i was providing wrong line of business (project). Now QC is expecting defect description while posting defect but there is no any property to set defect description in API. I have already provided summary but still expecting defect description value.
What are other m,andatory property that needs to fill before defect submission. I am only passing value that i provided in sample script.
Thanks for your co-operation.
Regards,
Rajeev