Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X
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
Solved! Go to Solution.
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
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