Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents

...

Das erzeugte Dokument wird an einen definierten Ort gespeichert. Der Command SaveAs speichert das Dokument unverändertThe created document is saved to a defined location. The SaveAs command saves the document unchanged.

Code Block
breakoutModewide
languagexml
<OneOffixxConnectBatch xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schema.oneoffixx.com/OneOffixxConnectBatch/1">
  <Entries>
    <OneOffixxConnect>
      <Arguments>
        <TemplateId>6bb49520-1ebd-4f68-bb5f-02f46a9e1ec8</TemplateId>
        <LanguageLcid>2055</LanguageLcid>
      </Arguments>
      <Commands>
        <Command Name="SaveAs">
          <Parameters>
            <Add key="Filename">\\e205\share\organization\...\documentxyz.dotx</Add>
            <Add key="Overwrite">true</Add>
            <Add key="CreateFolder">true</Add>
          </Parameters>
        </Command>
        <Command Name="DefaultProcess">
          <Parameters>
            <Add key="Start">False</Add>
          </Parameters>
        </Command>
      </Commands>
    </OneOffixxConnect>
  </Entries>
</OneOffixxConnectBatch>

Soll daraus ein Dokument erstellt werden, muss vorgängig der Command ConvertToDocument aufgerufen werdenIf a document is to be created from it, the command ConvertToDocument must be called beforehand.

NOTE
Der Befehl The SaveAs, der deaktiviert ist, bewirkt, dass das generierte Dokument nicht geöffnet wird. Das Dokument wird also generiert, gespeichert und hinterher nicht im Word geöffnet command, which is disabled, causes the generated document not to be opened. So the document is generated, saved and afterwards not opened in Word.

Code Block
breakoutModewide
languagexml
<OneOffixxConnectBatch xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schema.oneoffixx.com/OneOffixxConnectBatch/1">
  <Entries>
    <OneOffixxConnect>
      <Arguments>
        <TemplateId>6bb49520-1ebd-4f68-bb5f-02f46a9e1ec8</TemplateId>
        <LanguageLcid>2055</LanguageLcid>
      </Arguments>
      <Commands>
        <Command Name="ConvertToDocument" />
        <Command Name="SaveAs">
          <Parameters>
            <Add key="Filename">\\e205\share\organization\...\documentxyz.docx</Add>
            <Add key="Overwrite">true</Add>
            <Add key="CreateFolder">true</Add>
          </Parameters>
        </Command>
        <Command Name="DefaultProcess">
          <Parameters>
            <Add key="Start">False</Add>
          </Parameters>
        </Command>
      </Commands>
    </OneOffixxConnect>
  </Entries>
</OneOffixxConnectBatch>

...