Hallo,
folgendes kleines Problem habe ich:
-habe Form a, per Skript verschicke ich diese:
Set db = session.CurrentDatabase
Set uidoc = uiws.CurrentDocument
Set doc = uidoc.Document
doc.Form = "b"
doc.Subject = "Absence Request from " + doc.empl(0)
doc.EncryptOnSend = True
Call doc.Send(True, approver)
-dieses Doc kommt als Mail an und lässt sich in Form b öffnen
-jetzt werden im Doc einige Änderungen gemacht
-dann wird das Doc an den Absender zurückgesand:
Set db = session.CurrentDatabase
Set uidoc = uiws.CurrentDocument
Set doc = uidoc.Document
doc.Form = "c"
doc.Subject = "Absence Confirmation"
doc.EncryptOnSend = True
Call doc.Send(True, doc.sender(0))
-auch diese Mail kommt beim Absender an, das Subject stimmt ("Absence Confirmation")
-nur diesmal wurde die Form nicht auf c gewechselt, sondern es wird weiterhin b angezeigt
Danke für eure Hilfe!