How to append value to a computed when composed field

I have a computed when composed field how can i append text to it.Whether it is possible or not when i am trying to do that it is giving error as field cannot be edited.Any other solution is there for this.Please help me out regarding this.

Subject: How to append value to a computed when composed field

You could change the field value in back-end Document.

NotesDocument.FieldName = value

Regards

Litty Joseph

Subject: RE: How to append value to a computed when composed field

This any good?

Call item.AppendToTextList( “Your text”)

Call doc.computeWithForm(True,True)

Call doc.save(True,False)

Subject: How to append value to a computed when composed field

Could you be more specific? Is it a multivalue field that you are trying to add values to (like a Reader or Author field) - what is the code- post it so we might have a better idea.Tom