Recently active
Dear all, today we are using the versioning feature of Integrity, but we only need a version number for our document AND for our content. There is no further need of other versioning features (like traces to versioned items etc.). So for us it would be better to simply work on the live item and add an own version numbering scheme to our items. The numbering scheme should be "[major].[minor]", like it is used for versioning. For content (Requirement) the minor-number should be increment by 1 for EACH significant edit. The major-number should be increment (+minor to zero) when the state of the content changes from state "A" to state "B". The version number for document we would simply add manual as baseline/label. From my understanding I would need: - field "My Minor" (integer) - field "My Major" (integer) - computed field "My Revision" (shorttext) that joins the fields to "[My Major].[My Minor"] - 1 trigger that increments "My Minor" + rule that
Hi,Can someone post an example of JavaScript code that is making Integrity Web Service calls? This is for the Web Client only. I have all the Web Services documentation and I simply need an example for making the equivalent of an "im viewIssue" and/or "im editIssue" call using the Web Services from JavaScript. And this is browser-side JavaScript, not server-side behind a Trigger. I currently don't understand the JSONRpcClient and mksCommandRunner wrapper functions that I see in the debugger. Any guidance would be most helpful. I almost have this functionality working and this is the last portion to complete in our prototype.Kind regards,-Seanaddendum...I have a SOAP example from Jeremy that works great. For our implementation, we will need to make use of the userid/pw that is part of the session for the Web Client. The SOAP example has a hard-coded userid/pw. So I have the basic mechanics in place that demonstrates that our concept is workable. The next step to making this real is inte
For various reasons I have ended up with two actors in Integrity Modeller that are meant to be the same. The incorrect one is used on many sequence diagrams. Is there a way to replace the actor (either globally or on a diagram-by-diagram basis) without having to drag the correct actor on and redraw all of the Flows that go to that actor? Thanks.
Hello everybody, i have question regarding the field type "phase".We use a (custom) phase field to organize one of our workflows (Workflows and Documents->Types->"NameOfType"->Attributes->Phase Field). For the future we like to deactivate the phase field from the corresponding workflow. Unfortunaly this field is a legency holdover of better times 🙂 and we do not have clear information about it. At the moment we do not know if there is any relationship to aspects of the system like triggers or other important parts. Is there a way to find out any related relationship regarding the usage of this phase field in the system? We need to be sure that there are no side after deactivation (not removal). Currently we are using Integrity 10.8. Thanks for any answer which may provide some clearification
Hello, - I would like to create a chart from some Workflow and Document items - We use Open Issues, Change Requests, Risk Issues, etc. Each item has a creation date and time - I create a simple query filtering these items by a text field named "Rubric" . Please see the attached image. Then I would like to create a chart: - on the x-axis of the chart I would like the item creation date (of course without time ) - on the y-axis is the count, i.e. the number of items created in that date, again of course without time I tried the Distribution, Item Fields and Item Fields Trend types of chart which accept a query, but I didn't succeed. Please help, thank you.
Hi, I am wondering how the Java API command for this CLI command would look like: im issues --fields="ID,Summary" --sortField="Planned Release End Date" --queryDefinition=((field[Type]="Release")and(field[State]="Scheduled,In Progress")and(field[Project]="/some_project")) I am stuck with the fields and the query definition option What I have so far: Command command = new Command(); command.setApp(Command.IM); command.setCommandName("issues"); command.addOption(new Option("sortField","Planned Release End Date")); Or is there any way to run the CLI command via the Java API directly without having im.exe and IntegrityClient.exe called? Regards, Simon
Hello all, I am bit confused with a building a query but it might be trivial for you people. Nevertheless I request your feedback. I want to build a query that search for all the 'Team's with a name say 'Abc'. Any help would be appreciated.
So I have a project which has parenthesis in it, and I am trying to execute a query from the command line constructed from a query definition. Here is a Query defined which has the same query definition: Name: frl-Test... Query Definition: ((field["Summary"] contains "#29") and (field["Type"] = "Sprint") and (field["Project"] = "/Electronic Tools (ETPL)/Foobar"))Sorted By: ID (Ascending)Fields: ID,Type,Summary,State,Assigned User,Project Here is the issue I receive when I enter the query defined for the issues cli interface. im issues --queryDefinition="((field[Summary] contains ""#29"") and (field[Type] = ""Sprint"") and (field[Project] = ""/Electronic Tools (ETPL)/Foobar""))"*** MKS124814: Cannot show view information: A "(" was found within a ( ) group. Error occured before "ETPL)/Guidanz))" I have tried escaping the parentheses with a backquote (`), and this did not help the situation. Can I just not have a parentheses in the name?
Has anyone did the PTC Integrity Integration with Vector Cast and Vector Canoe Tools or some idea about the same ?
Hi, Can somebody tell me how IMS compares a file and sets the "modified" flag? These is my observed behavior: 1) I have several files in my sandbox with the "modified" flag, but when I apply the filter "modified working files", those files are hided. 2) If I select a file that appears to be modified, I have this information displayed: "Working file checksum differs, newer: Mar 18, 2016 1:49:34 PM vs. Mar 18, 2016 1:49:34 PM ". If I compare it with another tool (Beyond compare for example) I have no difference. This situation leads to critical conditions, because developers use this filter commonly to detect the need for check ins. Is this a known problem? Do you know why IMS has this behavior?
Within an Activity Type in my Package Browser, I'd like to order the child items displayed. For example, I would like to group together and alphabetize all the Opaque Action Types and have it apply to all of the Activity Types created within my Model. Does the capability exist to provide ordering to the child Activity items displayed within the package browser, and if so, to what extent? Many thanks for any help!
The field Category is already constrained for each type, e.g. for "Customer Input": Now I want to further contrain the category by Project using a rule relationsship, e.g.: Now I assume, that when I have a Customer Input Document in the Recycle Bin project I can only see three categories (Capability, Comment, Heading), while in all other projects I see the full list. BUT: when I open a Customer Input Document in Recycle Bin I can still see the full list for the "New" item row: Anyway the constrain works when saving, that means I get an error when I choose for example the "Critical Success Factor" from the list. When I edit an existing item the pick list is shown as expected: The reason must be, that the new item will be assigned to the project only when saving this item. Before it doesn't have a project. Anyway, is there any possiblity to hide the categories that are not allowed in this document? Thanks, Timo
Hello all, I'm trying to work with the java api and I use the examples found on PTC_IntegrationsBuilderGuide_Integrity_11_2.pdf IntegrationPointFactory integrationPointFactory = IntegrationPointFactory.getInstance();try { IntegrationPoint integrationPoint = integrationPointFactory.createIntegrationPoint(hostName, port, APIVersion.API_4_16); Session session = integrationPoint.createNamedSession(null, null, userName, password); CmdRunner cmdRunner = session.createCmdRunner(); Command cmd = new Command(Command.SI, "about"); Response response = cmdRunner.execute(cmd); ... what is wrong in my test code ? Is the session correctly created ?
Looking for a better definition of the im createsolution [--[no]include Issues] command
Hi, I am trying to create a trigger that will take in a value from a field and convert it into a hyperlink and then send it back to the field in Integrity. For example, if a user inputted the value "Tree" into the integrity field, the trigger will take that value and convert it into a hyperlink for the following website: google.com/Tree. It will take this hyperlink and it will replace the value of the field to the newly created hyperlink. Similarly, if a user was to input the value "cat". It will create a hyperlink to the website: google.com/cat and replace the old field value with this hyperlink. Below, I have included a code that I have so far. It is able to take in the value from a field in Integrity and it will change the value into the link and send it back to that field. The only thing it is missing is creating the hyperlink itself so when I click on it, it will take me to this URL. &n
Hi Everyone, Urgent help required on this :- How to pass the parameter in Walk Query Section? Any help would be appreciable. Vielen Dank, Kapil Jain
Using the C# api ....I can use viewissue in the mksapiviewer and it shows that label information is available. However when I parse through the Workitems ....and then the fields I get to the field named MKSIssueLabels now I am unsure how to get to the mksItemList items foreach (WorkItem w in r.WorkItems) { foreach (IField f in w.Fields.Values) { if (f.Name == "MKSIssueLabels") { // Parse through the items in mksItemList ?? } } } Can someone point out how to do this?
I am trying to use the C# API to extract a table from a document. I have a felling it has to do with the fields:width:rich option but I am not getting that to work. What am I doing incorrectly...or is there a better way?
Hi, I had already installed the Integrity Client 11.0 and it was working fine, but today I tried to oppen it and I got the following error: "unable to establish loopback connection" Please see the attached file
Hi,we are using Integrity 10.8 .In Eclipse Luna the Toolbar in Eclipse looks like this:Starting with Eclipse Mars the Toolbar looks like this:Even more in the meantime I've got several instances shown in Eclipse in a workspace.As in another workspace only one instance is shown, where is the setting to reduce the instances back to 1?THX in advance.Dirk
I simply want to list all objects (queries, charts, reports) that reference my dashboards... Anyone!?
Hi everyone, I want to know if it's somehow possible to get custom Test Result fields into the output of im viewissue --showtestresults <test session ID> As of now I only get verdict and annotation back. But I would like to get a custom defined Test Result field like "Actual Result" as well.
Dear PTC, would it be possible to provide some transparency in your upcoming release schedule? - What is the current rough expected timeline for the new UI? - What about your new data reference model? Any chance to provide some information to customers BEFORE releasing the new UI? - Why is it so difficult for ILM to provide and deliver the same quality standards as other PTC tools: why do we have to ask specifically for the 12.0 What's new presentation when other tools (e.g. Modeler) are getting it automatically (see What's New in Integrity Modeler 8.5)? Our expectation (and the one from our users): As a customer we would expect more upcoming information for significant major releases of an enterprise product.
where are attachments stored in Integrity v10.3?
I've found that It is possible to edit a test step using the CLI with: tm editresult --stepVerdict="stepID=216:verdict=Passed" --sessionid=228 78. However when I try an equivalent command using the Java API I get an error: Could not save modified test result: Invalid step verdict value specified: "stepID=216:verdict=Passed" Can anyone please advise on the correct syntax to use within the Java API to perform this command? I'm using ILM version 12 server.
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.