Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
Hi Team,
When editing an Issue manually, the existing contents in the field (its a longtext with logging disabled) will be visible in Edit mode.
But when using CLI command, i'm getting only the option to overwrite existing value.
Is there an option to add content to field ?
*I tried storing the current value to a temp variable, add my new contant to the temp and use that variable to edit field - but this is not working in batch script when field length is big.
Regards,
Arun
Solved! Go to Solution.
Hello Arun,
This functionality does not exist from the CLI for text fields. The easiest course you have is to first extract the content of the field(s) you will edit, then use that content in your edit. If I was going to do this sort of thing often, I would write a batch or shell script (depending on your OS) to expedite this.
Regards,
Kael
Hello Arun,
This functionality does not exist from the CLI for text fields. The easiest course you have is to first extract the content of the field(s) you will edit, then use that content in your edit. If I was going to do this sort of thing often, I would write a batch or shell script (depending on your OS) to expedite this.
Regards,
Kael
Thanks for the reply Kael.
I'm able to do this using batch file (using temp variable).
Regards,
Arun