Quantcast
Channel: PTC Community : Popular Discussions - Integrity
Viewing all 3432 articles
Browse latest View live

We need PTC R&D and Product Management to monitor this site and contibute

$
0
0

As far as I can tell, only a few individuals from PTC Support sometimes respond to questions. Without more active contributions from the product experts, there are lots of questions that are left unanswered or partially answered. We, clients, are left to support each other as best as we can by volunteering our time. I do contribute answers when I can, but I have never received a single answer to my own questions posted here. As a result, I end up contacting Support directly, but this is not helping our community as a whole.

I think more proactive involvement from PTC is needed here.


MKS command automation Python

$
0
0

Hi,

I am trying to automate MKS commands using python. Please help me to capture the error message.

 

Example:

import subprocess

import time

viewproject_cmd='im issues'
proc = subprocess.Popen(viewproject_cmd,stdout=subprocess.PIPE,shell=True)

(out, err) = proc.communicate()

 

The above script is throwing me following error,

*** MKS124814: Cannot show view information: MKS124808: This command requires operands: item id

 

I am unable to capture the above error in any variable. Also I see this error only if I execute the above python script in the cmd.exe

 

Please help me to handle the above error in python script itself.

indicating staging system

$
0
0

I would like to define a background colour in the Integrity LM client for users working on the DEV system of our staging environment.

this colour must be controlled by the server - as the the user(s) could also connect to the PROD system > where the colour should be the default colour.

 

the idea is to prevent "test users" from creating productive data on a non-productive system.

 

I m aware of the lower right corner section where the users could see to which system they are connected > but unfortunately they do not realise what they see .... or just ignore it

Integration of MKS into MATLAB Simulink

$
0
0

Hi,

 

I'm a student from germany working on the integration of MKS into MATLAB Simulink. Via google I found out that there is a possibility to directly link Simulink Blocks to requirements in MKS, but it seems there is an addin or something similar needed (called mksmathworks.exe), to accomplish this integration. My Version of MATLAB meets all the requirements mentioned in this document

ftp://ftp.mks.com/pub/support/integritysoln2009/integrations/Mathworks/readme.htm

and I'm owning a full license of MKS Integrity 2009.

Is there anybody who can tell me how to conduct this integration of MKS into MATLAB and where I can get this mksmathworks.exe, mentioned in the link above.

 

Many thanks in advance

 

Niklas

What are the Software components required to install Integrity Lifecycle Manager and Integrate it with Windchill.

$
0
0

What are the Software components required to install Integrity Lifecycle Manager and Integrate it with Windchill?

QUSRNOMAX Job Queue

$
0
0

We have noticed that the QUSRNOMAX Queue has 141 Jobs in it.

There are only two unique Jobs in there

Opt     Job            User           Number     Priority     Status    

         M30005         MWIPROD        127801        5          RLS      

         QSCLICEV       QUSER          127827        5          RLS     

The only difference is in the "Number" Field.

 

Our questions are: What are those jobs and Do they have to run? And If not how can we stop them from getting submitted?

 

Thank you,

Thomas Cusick

Program Analyst

Shop Vac Corporation

E-MAIL: TCusick@shopvac.com

http://www.shopvac.com

SHA-1: Insecure hash encryption

$
0
0

During the Security session at a large customer of ours, one of their questions was if we’re going to introduce SHA-256 support for hash encryption for salted and hash passwords in MKS Domains since MKS Domains are here to say for a while? Today it appears that Integrity's MKS Domains still use insecure SHA-1 hash encryption...

Hello, need help to get Block Diagrams started

$
0
0

Hi,

 

    I am a standalone party that is doing independent research.


    I just started the Integrity Modeler and I find that I am unable to create or enter information into Block Diagrams.

Under SysML, I am trying to start building up some Block Definition Diagrams and Internal Block Diagrams.

However, the app will not accept my input.


   I just installed (I believe) the application, after a 30 day trial period.


   If there something I need to do first to get my block diagrams, or some action I need to take, I'd

like guidance on this. I'd like to know if there is something I need to do first.


   When I had No-Magic I just dragged a block over, labeled it, and the system obeyed.


   Now, the system doesn't seem to do anything.@


   Please respond also to jsparbear5@gmail.com


V/r  Joshua H. Sparber


Is it possible to edit group name that once created in MKS Domain Groups with Integrity admin client?Thanks in advance.

$
0
0

Is it possible to edit group name that once created  in MKS Domain Groups with Integrity admin client?Thanks in advance.

What are the Software components required to install Integrity Lifecycle Manager and Integrate it with Windchill.

$
0
0

What are the Software components required to install Integrity Lifecycle Manager and Integrate it with Windchill?

Error in RQ createcontent command

$
0
0

Hello Community,

 

I have one doubt in RQ command.

 

I tried "RQ createcontent" command in command line with the below syntax but it shows error.

 

""RQ createcontent --type=ALM_specification --parentID=3654306 --richContentField='ALM_Text=sample' --addRelationships="Validated By:"3491362(I found the error in --addRelationships)""

 

 

could you please tell me how to execute this command properly.

Locked revision changes after Resynchronize

$
0
0

Hi all,

we just observed a strange behaviour in Integrity Source 10.5:

When checking out an older non-member-revision (working file refers to that older revision) and then performing a resynchronize, the working file is replaced with the member revision (okay) AND the lock is changed to the member revision.

This does not seem to be okay.

Is this already known and possibly corrected in > 10.5?

 

Regards, Stephan

Does anybody have experience in upgrading SQLServer ?

$
0
0

I have to upgrade Intergrity 9.6 to Integrity 10.9. Therefore also MS SQLServer has to be upgraded, too (without losing any Integrity data).

Especially I need to upgrade from SQLServer 2005 to SQLServer 2008 and then from SQLServer 2008 to SQLServer 2012.

 

Does anybody have experiences in this area ?

 

Thanks,

Peter

Getting results from CLI command inside a script

$
0
0

Hi,

 

i want to get the email address from a user inside a trigger script using the Integrity API. I've used mksapiviewer --iplocal im users --fields=email USERNAME to check if there is an output at all and it returned a response including a work item containing the field "Value" where the address is stored. I've tried

 

var eb = bsf.lookupBean("siEnvironmentBean");

var apibean = eb.createAPISessionBean();

 

var command = new Packages.com.mks.api.Command("im", "users");

command.addOption(new Packages.com.mks.api.Option("fields", "email");

command.addSelection(USERNAME);

 

var response = apibean.executeCmd(command);

var workitems = response.getWorkItems();

 

while(workitems.hasNext()){

 

   var thisItem = workitems.next();

   var val = thisItem.getField("Value");

 

}

 

Somewhere has to be a mistake since i get a NoSuchElementException: Value

 

Does somebody have an idea where the problem is??

 

Thanks!

Is there a command-line method for adding and removing users from a group?

$
0
0

Can someone confirm whether or not there is command-line method for adding users to, and removing users from, a group?

 

If there is, can the syntax, an example, or reference to the documentation be provided, as well?

 

Kind regards,

-Sean


Hi, Kindly support me to create realization order from release type id

$
0
0

Release id:

========

ReleaseID.JPG++

 

 

Capture.JPG

 

In this release id, I want to create Realization order under "Outgoing" via CLI

how to create relateditem with mks

$
0
0

Hallo,

 

i have a problem to create a SW-Subtask with im createissue.

 

I use the following commandline:

(1) im createissue --Field="Project=/XX/YY" --Field="SWI=ZZ" --Field="Summary='my summary" --Field="Assigned User=me" --type=SW-Subtask --Field="Observer=he"

 

 

Creating SW-Subtask ...

Editing fields ...

Submitting ...

Could not save item: Cannot change the state to IMPLEMENTATION:

There's no parent of type SW-Task.

 

Then i used the following commandline:

(2) im createissue --Field="Project=/XX/YY" --Field="SWI=ZZ" --Field="Summary='my summary" --Field="Assigned User=me" --type=SW-Subtask --Field="Observer=he" --Field="parent=196" (196 is the parent workitem ID)

 

I got :

 

Creating SW-Subtask ...

Editing fields ...

Submitting ...

Could not save item: bitIndex < 0: -951

 

Could you please provide to me the correct solution to create a workitem with a predifined parent?

 

Thanks and regards

Miled Attia

How to put Image into a RichTextField?

$
0
0

Hi @all

I want to put Image into a RichTextField using CLI (im createcontent)

 

Thanks

How to remove all relationships with CLI

$
0
0

How to remove ALL relationships using CLI

after the CS151525 it would be easy, but I have to define the issueid as well

 

e.g.: > im editissue --query="DocID247485_HasValidates" --removeRelationships=Validates:*

 

*: does not work. I have to define it explicitly, haven't I?

I tired the > im editissue --query="DocID247485_HasValidates" --removeRelationships=Validates, but wo luck

 

Environmenrt:

I am using integrity 10.4.

 

Why:

There was a test document imported using validates (validated by) realtionship to the requirements, but meanwhile was defined not to use validates (validated by) but verifies (verified by) as relationship between test and requirement documents

 

thanks in advance for your help

Paste Special - Include Traces

$
0
0

pasteSpecialIncludeTraces.png

When using Paste Special and checking Include Traces, it doesn't seem to actually include the traces. What is required for this to work? I tried setting those relationship fields to by Copy Fields but then you can't copy without including the traces. I'm using Integrity 10.7.

Viewing all 3432 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>