I have just added a new computed field to a form. I have written an agent to pre-load all the appropriate values to existing documents but some of the documents are not showing the new field value in my views.Other details:
-
If I look at the document properties for a document where the value doesn’t show up in the view, the new field does NOT appear in the field list - the field DOES show up in the field list for documents where the view DOES show the value
-
If I manually open a document, edit, save&close, then the new field value shows up in the view
-
I have used an agent and determined the ITEM does exist and have a value in the documents where the value doesn’t show up in the view
-
New field is populated by using the following lotusscript:
txdoc.productgroup = var_productgroup
Call txdoc.computewithform(False, True)
Call txdoc.save(True, False, False)
Any suggestions?
Thanks