Recently active
The pj-file in every PTC Integrity subproject stores some information about the contained members, also the current working revision checked out for a member. Is ther an si command to access this information without server communication?When the information stored in the pj-file could be accessed without server communication, then it would be independent if the current directory is within a registered sandbox. (see Get associated sandbox from a subproject within a SUBSTituted drive)
wenn i try to export a document to word, integrity insert a new line between 2 fields.My word template look like this:...<%elseif {Category} == "Information"%>[<%{Section}%>]<%{Text}%> <%else%>....and the result are:[5.1]The development ...I want to have all in one line... but i don't know how... can you help me?
Hi @all,for the abortScript()-function in the ScirptEnvironmentBean you can give two parameters: "msg", the message which will pop at the user client and "veto", a boolean. If veto is set to true the actual trigger-operation will be cancelled. If veto is set to false the operation doesnt stop. So far so good. But if veto is set to false the msg will also not popup at the user client. Why? And for which reason i need a boolean if it has only one function and the other setting is meaningless? kind regards, Jens
Hello,i have a question. Could I convert extrudes from a normal volume part to a sheet, without having to construct again the sketch?Thanks a lot.Greetings,Edna
Hi...How do we include our own JavaScript code within the WebClient? We have some functionality that we need to build to extend the UI beyond what the Presentation Templates can provide. We can get everything done that we need to if we can #1) include our own JavaScript functions in the HTML pages that are sent to the client, and #2) invoke that JavaScript from the elements that we can create in Rich Content fields. We know about, and will manage on our own, any of the cross-browser JavaScript incompatibilities.Example:var experiment = "<!-- MKS HTML --><script type=\"text/javascript\">function clicked(){ alert(\"hi mom\");}</script><button onclick()=\"clicked()\">Testing</button>"; delta.setFieldValue("Test Result Rollup", experiment);The button shows up, but it is not responding to the click event.For us, this will shortly become a very important thing to be able to do. The reason is that the capability of the current Integrity User Interface that is bas
HiWe want to run a query after running the query in the resultset I to show some items in different colors.Can I do this ?For example :I want to Run all "Requirements Query" and to see all the records at the same time I want the Completed Requirements Should Show in Red (or any other color) or Background color should be red or Text color should be red like this I want to differ the item.
I am having difficulty promoting an SQL CTE through Implementor. The error I get indicates that the temporary table name immediately following the WITH predicate cannot be found on the target environment. But of course in an SQL CTE this table is not intended to be a permanent object and won't be found anywhere but in the statement itself. I can compile and use this view in my local library but I have not been able to promote this view in Implementor.Does someone have some experience in this area that might have a solution for me?The version of Implementor is 10.3.The following is the the error I get from the joblog. The name of the temporary table is in bold below.30 10/06/14 15:35:44.654703 SSSDMG SDMIM 017E IMPRDR To module . . . . . . . . . : IMPRDR To procedure . . . . . . . : IMPRDR Statement . . . . . . . . . : 6738 Message . . . . : Physical file TSDEACTMGT for logical file TSDEACTMV1 was not found in the WERTMSDEV environment library list. Cause . . . . . : Unable to loca
I have run into an issue, I want to add 3 new columns to my sql table and when I compile it in my local library the table and views all create correctly, however when I promote my table and views to QA I get an error from implementers ALTER table statement....ADD COLUMN MY_FIRST_NEW_FIELD FOR COLUMN MFNFLD CHAR (1) CCSID 500 WITH DEFAULT 'N' NOT NULL BEFORE MSNFLDADD COLUMN MY_SECOND_NEW_FIELD FOR COLUMN MSNFLD CHAR (1) CCSID 500 WITH DEFAULT 'N' NOT NULL BEFORE MTNFLD...I am adding the columns to the middle of the create table script and it seems like the implementer ALTER TABLE is unable to handle 3 new fields in the middle of the table.MSG ID SEV RECORD TEXT SQL0205 30 1 Position 1 Column MSNFLD not in table MYTABLE in IMB275S. The error suggests that implementer is trying to add the first new field before the second new field...before the second new field is created.HELP? Anyone run into this?
Hi,Is there is any way to auto sync the sandbox from a specific location?Regards,Shankar
Hi,Is anyone know how to create a query for multi level relationshipFor Eg:Level : 1 Level : 2 (related Item) Level : 3 (related Item) Level : 4 (related Item)How to retrive the list of Level 4 items from Level 1 (Using ID) from a Query?Regards,Shankar
Hi,Can someone provide a script example that reads properties from the 'MKS Solution' item type? We have the need to add some of our own global properties that would alter some of the conditional-logic in our scripts. The 'MKS Solution' is a singleton and already has many properties that apply to the entire solution. So it seems like using our own custom properties in the the 'MKS Solution' would best fit the design/architecture that exists.In addition, could these properties be updated from script? For an application like this, we would make use of some 'lazy initialization" logic in our scripts to handle the situations where these properties might be missing (like during an upgrade to a new version of Integrity).-Sean
HelloI am looking for a CLI command to open a file in the sandbox view with the file selected.The command "si viewsandbox --gui" opens the sandbox view but I could not find a way to get a specific file selected with all the other files visible.si viewsandbox --gui $file will only display $file.The option --selectionFile seems not to work.Many thanksKind RegardsThierry
Hi,Anyone know how to find the list of changepackages made between checkpointsEg: Need to identify the changepackage made between 1.3 to 1.4 ?Regards,Shankar
Hi,I have an issue regarding the xmlapi option.My problem is that using the option --xmlapi with the CLI or using com.mks.connect.AbstractCmdRunner.executeWithXML(String[] cmd) with the java API gives different output for the node Response//WorkItems//WorkItem//Field//ValueWhile the CLI has an additional node TokenValue containing the value of the "Value", the java API gives the value as part of the Value node.Example:<Field name="projectType"> <Value dataType="string"> <TokenValue>Variant</TokenValue> </Value> </Field> vs.<Field name="projectType"> <Value dataType="string">Variant</Value> </Field>I wonder if one of you has an explanation - or even better a solution to align both outputs to whatever version.This example is part of result from si sandboxinfo --xmlapiVeikko
Is there an integrity command or script that would check if any files/members are not merged to a target branch ? So i would give it 2 parameters - a source branch and a target branch.the script would produce a list of files from the source branch with the their versions that were not merged to the target branch.
I was wondering if anyone had used Jenkins as a Continuous Integration server. And if anyone had some pointers on getting the workspace to populate with the files out of MKS. Thanks,Jim
Hi,I would like to know if there is a way to obtain all the test steps of a test suite in XML format ? Indeed, at the moment I could only have the "level 1" of test cases of a test suite by using : im viewissue --xmlapi itemTestSuiteID and then if I do the same on a test case I got the list of test steps. But is there a way to do it directly ? If not, is there somewhere a doc to explain how to create an xml template understable by integrity such as the DOCX File Export Support here http://www.mks.com/support/productinfo/docs/GatewayUserGuide.pdf page 75 ?And if you have any better idea I am ready to hear it Thank you,Nicolas
Hello,We need to find the author of drop member operations using CLI.We tried to use "si mods" but the result shows the members and I get the CPs but I cannot match the dropped member with the CP used for the drop operation on that member.>si mods --fields=change,name --showMemberChanges --showAttrChanges --showChangePackages --project=/xxx/yyy/project.pj --yesWe also tried:>si viewsandbox --includeDropped --sandbox=d:\test_xxx\project.pjBut the result does not show me the author.Any hints on this?Thank youCristina
Hello, Has anyone discovered a way to redirect the ouput from the CLI to a log file? I would like to redirect the ID and/or any errors from the command window to a text file that can be viewed at a later time. I have tried "im createissue .... >log.txt" with no results entered in the txt file.Thank You,Paul
Hi,Can someone provide an example of the 'im editfield' command that sets the set of a pick field from active to inactive?I have tried the following, and a few variations, without success.:im editfield --picks="value=9,Inactive" "my test field"Our ultimate intent is coding this in a script. So an example in JavaScript that's invoked by a manual trigger would be even better.-Sean
Hi all,I want to log label moving in Configuration Management, but I only see events for addLabel and deleteLabel.I suppose that the movel label is a concatenation of those two actions. But then the question is how can I distinguish between a normal add label and a move label operation?Veikko
Due to path length issues we have a substituted drive - subst of Microsoft Windows command line - for building our SW. Now I have to extract some information from PTC Integrity for the source files during the build. But as the substituted drive is no sandbox within PTC Integrity I cannot use the si command directly on the file on the build drive.Is there a way to identify the associated sandbox, e.g. via the pj-file? I'd like to use an si CLI command and avoid external commands to identify the containing sandbox - like extracting the directory from the subst information - as this would be "guessing" and the subproject of PTC Integrity should "know" in which sandbox it was synchronized in.The reason why I'd like not to use external commands is because ther is no guarantee that the subst was made from the sandbox known to PTC Integrity, the subst could also be issued on an already substituted drive. Here's an example to show it more clearly.(1) Sandbox folder location - each user has its
I am trying to create mulitple triggers via the command line and I'm have one minor problem. The Rule is created, but the field picklist 02 should be "New Value" because I used and apostrophe (') and when I view it in the GUI client it is not.The im command that I used:im createtrigger --hostname=myhost --name="Trigger Name 01" --assign="picklist 01=" --rule=((field'[picklist 02] = "No") and (field[picklist 03] != "No"))The trigger rule in the GUI client shows this: and|+--picklist 02 = No|+--picklist 03 != NoWhat I want is this from my im createtrigger script: and|+--picklist 02[New Value] = No|+--picklist 03 != NoThank you
I seem to recall there being a way to double click on a document, and not have it open the Item View. Am I remembering correctly, and if so where do I set the setting.I have looked in several locations, and can't seem to find any options supporting. Currently using the Integrity 10.3 client.
Hi @all,we're working with a proxy for source, because the main integrity server is located at the other side of germany , and most of the time we have a performance gain of 100%. So far so good. But sometimes the proxy is not reachable, and then we have to let all users change their client configuration, because the client does not do an automatic fallback, if the proxy doesnt work. Is there any possibility to avoid that we have to ask the users to change the config themselve? Of course the real solution should be that the client IS DOING a fallback, but until this feature is built in we need a workaround.kind regards, Jens
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.