Hi,
I have a field called Field9 which is a Keyword multivalue Text Field. The Keywords are dynamically generated. When I select from the dropdown list any values , the Field9 is not set withe the values selected. Please help
Here is the code,
‘ Initially I am setting the Field9 as blank
Set Field9 = New NotesItem(TempDoc, “Field9”, “”)
Set Field10 = New NotesItem(TempDoc, "ActualList", "")
‘ I am generating a dynamic list called “ActualList”
Set MyList = Note.GetFirstItem("FieldCode”)
Forall m In MyList.Values
If m <> "" Then
Call Field10.AppendToTextList(m)
End If
End Forall
The Field9 is a Keyword List with Formulaue as ActualList
If am selecting 2 values from the list it’s not setting the Field9 to the 2 values.
What do I do , to set the value , please help
I have a field called Field9 which is a Keyword multivalue Text Field. The Keywords are dynamically generated. When I select from the dropdown list any values , the Field9 is not set withe the values selected. Please help
Here is the code,
‘ Initially I am setting the Field9 as blank
Set Field9 = New NotesItem(TempDoc, “Field9”, “”)
Set Field10 = New NotesItem(TempDoc, "ActualList", "")
‘ I am generating a dynamic list called “ActualList”
Set MyList = Note.GetFirstItem("FieldCode”)
Forall m In MyList.Values
If m <> "" Then
Call Field10.AppendToTextList(m)
End If
End Forall
The Field9 is a Keyword List with Formulaue as ActualList
If am selecting 2 values from the list it’s not setting the Field9 to the 2 values.
What do I do , to set the value , please help