Recently active
I come from the Microsoft TFS world, and now i'm obviously working with Integrity. In TFS if you needed to setup CI for a branch you just created a build definition and linked it to the branch, and every time someone checked in a file a build would start. I see that Integrity seems to have a couple different branching concepts. One of these branch types is a build branch. What is this build branch and why would I want one?
I have a project that contains multiple modules, that are shared subprojects.We want to create our work environment like this:-create a build sandbox from a specific project checkpoint (release)-create a normal sandbox for the module - and do here the modification, then checkpoint the module.To compile the project, the module has to be inside it (it's not working with linked folder).Because we cannot configure the shared subproject to his Mainline, because the sandbox is build, we would like the create the module sandbox in the module location inside the build sandbox.Is there a way to do this? Or, do you have other ideas/solutions ?Thanks,Ana
Hi,I'm trying to print a list off all non-members within a sandbox into a textfile. I've tried 'si viewnonmembers' but got this error message in return:MKS124814: Cannot show view information: MKS125335: Out of tree members and subprojects (not located in the project directory or a subdirectory of the project directory) are not supported.The errormessage doesn't seem to fit my sandbox so I would be grateful if anyone has a clue what went wrong. By the way, if I am using the GUI (Sandbox -> Views -> view non-members) this works fine.Thanks!
Hi,I have written a code that is returning all Change Packages those are assigned to me and in 'Open' state. But my requirement is code should return all Change Packages those are assigned to me,in 'Open' state and issue type should be Change Request, Defect and/or Task only.Please help me with this.Code block: public Command getCommand() { Command cmd = new Command(); cmd.setApp(Command.SI); cmd.setCommandName("viewcps"); cmd.addOption(new Option("filter", "user:" + username)); cmd.addOption(new Option("filter", "state:" + "Open")); return cmd; } Generated command: si viewcps --filter=user:<userid> --filter=state:Open -- Kindly help.Thanks,Gajanan
I have an issue with usage of Parameter Values. When I enter a value for a specific item and then later go back to either modify the value or delete the parameter from the item, Integrity will not save the change and immediately reverts to the previous value when I refresh or select a different item. Does anyone know why this is happening and how I might solve this issue? The value is set within the item I have open and it is not a hierarchy issue.
I am developing a Java plugin using plugins provided by integrity to communicate with Integrity.I am able to connect to the server. I need some inputs regarding checkout process.I got the below code when I searched. But I am not sure what parameters do I need to pass for this method. configPath is either sandbox path or servers path?And please check the parameters mentioned whether I am giving the correct values or not?And In my code I am using first argument as Session instead of APISession. When Iam running it it is giving me the error “Error occurred when running command: si: MKS124819: Invalid option: "server"”. What are all the option values it accepts? Is it different for every command? Where can I found this information?Please suggest me If i can develop in a different way also. /** * Performs a checkout of this Integrity Source File to a working file location on the build server represented by
I would like to create a constraint on an item based on the linked child items.I have an item called "Project" that will have child items of "Task". Both of these items types have a state field and the same values like, "In Progress", "Ready For Review", "Complete", etc. What I want to do is keep the user from changing the "Project"/parent item state to the next state if all the "Task"/child items are not in the right or same state. Once all the tasks are set to the right state I would like to allow the project item state to advanced. So, is this possible, and if so could someone point me to the right docs?Visual example:(T1) Project State:In Progress Children: Task 1 State:In Progress Task 2 State:In Progress(T2) - Note that at this time the u
when working with the REST-API are field names case sensitive?If so, how do I find out the proper casing?byeT
I need to create an IM issue via rest-API.How do I find out which mandatory fields have been configured for a certain issue type?byeThomas
Hi All,is there any document that define how to use custom keywords in source code working file?The question behind that is the following:Could we return as a keyword in the source code the requirement that is implemented using this code?Thanks in advance,Jérôme
Hello community,how could I determine the version of the installed ALM Solution Template on my Integrity Server 10.6? The template was installed in October 2010 on an Integrity Server version 2005. TIAAlexander Sailer
GENERAL(5): Starting migration step from 12.101 to 12.102.SQL(5): ALTER TABLE Issues ADD RevisionIDMajor INTEGER: 1710MsSQL(5): ALTER TABLE Issues ADD RevisionIDMinor INTEGER: 1407MsSQL(5): ALTER TABLE Issues ADD LiveItemID INTEGER: 1522MsSQL(5): INSERT INTO Fields (ID, CreatedDate, ModifiedDate, CreatedUser, ModifiedUser, Name, Content, DataTypeID, DataSize, Active, MultiValue, StorageFormat, Flags, PairedField, TableNumber, BackingType, BackingTextField, TextTable) VALUES(?, GETDATE(), GETDATE(), ?, ?, ?, ?, ?, ?, 1, ?, 0, ?, ?, 0, null, null, ?) [-53,null,null,'Live Item ID',<473 bytes>,0,0,false,0,0,0]: 5msSQL(5): INSERT INTO Fields (ID, CreatedDate, ModifiedDate, CreatedUser, ModifiedUser, Name, Content, DataTypeID, DataSize, Active, MultiValue, StorageFormat, Flags, PairedField, TableNumber, BackingType, BackingTextField, TextTable) VALUES(?, GETDATE(), GETDATE(), ?, ?, ?, ?, ?, ?, 1, ?, 0, ?, ?, 0, null, null, ?) [-54,null,null,'Major Version ID',<416 bytes>,0,0,fals
Is it possible to determine the last used change package using the command line interface (si...)?Using "si viewcps" only lists the currently open change packages but doesn't give a hint which one has been used recently.The information itself must be stored somewhere because for example if I configure a subproject using CLI and a change package, also this change package gets preselected the next time I use the Integrity-GUI.Thank you for your help!Addendum: The person that posted this message used my email address to create his account on this community. I'm not very happy about it, so I've changed his account's password and hope that does not use my again in future. Additionally, I hope that PTC starts verifying email addresses before letting people create accounts.Message was edited by: The owner of the email address.
I need to determine the development path of a subproject that is currently configured as build. I already tried "si viewprojecthistory --rfilter=branch::current" to only focus on the current branch. When doing this in GUI, also "Development Path" and "Checkpoint Description" are being displayed for each checkpoint. But using the respective command in CLI, these fields are not being reported. Can I request this information using another si-command?
Hi All,We are using Integrity 10.6 and have identified Integrity CLI (Command Line Interface) for performance Testing of IntegrityActual integrity operations would be in batch files using CLI commandsWe are exploring as to how we can use load runner to add performance test flavor to these CLI batch scripts e.g. say running test concurrently by 200 users etcWe are trying to use following code in LoadRunner to run batch file from Load Runner:== Action(){char command[1024]; sprintf(command, "C:\\Users\\lb061.CED\\Desktop\\Integrity\\Time_Calculations.bat");system(command); return 0;} ==Problem with above approach is that whatever content present in Bat file the test always gets marked as passed as Load runner does not have a control of what is running in batch file.How can we integrate batch CLI with Loadrunner and achieve our goals.Which protocol from LoadRunner should we use for this.How are other customers are using CLI for performance testing of integrity?Appreciate any as
Hello,I have recently upgraded to the latest version of the eclipse integration of Integrity from MKS Integrity 2009 to PTC Integrity 10.6. After Installing the eclipse integration, I was expecting to see the Integrity trim in the bottom left corner of eclipse, but for some reason it is missing. What can cause this to not appear, and how can I get it to appear?edit: I noticed that it shows up with eclipse 3.X versions, but this isn't working for eclipse Juno 4.2 and Kepler 4.3
Can we integrate oxygenXML editor with Integrity?
I want to prevent that an Item can be associated with a Change Package before the Item is saved, so Change Package -> Create... should be disabled. I first tried to make a mandatory field inaccessible when the condition !(ID>0) AND SICPCount()>0, but unfortunately this is an external information function and can't be used to limit the editability or relevance of a field. Are there any possibilities to do this beside using a trigger script?Thanks!Stephan Knopp
Hello,We are using oxygenXML Editor 16.2 to work with xml and xslt's.And Integrity tool for version controlling.Now I would like to Know how we can integrate both.Could you please let me know are there any existing feature available?If not, How we can achieve this?Please help me.
How do I access the "Test Result Modified Date" value from a trigger? The value I'm referring to is in the below image.
Hi all,how we can install seat licenses for integrity?The users of seat licenses are defined in the <Integrity Server>/config/properties/is.properties file, but where we install the seat licenses?thxBernd
We are still using the MKS Integrity 2009, Build 4.10.0.9665 version (Client + Web interfaces). I wanted to ask the community if they new how to delete the User history which gets stored against a User profile seperately for Web & Client.Example I run a query on Web interface and close the browser. Then when I login back either same day or some other day, MKS runs last query I ran and shows me the result. How do I clear this user session.One of our users tried running a very complex query and it timed out and now every time they try to open the Web MKS the page does not render.
Since the home directory is shared between the unix servers, when i try to launch the client from one server while the client is opened with another server. Its throwing an error which says the client is already open.I have a scenario that i need to connect from different servers simultaneously. Can someone please help me to setup the client to open in different servers simultaneously
Dear community,I would like to get a better understanding about the triggers in integrity and javascript. The reference I have found: Class LocalTriggerManager. I started to read the available triggers. I would like to do it well and not too much time dealing with selflearning; I would like to back myself with a good book could you please suggest me a good one? I’ve checked several but all most of them are specialized to web-development. But I need the "How to programming in Java Script - Developing Integrity Triggers" unfortunately I have not found it on amazon I am using often script languages like python or dxl.
Hi,I have created the schedule trigger, which will update few fields on items given through query.But while I ran schedule trigger. I got error as on item ID: 12345 have mandatory fields which are not filled which will abort transaction.Is there any way skip such item having mandatory fields and going through other item ?I have tried with adding try catch block but still its aborting by giving mention error.Please suggest me.
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.