次の方法で共有


Datenmigration Import und Export ins XSLX Format

In Microsoft Dynamics NAV können Sie Stammdaten Ihrer alten NAV Version in Ihre neue Microsoft Dynamics NAV Version übernehmen.

Kurz gesagt, Sie können die Stammdaten aus dem alten System nach Excel exportieren und ebenso Stammdaten aus einer Excel Datei in Ihr neues Microsoft Dynamics NAV System importieren.

image

Aktuell wird Ihnen hier als Datei-Format nur XLS Angeboten.

Wenn Sie Office 2007 oder Office 2010 verwenden und die Daten im XSLX Format verwenden möchten können Sie das relativ einfach in Microsoft Dynamics NAV erweitern.

 

Die Änderungen müssen in der Form 8614 und der Page 8614 vorgenommen werden.

Die beiden betroffenen Menuitems, bzw. PageActions sind:

- Nach Excel exportieren

- Aus Excel importieren

 

 

Von:

<Control9> - OnPush()
ExcelFile := CommonDialogMgt.OpenFile(Text002,FileName,DefaultFileType::Custom,'*.Xls|*.Xls,Action::Save);
IF ExcelFile = '' THEN
EXIT;

 

Nach:

<Control9> - OnPush()
ExcelFile := CommonDialogMgt.OpenFile(Text002,FileName,DefaultFileType::Custom,'*.Xls|*.Xls|*.Xlsx|*.Xlsx',Action::Save);
IF ExcelFile = '' THEN
EXIT;

 

image

 

 

“Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability or fitness for a particular purpose. This mail message assumes that you are familiar with the programming language that is being demonstrated and the tools that are used to create and debug procedures.”   

 

Mit freundlichen Grüßen

Sebastian Röttel

Microsoft Dynamics Germany

Comments

  • Anonymous
    July 13, 2013
    Funktioniert das auch für Daten aus Blob-Feldern, ich denke da z.b. an die Tabelle "Profile Metadata" und "User Metadata".