Von DFML in Aufgaben

  • Hallo zusammen,

    ich hoffe einer von euch hat da ne zündende Idee...

    Ich versuche aus einem DFML-Formular eine Aufgabe zu erstellen. Sprich eine "Antrag auf eine Änderung" soll in einem Formular erstellt werden und dieses wird zur prüfung an den Antragsteller versendet.

    Wenn dieser die Anfrage bestätigt soll der Absender eine Email bekommen und eine Aufgabe soll in einem Abteilungs-Ordner erstellt werden.

    Bis auf ein Detail klappt das auch wunderprechtig.

    Wie kann ich dem Tobit sagen das der Eintrag im Sammelordner eine Aufgabe ist???

    Hab schon alle mir bekannten möglichkeiten durch :wacko: :wacko: :wacko:

  • Hallo Sanifant,

    deine Problemlösung ist eigentlich relativ simpel:

    var tic = document.parentWindow.external;

    var ticacc = tic.Account;

    var oRuleArchive = ticacc.GetSpecialArchive(100); // die SpecialArchive siehst du bei Tobit in der Knowledgebase

    var aNewItem=oRuleArchive.CreateArchiveEntry(12); //Die 12 Steht für das Archive Entry ToDo

    aNewItem.Subject="neue Aufgabe";

    aNewItem.html="test";

    aNewItem.Save();

    Ich denke mit dem Rest kommst du selbst zurecht.

    mfg

    Nachtigal

  • Hallo Nachtigal,

    habe genau das gleiche Problem.....

    wo kommt dennn dieser Part hin?


    wenn meine Seite jetzt folgender massen aussieht...


    Wenn ich dann auf Senden klicke soll er statt eine EMail rauszuschicken....das in eine Aufgabe umwandeln und in den Aufgabenordner ablegen....


    <HTML>
    <HEAD>
    <TITLE></TITLE>

    <style type="text/css">
    <!--
    BODY { font-family: VERDANA, ARIAL, HELVETICA, SANS-SERIF; font-size: 10pt; }

    A:link { color: #000000; text-decoration: none }
    A:visited { color: #000000; text-decoration: none }
    A:active { color: #000000; text-decoration: none }
    A:hover { color: #000000; text-decoration: none }

    #input { border-style: solid; border-color:#C0C0C0; border-width:1px; }
    #input-noborder { border-style: solid; border-color:#C0C0C0; border-width:0px; }
    #inputarea { overflow: auto; font-family: Tahoma; border-style: solid; border-color:#C0C0C0; border-width:1px; }
    #button { background-color: "#FFFFFF"; border-style: solid; border-color:#000000; border-width:1px; }


    td { font-family: VERDANA, ARIAL, HELVETICA, SANS-SERIF; font-size: 10pt; }
    p { margin-top:10px; margin-bottom:0px; }
    -->
    </style>
    </HEAD>
    ##windowsize=1024,786 fixed##


    ##CONTENT##
    ##FORM##

    <table>
    <tr>
    <td>
    <tr>
    <td>
    <h4> </h4>
    </td>
    </tr>
    <hr style="color:black; height:2px; width:850px;">
    </td>
    </tr>

    <tr>
    <td>
    ##LARGE## Rechner (Name):##/LARGE## <input type="text" name="KundeName" size="20" id=input>

    </td>
    </tr>
    <tr>
    <td>
    ##LARGE## Benutzername:##/LARGE## <input type="text" name="benutzername" size="20" id=input>

    </td>
    </tr>

    </table>
    <TABLE style="FONT: 10pt ARIAL; WIDTH: 100%">
    </table>

    <table>
    <tr>
    <td>
    </td>
    </tr>
    <tr>
    <td>
    </td>
    </tr>
    <tr>
    <td>
    </td>
    </tr>
    <tr>
    <td>
    <tr>
    <td>
    <u>##LARGE## Fehler: ##/LARGE##</u><br>
    <select name="dep_email2" size="1" id=input>
    <option value="-" selected>-- bitte whlen --</option>
    <option value="Tobit">Tobit</option>
    <option value="Internet">Internet</option>
    <option value="Fax">Fax</option>
    <option value="Drucker">Drucker</option>
    <option value="Praxis_Archiv">Praxis_Archiv</option>
    </select></p>
    </tr>
    <tr>
    <td>
    </td>
    </tr>
    <tr>
    <td>
    </td>
    </tr>
    <tr>
    <td>
    <u>##LARGE##BESCHREIBUNG FEHLER (StRUNG):##/LARGE##</u><br>
    <textarea name="fehler" cols=88 rows=3 wrap=virtual id=inputarea></textarea>

    </td>
    </tr>
    <tr>
    <td>
    <u>##LARGE##Rechner Neu gestartet?:##/LARGE##</u><br>
    <input type=radio value="Ja" name="neustart" id="neustart"><label for="neustart">Ja</label>
    <input type=radio value="Nein" name="neustart" id="neustart"><label for="neustart">Nein</label>

    </td>
    </tr>
    <tr>
    <td>
    </td>
    </tr>
    <tr>
    <td>
    </td>
    </tr>

    <td>
    </td>

    </table>

    <br>
    <br>
    <br>


    <p style="margin-top: 40px">
    <input type=submit name="send" value="senden">
    <input type=reset name="reset" value="zurcksetzen">
    <input type=button name="exit" value="abbrechen">


    </p>

    <dfml name=mitarbeiter option=nosend option=noclose>
    ##dialog type=address destination=nummer##
    </dfml>

    <dfml name=Datei Option=nosend option=noclose>
    ##dialog type=attachment destination=send##
    </dfml>

    <DFML name=exit option=nosend option=close>

    </dfml>


    <DFML name=send>
    @@EMAIL asdf@asdf.de
    @@DFML
    @@SUBJECT ##dep_email2##
    @@HTML
    <HTML>
    <HEAD>
    <TITLE>bla bla</TITLE>

    <style type="text/css">
    <!--
    BODY { font-family: VERDANA, ARIAL, HELVETICA, SANS-SERIF; font-size: 10pt; }

    A:link { color: #000000; text-decoration: none }
    A:visited { color: #000000; text-decoration: none }
    A:active { color: #000000; text-decoration: none }
    A:hover { color: #000000; text-decoration: none }

    #input { border-style: solid; border-color:#C0C0C0; border-width:1px; }
    #input-noborder { border-style: solid; border-color:#C0C0C0; border-width:0px; }
    #inputarea { overflow: auto; font-family: Tahoma; border-style: solid; border-color:#C0C0C0; border-width:1px; }
    #button { background-color: "#FFFFFF"; border-style: solid; border-color:#000000; border-width:1px; }


    td { font-family: VERDANA, ARIAL, HELVETICA, SANS-SERIF; font-size: 10pt; }
    p { margin-top:10px; margin-bottom:0px; }
    -->
    </style>
    </HEAD>
    ##*WINDOWSIZE=800,600 fixed nobuttons##

    ##*CONTENT##


    ##*FORM##
    <h4></h4>
    <hr style="color:black; height:2px; width:850px;">

    Rechner (Name): <b>##KundeName##</b><br>
    Benutzername: <b>##benutzername##</b><br>
    <br>

    <u>Rechner Neu gestartet? (JA/Nein)</u><br>
    <b>##neustart##</b><br>
    <br>
    <u>BESCHREIBUNG FEHLER (STRUNG)</u></b><br>
    <b>##fehler##</b><br>

Jetzt mitmachen!

Du hast noch kein Benutzerkonto auf unserer Seite? Registriere dich kostenlos und nimm an unserer Community teil!