Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need help Notes Item in Lotus Script

Status
Not open for further replies.

achot

Programmer
May 23, 2004
1
US
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top