Beiträge von sperri1

    Hallo Leute,


    ich habe eine Script in eine DB eingebunden, der die View "By Product" in ein Excelsheet exportiert. Der Agent wird über das Action Menü aktiviert. Das klappt auch soweit ohne Problem.
    Sollten jetzt aber in einem Feld Mehrfachwerte vorhanden sein, die durch Komma getrennt sind, dann bekomm ich nur den ersten Wert bis zum Komma exportiert und der Rest fehlt.
    Habt ihr ne Idee an was das liegen könnte?


    Dank euch



    Hier der Script:


    Sub Initialize
    Dim xlApp As Variant
    Dim xlSheet As Variant
    Dim Session As New NotesSession
    Dim View As NotesView
    Dim doc As NotesDocument

    Set xlApp = CreateObject("Excel.application")

    xlApp.StatusBar = "WorkSheet wird erstellt. Bitte warten..."
    xlApp.Visible = True
    xlApp.Workbooks.Add
    xlApp.ReferenceStyle = 2

    Set xlSheet = xlApp.Workbooks(1).Worksheets(1)
    xlsheet.Name = "Excel Druckvorlage"

    ' Ueberschriften

    With xlSheet
    .range("A1").Value = "Area"
    .range("B1").Value = "Action"
    .range("C1").Value = "DueDate"
    .range("D1").Value = "Status"
    .range("E1").Value = "Result"
    End With

    ' Formatierung

    With xlapp
    .Columns("A:E").select
    .Rows("1:1").select
    .Selection.font.bold=True
    .Columns("A:A").Select
    .Selection.ColumnWidth = 20
    .Columns("B:B").Select
    .Selection.ColumnWidth = 60
    .Columns("C:D").Select
    .Selection.ColumnWidth = 10
    .Columns("E:E").Select
    .Selection.ColumnWidth = 170
    .Range("A1:E1").Select
    .Range("A1:E1").Activate
    .Selection.Borders(5).LineStyle = -4142
    .Selection.Borders(6).LineStyle = -4142
    .Selection.Borders(7).LineStyle = -4142
    .Selection.Borders(8).LineStyle = -4142
    .Selection.Borders(9).LineStyle = 1
    .Selection.Borders(9).Weight = -4138
    .Selection.Borders(9).ColorIndex = -4105
    .Selection.Borders(10).LineStyle = -4142
    .Selection.Borders(12).LineStyle = -4142
    End With


    Set View = Session.CurrentDatabase.GetView("By Product")
    Set Doc = View.GetFirstDocument
    i = 0
    While Not (Doc Is Nothing)
    With xlSheet
    .range("A" + Cstr(i + 2)).Value = doc.Area(0)
    .range("B" + Cstr(i + 2)).Value = doc.Experiment(0)
    .range("C" + Cstr(i + 2)).Value = doc.DueDate(0)
    .range("D" + Cstr(i + 2)).Value = doc.Status(0)
    .range("E" + Cstr(i + 2)).Value = doc.Result(0)

    End With
    i = i + 1
    Set doc = View.GetNextDocument(doc)
    Wend
    End Sub

    Danke für die ausführliche Beschreibung aber wir wollen den Domino nicht ins offene Netz hängen.


    Weiß jemand ob der Dominoserver vom Mailserver alle Postkonten abholen kann oder ob das jeder Notes Client selber machen muss? Die Größenordnung liegt so bei ca. 50 Postfächern.


    Dank euch

    Hallo Leute,


    hab mal ne Frage zum Handling des Domino in bezug auf Mailserver.


    Ich will einen Mailserver aufsetzen der alle nach extern gehenden Mails versendet und bei dem alle von extern kommenden Mail ankommen.
    Kann ich jetzt mit dem Domino alle Postfächer vom Mailserver abholen oder muss dann jeder Client selber auf den Mailserver zugreifen?


    Danke


    Gruß Chris

    noch mal ganz kurz,
    wie frag ich denn einen carriage return ab?
    Weil "\r" klappt nicht.
    Gibt es da noch ne andere Möglichkeit, dass in dem Feld bei einem Zeilenumbruch ein Fehlermeldung kommt?


    Danke

    Hallo Leute,


    ich möchte gern ein Feld auf Umlaute und Enter Returns überprüfen. Weiß allerdings nicht mit welchen befehl ich das überprüfen kann.
    Wollte die Abfrage in QuerySave packen.


    Könnt ihr mir da helfen?


    Danke Chris

    Hallo Leute,


    hat von euch schon jemand Erfahrungen mit der Verbindung eines Domino 7 mit einer DB2 gesammelt.


    Ich wollte das mal probieren häng da jetzt bei dem IBM DB2 Access for Lotus Domino.
    So wie ich das mitbekommen hab ist das noch eine Testsoftware.


    Gibt es das noch andere Möglichkeiten Daten aus einer Notes DB in eine DB2 zu schreiben oder DB2 Daten in Notes zur Verfügung zu stellen? Oder brauch ich dafür den DB2 Zugriffsserver?



    Gruß Chris

    Hallo Leute,


    ich habe eine Maske "Monat" und eine View "Arbeitszeit". In der View Arbeitszeit soll jeder Mitarbeiter nur seine Arbeitszeiten sehen.
    Also er soll in der View nur die Dokumente sehen dürfen, wo sein Name drin steht.


    Hab das schon mal so probiert:
    SELECT @If(DisplayMitarbeiter=@Name([CN];@UserName); (Form = "Monat");"")


    Hat aber nicht ganz gepasst.


    Habt ihr ne Idee wie ich das lösen kann?


    Danke


    Gruß Chris

    wenn ich ihn starte kommt folgendes und das wars.


    nadom@domino:~$ cd /local/notesdata/
    nadom@domino:/local/notesdata$ /opt/lotus/bin/server


    Lotus Domino (r) Server, Release 7.0, August 18, 2005
    Copyright (c) IBM Corporation 1987, 2005. All Rights Reserved.


    /opt/lotus/notes/latest/linux/nsd.sh: line 1: /bin/gawk: No such file or directory
    /opt/lotus/notes/latest/linux/nsd.sh: line 1: /bin/gawk: No such file or directory
    /opt/lotus/notes/latest/linux/nsd.sh: line 1: /bin/gawk: No such file or directory
    10.08.2006 03:56:27 PM Begin scan of databases to be consistency checked
    10.08.2006 03:56:27 PM End scan of databases: 2 found
    10.08.2006 03:56:28 PM Event Monitor started
    10.08.2006 03:56:28 PM Server started on physical node domino
    10.08.2006 03:56:28 PM The Console file is /local/notesdata/IBM_TECHNICAL_SUPPORT/console.log
    10.08.2006 03:56:28 PM Console Logging is ENABLED
    10.08.2006 03:56:29 PM This linux kernel does not have the required epoll I/O readiness notification facility.
    10.08.2006 03:56:29 PM Listener task exited: Failed to create an IOCP port
    10.08.2006 03:56:29 PM Database Server started
    > 10.08.2006 03:56:31 PM Calendar Connector started
    10.08.2006 03:56:31 PM Database Replicator started
    10.08.2006 03:56:31 PM Replicator is set to Ignore Database Quotas
    10.08.2006 03:56:31 PM Performing consistency check on ddm.nsf...
    10.08.2006 03:56:31 PM Rooms and Resources Manager started
    10.08.2006 03:56:31 PM Schedule Manager started
    10.08.2006 03:56:31 PM Index update process started
    10.08.2006 03:56:31 PM Admin Process: naomi05/sensitec-naomi is the Administration Server of the Domino Directory.
    10.08.2006 03:56:31 PM Performing consistency check on admin4.nsf...
    10.08.2006 03:56:31 PM RnRMgr: Informational: Schedule Manager is responsible for the busytime database on this server.
    10.08.2006 03:56:31 PM Completed consistency check on admin4.nsf
    10.08.2006 03:56:31 PM SchedMgr: Informational: Schedule Manager is responsible for the busytime database on this server.
    10.08.2006 03:56:31 PM Schedule Manager: Informational: Detailed schedule information collection is not enabled via the domain-wide Server Configuration document.
    10.08.2006 03:56:31 PM SchedMgr: Validating schedule database
    10.08.2006 03:56:31 PM Rooms and Resources Manager: Informational: Detailed schedule information collection is not enabled via the domain-wide Server Configuration document.
    10.08.2006 03:56:31 PM RnRMgr: Validating schedule database
    10.08.2006 03:56:31 PM Agent Manager started
    10.08.2006 03:56:31 PM Administration Process started
    10.08.2006 03:56:31 PM Completed consistency check on ddm.nsf
    10.08.2006 03:56:31 PM RnRMgr: Done validating schedule database
    10.08.2006 03:56:32 PM AMgr: Executive '1' started. Process id '1776'
    10.08.2006 03:56:32 PM SchedMgr: Done validating schedule database >