Community Tip - Need to share some code when posting a question or reply? Make sure to use the "Insert code sample" menu option. Learn more! X

Translate the entire conversation x

im issue CLI command string works in cmd line not with Python sub process

SS_10728259
4-Participant

im issue CLI command string works in cmd line not with Python sub process

Hi Team,

 

 

Following im issue CLI command string works in cmd line not with Python sub process :

CLI Command works in CMDLine:
im issues --queryDefinition='((field["Project"]="/L2H0090") and (field["Document ID"]="11601660") and (field["Status_fld"]="reviewed","released","approved") and (field["Category"]="Software Test") and (field["External ID"]contains"Fully_Automated"))'

 

 

import subprocess

string = "im issues --queryDefinition="+'((field["Project"]="/L2H0090") and (field["Document ID"]="11601660") and (field["Status_fld"]="reviewed","released","approved") and (field["Category"]="Software Test") and (field["External ID"]contains"Fully_Automated"))'
try:
    result = subprocess.check_output(string)
    print(result)
except subprocess.CalledProcessError as e:
    print(e.output)

 

 

 

Its showing below error:

 

 

 

*** The query and queryDefinition options are incompatible with an issue selection.

 

 

 

Please support here to get correct command string which shall work in python as well.

Thanks in advance.

 

1 REPLY 1

Article - "How to define a "query definition" that contains a field with spaces via CLI in Windchill RV&S": https://www.ptc.com/en/support/article/CS153138

Announcements

Top Tags