次のスクリプトは、主要文書のアイテムの値を返答文書のアイテムの値に基づいて計算します。ここでは、返答文書の total アイテムの値をすべて加算して、主要文書の total アイテムに代入する、という計算が行われます。スクリプトによる処理は 1 つの主要文書が終わると次の主要文書へ進み、返答文書も 1 つずつ処理していきます。[Main View] はカテゴリ別にソートされていません。Dim db As New NotesDatabase( "Cape-Town", "richardj.nsf" )
Dim view As NotesView
Dim parentDoc As NotesDocument
Dim responseDoc As NotesDocument
Set view = db.GetView( "Main View" )
Set parentDoc = view.GetFirstDocument
' Visit each main document in the view
While Not ( parentDoc Is Nothing )
newTotal% = 0
Set responseDoc = view.GetChild( parentDoc )
' Visit each of the parent's response documents
While Not ( responseDoc Is Nothing )
subtotal = responseDoc.GetItemValue( "total" )
newTotal% = newTotal% + Cint( subtotal( 0 ) )
Set responseDoc = view.GetNextSibling( responseDoc )
Wend
' Put the new total onto the parent document
Call parentDoc.ReplaceItemValue( "total", newTotal% )
Call parentDoc.Save( True, False )
Set parentDoc = view.GetNextSibling( parentDoc )
Wend