Hallo Zusammen,
wir würden gerne innerhalb einer Notes DB / Anwendung etwas einführen, das man als Historie sehen kann. Und zwar geht es im konkreten Fall um Hardware. Wer hatte welche Hardware, wann zugewiesen... Also ab welchem Datum.
Da Notes nicht relational ist, hatte ich folgende Überlegung, die ich einfach mal versucht habe umzusetzen... Und zwar dafür ein neues Form zu nehmen, welches Ref die DocUniqueID erhält.
Für jede Änderung wird ein neues Dokument angelegt, mit der ID als Referenz.
Dazu habe ich ins PostSave folgenden Code gebaut:
Sub Postsave(Source As Notesuidocument)
Dim DocUnID As NotesItem
Dim person As NotesItem
Dim Datum As NotesDateTime
Dim v As NotesView
Dim s As New NotesSession
Dim doc As NotesDocument
Dim db As NotesDatabase
Dim doc2 As NotesDocument
Dim composed1, composed2 As String
composed1 = Source.FieldGetText("DocUnID")
composed2 = Source.FieldGetText("person")
Set db = s.CurrentDatabase
Set v = db.GetView("nHist_Hardware")
Set doc = v.GetFirstDocument
Set Datum = doc.GetItemValue("HistHW_Datum")
Set doc2 = New NotesDocument(db)
While Not (doc Is Nothing)
If composed1 = doc.GetItemValue("HistHW_DocUnID") And Not Today() = Datum.DateOnly Then
Call doc2.AppendItemValue("HistHW_DocUnID", composed1)
Call doc2.AppendItemValue("HistHW_Name", composed2)
Call doc2.AppendItemValue("HistHW_Datum", Today())
End If
Wend
End Sub
Das Programm hängt sich allerdings, immer wieder hier auf:
Set Datum = doc.GetItemValue("HistHW_Datum")
Die Meldung ist Type Mismatch.
Nur verstehe ich den Grund nicht, mal abgesehehn davon, der Code vermutlich auch noch weiter fehlerhaft ist... Das Feld was abgefragt wird, ist ein Datumsfeld... Und Datum ist auch als NotesDateTime deklariert...
Hat da jemand eine Idee?
Das ist ein Punkt, da komme ich nicht weiter.
Falls jemand weitere Fehler sieht, bitte NICHT nennen.
Ein Satz wie, da sind weitere Fehler drin ist ok, aber bennent diese mal nicht.
Ich will das schon selber rauskriegen. Im Zweifel kann ich ja dann noch mal fragen.
Nur will ich versuchen meine Entwicklerfähigkeiten aufzubessern.
Nur bei dieser Datumssache da komme ich nicht dahinter...
Viele Grüße,
Thomas
Kein Fehler im eigentlichen Sinne, aber eine grosse Unsauberkeit, die man sich gar nicht erst angewöhnen sollte:
Dim composed1, composed2 As String
composed1 wird hier nicht explizit deklariert und wird daher Variant gesehen. Korrekt wäre
Dim composed1 As String, composed2 As String
Bernhard
Hallo,
super vielen Dank für die Hilfe...
@Andreas
Set Datum = wurde schon während der Code Eingabe rot hinterlegt mit dem Hinweis Type Mismatch. Mit der zweiten Möglichkeit hat es jetzt geklappt.
@Bernhard
Danke für die Info... Aber ich könnte schwöre, das ich genau diese Schreibweise aus der Designerhelp habe...
Der Code schaut jetzt so aus, funktioniert.
Ist trotzdem irgendwo noch was faul bzw. eine Unsauberkeit?
Sub Postsave(Source As Notesuidocument)
Dim DocUnID As NotesItem
Dim person As NotesItem
Dim Datum As Variant
Dim v As NotesView
Dim s As New NotesSession
Dim doc As NotesDocument
Dim db As NotesDatabase
Dim doc2 As NotesDocument
Dim composed1 As String, composed2 As String
composed1 = Source.FieldGetText("DocUnID")
composed2 = Source.FieldGetText("person")
Set db = s.CurrentDatabase
Set v = db.GetView("nHist_Hardware")
Set doc = v.GetFirstDocument
Datum = doc.GetItemValue("HistHW_Datum")
Set doc2 = New NotesDocument(db)
While Not (doc Is Nothing)
If composed1 = doc.GetItemValue("HistHW_DocUnID")(0) And composed2 <> doc.GetItemValue("HistHW_Name")(0) Then
Call doc2.AppendItemValue("Form", "Hardware_Historisierung")
Call doc2.AppendItemValue("HistHW_DocUnID", composed1)
Call doc2.AppendItemValue("HistHW_Name", composed2)
Call doc2.AppendItemValue("HistHW_Datum", Today())
Call doc2.Save(0,0)
End If
Set doc = v.GetNextDocument(doc)
Wend
End Sub
Danke.
Grüße,
Thomas
Hallo Zusammen,
ich habe jetzt noch mal weiter gemacht... Ich habe mich auch mal am Error Handling veruscht ala on Error Goto... Das klappt nur offenbar nicht, weil er eine Rückmeldung gibt:
Hardware: Postsave: 26: Illegal executable code oustide procedure.
Ich hatte mich bei der Angabe an dem verlinkten Thread orientiert...
Auf die Existenz der Objekte will ich Morgen mal zurückgreifen, sprich das mal versuchen...
Aber vielleicht kann man ja noch mal über das aktuelle Eregnis sprechen.
Da interessiert mich, kann man das so machen... Grundlegend falsch, solche Dinge eben.
Tipps zur Verbesserung...
Der Code so wie er jetzt ist, tut aber genau das was ich will... Das macht mich ja irgendwo trotzdem ein bisschen Stolz... ;D
Also so sieht das PostSave Event jetzt aus:
Sub Postsave(Source As Notesuidocument)
Dim v As NotesView
Dim s As New NotesSession
Dim doc As NotesDocument
Dim db As NotesDatabase
Dim doc2 As NotesDocument
Dim composed1 As String, composed2 As String, PersName As String
composed1 = Source.FieldGetText("DocUnID")
composed2 = Source.FieldGetText("person")
Set db = s.CurrentDatabase
Set v = db.GetView("nHist_Hardware")
Set doc = v.GetDocumentByKey(composed1)
Set doc2 = New NotesDocument(db)
PersName = getLastDocument(composed1)
If composed1 = doc.GetItemValue("HistHW_DocUnID")(0) And Strcomp(composed2, PersName) <> 0 Then
Call doc2.AppendItemValue("Form", "Hardware_Historisierung")
Call doc2.AppendItemValue("HistHW_DocUnID", composed1)
Call doc2.AppendItemValue("HistHW_Name", composed2)
Call doc2.AppendItemValue("HistHW_Datum", Today())
Call doc2.Save(0,0)
End If
End Sub
So sieht die Funktion getLastDocument aus:
Function getLastDocument(ID As String) As String
Dim v As NotesView
Dim s As New NotesSession
Dim doc As NotesDocument
Dim db As NotesDatabase
Dim NamePers As String
Set db = s.CurrentDatabase
Set v = db.GetView("nHist_Hardware")
Set doc = v.GetDocumentByKey(ID)
While Not (doc Is Nothing)
NamePers = doc.GetItemValue("HistHW_Name")(0)
Set doc = v.GetNextDocument(doc)
Wend
getLastDocument = NamePers
End Function
Gefühlt wäre diese Funktion unnötig... Da war natürlich auch Spielerei dabei und das eigene Training, was geht wie etc.
Bin auf Kommentare gespannt.
Viele Grüße,
Thomas
Lies es dir gerne mal durch... Ich habe es so verstanden. :)
Und dann eben für meine Zwecke so gebaut, wie ich dachte, das es sein muss...
Das es auch elegant geht, habe ich erst heute erfahren... ;)
This script gets all of the documents in the category "Spanish leather" in the By Category view of the current database, and puts them in the Boots folder. The script finds the first document in the category using GetDocumentByKey, and the remaining documents in the category using GetNextDocument. The script uses the ColumnValues property in NotesDocument to check each document's column values: as long as a document's value for the first sorted column in the view equals "Spanish leather," the script places the document in the Boots folder. If the document's value for the first sorted column does not equal "Spanish leather," or if there are no more documents in the view, the script ends.
See GetAllDocumentsByKey for an easier way to do this. The only advantage to this technique is that it correctly sets the ColumnValues property in the retrieved documents while GetAllDocumentsByKey does not.
Dim session As New NotesSession
Dim db As NotesDatabase
Dim view As NotesView
Dim column As NotesViewColumn
Dim doc As NotesDocument
Set db = session.CurrentDatabase
Set view = db.GetView( "By Category" )
' get the first sorted and categorized column in the view
Forall c In view.Columns
If ( c.IsSorted And c.IsCategory ) Then
Set column = c
Exit Forall
End If
End Forall
' get the first document that matches the key
Set doc = view.GetDocumentByKey( "Spanish leather" )
' get the remaining documents that match the key
' since ColumnValues array starts at 0 for position 1,
' subtract 1 from the column position
Do While Not ( doc Is Nothing )
If ( doc.ColumnValues( column.Position - 1 ) = _
"Spanish leather" ) Then
Call doc.PutInFolder( "Boots" )
Else
Exit Do
End If
Set doc = view.GetNextDocument( doc )
Loop