cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Visit the PTCooler (the community lounge) to get to know your fellow community members and check out some of Dale's Friday Humor posts! X

How to Edit Issue using Java API

Bhaskar
1-Newbie

How to Edit Issue using Java API

I'm new to this PTC Integrity tool and in a learning phase. I'm trying to Edit Issue using - Java API but unable to Edit.

While executing the "editissue" command i'm getting errors.

Code example:

Command cmd = new Command(Command.IM, "editissue");

cmd.addOption(new Option("issue id", "616849"));

cmd.addOption(new Option("field", "Document Title=XXXXXXX"));

Errors:

1. This command requires operands: issue id (or)

2. Invalid option: "issue id"

How to supply the Operand "issue id" to the above IM command "editissue".

Would appreciate any suggestions.

Thanks

Bhaskar

1 ACCEPTED SOLUTION

Accepted Solutions

When it says operand, it really means add a "selection".

I would try using cmd.addSelection("616849"); instead of cmd.addOption(new Option("issue id", "616849"));

This should resolve the missing operand as well as the invalid option.

Matt

View solution in original post

1 REPLY 1

When it says operand, it really means add a "selection".

I would try using cmd.addSelection("616849"); instead of cmd.addOption(new Option("issue id", "616849"));

This should resolve the missing operand as well as the invalid option.

Matt

Top Tags