Skip to main content
1-Visitor
February 9, 2013
Solved

How to Edit Issue using Java API

  • February 9, 2013
  • 1 reply
  • 2102 views

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

    Best answer by matt_giltaji

    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

    1 reply

    1-Visitor
    February 11, 2013

    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