DIXF : file export data AX 2012



Export needs to have two Processing group .
Processing group -1 with Source data format –AX ( to bring AX to staging )
  1. Processing group -2 with source data format – XML ( while export data to file from AX, you will have to specify the this processing group
  2. Root Element can be string that will get copied to exported XML root element
  3. How the XML data should display i.e. sequence you will have to specify in the Processing group -2  i.e. Entity Attributes which we are using to export data in the form of XML.


To automate the Export from DIXF ( use below classes)
  • DMFWriteExportData  -  used to fill the DIXF parameter details
 use the current processing group and generate the Execution id for the processing group  and file parameter details. look into the run() method which will give you details of parameter filling.
  • DMFStagingToSourceFileWriter - Used to export data to given file path
construct this class and pass values to parm method in the class and run the class


Main method will you what are all the parameter you needed.


 

Comments