Recently active
Hi All, When I export requirement specification document I want its revision history as mentioned below: Revision Date Author Changes/Comments or Revision Doc. Date Author Description I was looking to extract information from the history of a document and export it into a word document when exported. Because now if you see the history of a document in PTC Integrity has too much information even if we format small things like font it gets captured in history. Is there any way how this could be done? Thanks and Regards, Shilpa
Hello, We have at office both Integrity Client 10.8.0.8356 and Integrity Client 11.0.0.506 (see attached image) Both versions have a 32 bit JRE in "C:\Temp\IntegrityClient10.8_2\jre" and respectively "C:\Temp\IntegrityClient11.0\jre" If I overwrite the JRE folder with a 64-bit version of Java, is it all right or not ? So the question is: do the PTC Integrity 11 and PTC Integrity 10.8 clients work with Java 64 bit runtime as well?
Hello, I want to extract attachments by Java API. I want to get all attachments(attachment, shared, text) of 1 item by single command. The problem is that "cwd" option does not works for Java API, so only 1 selected attachment can be downloaded and I need to iterated over files (= iterating command). In addition, I can not download "Shared Attachments", "Text Attachments" by Java API. I can only download "Attachments" of a single item. Command cmd = new Command(Command.IM, "extractattachments"); cmd.addOption(new Option("issue", "312")); cmd.addOption(new FileOption("outputFile", downloadDirPath + "/attach.txt")); //cmd.addOption(new Option("cwd", "/working/directory")); // this does not work cmd.addSelection("attach.txt"); My question is that, 1. Is there a way to download all attachments of an selected item by Java API? 2. same as "Attachments" type is working, how can I download "Shared Attachments" and "Text Attachments" by J
Hi all, I am investigating the option to create time entries in a trigger context. Problem: - we want to use the time tracking feature provided by PTC, but we have strict limitations about the data that shall be visible to the users. Therefore we cannot just enable "time tracking" on our TASK types, as once enabled this would allow all TASK users to review the time entries of their colleagues. Only dedicated "time admin" users shall be allowed to do this. Idea: I created a separate type "TIMESHEET" that has the time tracking enabled and is automatically generated with a 1:1 relationship to the TASK type. This TIMESHEET type is only visible to "time admin" users. The TASK users shall enter their hours in a float field "time send today" inside the TASK item. A pre-event trigger reads that "time spend today" value from a TASKs IssueDeltaBean, and automatically creates an according TimeEntry in the related TIMESHEET item. The "time spend today" value&n
The Gateway Export (to Word) of a Test Protocol document with traced Requirement(s) for each of the Test Cases, through the "Verifes" trace relationship, works fine. It displays the Requirement item numbers, but when I attempt to retrieve a text field (DOORSID; set when imported from DOORS), I am unable to do so. a) If I add "include-related="true"" for the "Verifies" field, will I be able to retrieve it?b) Can I use XPath (XML Path) to retrieve the DOORSID?c) Is there a way to view the "intermediary" XML file before Export to Word, to help troubleshoot the issue? Balu
Greetings to whom it may concerns, I want to get sub-item lists of several documents in the Integrity system, using MKS API. For being not able to find suitable options, I tried this. Command cmd = new Command(Command.IM, "issues");cmd.addOption(new Option("queryDefinition", "(field[\"Document ID\" = 2])")); Response response = null;try { response = cmdRunner.execute(cmd); LOGGER.debug("reponse = " + response); LOGGER.debug(response.getCommandString());} catch (APIException e) { LOGGER.error(e.getResponse());} And there are problems I'm aware of, with the command, that it shows sub-items of every documents in the system, that it shows sub-items of one whose Document Id is 2, not lists from several document. (modified) that it just shows all items in the system. So, Here is my question,Is there any other command or options appropriate to in this situation? Any ideas or tips will be very hel
I know that getting detail information from a issue(Item) is in CLI $ im view issue 2 in Java API Command cmd = new Command(Command.IM, "viewissue"); cmd.addSelection("2"); In result, I get the fields of the issue(item) that I selected. Shared Attachments: shared.txt Text Attachments: text.txt Attachments: attach.txt Not just names of the attachments, I want to know the detailed information of for each attachments (text.txt, attach.txt, share.txt...) such as created by and created time. I know that the detailed information of each attachments is shown in the GUI client when view detail of the item. How can I retrieve those information by CLI and Java API?
Hello,in an open Document we add new line with the javascript trigger command createContent. This if special conditions are given. This is needed, because the users should not forget to add the new added "line". That works fine: ScriptIssueDeltaBean.createContent("category_name", "first"); but the users must manually press F5 to see the new line. And that is the problem: The refresh of the open document shoud happen automatically. Because the user shoud not forget this new line. Is there any way to do this? Thanks a lot
I need to install a Linux-operating client on my system, which is Cent OS 7.4 64bit. I've read that Integrity Client supports RedHat 6, 64bit, so I thought it might work on mine as well. But I found the newest installers versioned Integrity-10-9-Client-Linux32. Nevertheless, I've been trying to install 'Integrity-10-9-Client-Linux32' on the system, following '/ClientUserGuide_Integrity_10_9.pdf' guide documentation and 'https://www.ptc.com/en/support/article?n=CS124168'. And now, I'm facing with another error messages when try launching the client, saying that "./si: Attempt to launch Integrity Client timed out. To solve this please try the following:- Verify that the user you are logged in as has read and write permissions to the Integrity Client install directory." I've found a similar issue, "https://community.ptc.com/t5/Integrity-Questions/Attempt-to-launch-MKS-Integrity-client-Timed-out/m-...", so I've double-checked my path '/home/
I want to create a report over my defects including the related test result verdicts and annotations per defect. The goal is e.g. to have a "defect log" showing all defects and all their regression test results. I know how to access test results in report recipies using the according tags, but the problem is that, although the GUI shows me the related Tests Results in the Defect items view, the reports engine seems to unable to access these items via the tags , like <%begintestresultdetail verdict=&combinedverdictfilter %> <table> <tr> <%iteratetestresultfields%> <th>&testresultdisplayname</th> <%/iteratetestresultfields%> </tr>-- Display test result field values --> <tr> <%iteratetestresultfields%> <td>&testresultfieldname</td> <%/iteratetestresultfields%> </tr> </table> <%endtestresultdetail%> If I run the same recipe on a Testcase item&n
I am new to Integrity. I have version 11, Build 11.1.0.961, API Version 4.16.961. I just want to create a document and start writing my specifications and requirements. I am going through the eLearning and it keeps referring to Requirement Engineering Viewset but i don't see this view set in any of the viewsets that exist in the program
HI.I've just made a java program fetching files from Integrity CM system and it works good on the Window OS . But I've found it not working without operating the client program on the Linux OS, where the program will actually be running, and the client has not been installed on.So, here's my question. 1) Is there Any way of Creating/resynchronizing sandbox without Client, using API? -I've been using localIntegrationPoint so far, for the system has sent me "Sandboxes cannot be created or imported directly on the Integrity Server." messages. 2) What should I do to install client on my linux OS? -I'm not in charge of the Integrity system, so I got no clue what should I do. Should I tell the manager in charge to install the client on Linux? Any ideas or tips will be helpful. Thanks in Advance.
Hi, we have set up a script that is triggered by the Member.unlockRevision.post event. It should send a mail if a user's lock is broken by admin. This works for "downgrade lock" from the sandbox and member history view, but not for the "Member/Locks/Find all locks for a certain user" view - the script is simply not triggered (we have no log output). So this is only triggered when downgrading an exclusive lock - all other actions have to be done via "Member/Locks/Find all locks for a certain user" view. We are on Integrity 10.5. Is this known, corrected in a later version and is there a workaround?
Hi All, I'm able to export the document using Integrity Gateway Export Wizard as required. But I wanted to edit these export configuration options: Eg: Sample MS Word Exporter - simple headers and content to Header Content And also I want to add new options to this list. I'm not able to find where exactly I can do these changes. Thanks in advance. Regards. Shilpa
Hi all, I know that Test Result has some limitations to improve performance but I don't remember if it's history is registred or not. Is it possible to view a Test Result History? The end user is questioning that he didn't change a Test Result but the 'Result Modified by' field is showing his name. Regards.
Hi! I want to export a customized report and set up a XML and Word template. The report contains Test cases, which are linked to requirements. In the XML mapping, I load the requirement IDs with following code: <field internal="Backward Relationship Test Issue" external="References" field-type="relationship" include-related="true" direction="out" /> Following, I want to access the underlying data, which is loaded with the flag ' include-related="true" '. But I did not find a way to achieve that. The report wizzard obviously loads the data, but I don't know, how to address these fields in order to have access in the docx template. I am only able to print the related ID's (stored in References), but not the data related to these IDs. I saw some questions in this forum asking the same, but no solution was provided. Can anybody have an idea how to access it? Thanks! Helmut
Simple example tried (after reading basic documentation) to integrate a Matlab Simulink Model in an Integrity Modeler model is not working. Do you know where to find documentation or tutorials on this question ?
well i am trying to make a program to automatly create some syml diagram using the previous ones and some user's input curently i have a document that explain a bit how to use the scripts but there are still thinks i do not manage to do In particular, i have no idea how to create sysml componants (such as block definition diagram) when i try to use flooder.addItem("BlockDefinitionDiagram","MyItem"), it return an error and the only way i found to avoid this problem is to copy a pre-made block diagram which is quite unpractical same problem while creating a new model, i don't know how to automatly add the sysml profile so if you have the solution or you have any documentation about this topic please tell me
Hello everyone, I am trying to automate the regression testing in my department using Python and Jenkins. All the test related items and environment specific files are kept in Integrity. Long story short. The framework will need to be able to create all sorts of Integrity items whenever failures are detected during the testing cycle. This is to keep track of the activity performed for the root cause analysis involved. Unfortunately, Google wasn't very helpful so here are my questions: 1. What would be the CLI command for creating an ALM_Open Point. Will such a command enable me to fill in all the required fields for this Open Point? If no, what would be the other commands involved? 2. Same for ALM_Build 3. Same for ALM_Delivery 4. Same for ALM_Task 5. Same for ALM_Action 6. Same for ALM_Change Request 7. What would be the CLI command for getting the project history? Here I'm interested in getting a list of all check points for a specific project. 8. What woul
Hi Guys, I need to create a user using a trigger is it possible ? If yes can you tell me how ? If no cab you tell me the reason ? Thanks, Shree
Hey, I am trying to get some files from a project folder and would like to filter the files so only .psd files are downloaded. Is that possible?
Project Permissions do not seem to inherit to shared subprojects.When doing a project checkpoint or snapshot, the ACL of the original location of the shared subproject has to be changed to avoid permission denied errors.(Where) is this documented?We are working with shared subprojects very much and getting frequent errors when it comes to checkpointing.In addition, the affected shared subproject is not shown in the permission denied error message, only the main project. So debugging this error is really hard. Any advice?
Hello all. When I try to publish a word document I edited in word in PTC Integrity 10.9 I get the following message: "MKS10001: Uncaught Exception in MKS Gateway Command"I asked support about this and they said that it seems that edit in word is not working in Integrity 10.9. Is there any workaround? Thank you.
I would like to create a veritical bar chart that effectively has two queries.For each "Build" I would like a veritcal bar to represent - "Found in Build" and another bar for "Fixed in Build".I have tried lots of different options and have not been able to get this.Is it possible? Thanks for your help, - Michelle
There is an ALM checklist, that's created and tasks are using this checklist. Would an update to this ALM checklist to new parameters effect the tasks that were started or closed.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.