Access to add and change pages is restricted. See: https://cwiki.apache.org/confluence/display/OFBIZ/Wiki+access

Data Files

Introduction

There is a data import tool in OFBiz called the DataFile tool. It uses XML files that describe flat file formats (including character delimited, fixed width, etc) and parses the flat files based on those definitions. So, by design it is somewhat like the Entity Engine. It uses a generic object to represent a row in the flat file. It includes features like a line type code for each line and can support hierarchical flat files (ie where parent/child relationships are implied by sub-records).

The code is in the ofbiz/framework/datafile directory, and there is an XSD there to describe how the data file definition XML file should look.

The DataFile has a web page in WebTools to parse data files and generate entity xml files (that can be imported in OFBiz) from them, and to do in/out testing.

Both the import of fixed width flat files and character delimited files are implemented.

Definitions

  • Definition file: this is an xml file that contains one or more "Data File Definition"s; the grammar of the file is defined in framework/datafile/dtd/datafile.xsd
  • Data File Definition: the definition of a data file structure (e.g. names/types of the fields/columns in a "Data File"; the same "Data File" could have more than one "Data File Definition"s (e.g. the definitions could consider different subsets of all the fields available in the data file).
  • Data file: the text file that contains all the data (a fixed width or a character delimited text file)

How to use the "Work With Data Files" screen in the Webtools application

Prerequisites: a definition file (containing the fields' definition of the data file) and a data file (containing the data you want to parse/import) should be available in the OFBiz server.

Steps:

  1. connect to the Webtools application
  2. go to the "Work With Data Files" screen
  3. enter the path to the your definition file in the "Definition Filename or URL" input field
  4. click on the submit button
  5. the "Data File Definition Name" input field will be changed into a drop down box containing all the definitions available in the definition file
  6. select the definition you want to use from the drop down box
  7. enter the path to the your data file in the "Data Filename or URL" input field
  8. (optional) click on the submit button; the data file will be parsed and the result will be shown on screen
  9. if you want to generate an entity xml file that can be later imported in OFBiz, enter a path for it in the "Save to entity xml file:" input field and click on the submit button; the file will be created (see the paragraph "Tips to create Entity Xml Files" for more details)

Tips to create Entity Xml Files

The "Work with Data Files" screen can be used to parse a data file and create an Entity Xml file that can be easily imported in OFBiz (for example using the Webtools-->Entity Import Xml screen). In order to create a good entity xml file you should follow these recommendations when you prepare your "Definition File":

  • the record.name attribute must contain the name of the entity in which the records will be imported (for example: <record name="Product" limit="many">)
  • the field.name attribute must contain the name of the entity field in which the records will be imported (for example: <field name="productId" type="String"/>)

Examples

An example of fixed width flat file import.

Sample fixed width CSV file posreport.csv to be imported:

021196033702    ,5031BB GLITTER GLUE PENS BRIGH  ,1           ,5031BB      ,       1,     299,
021196043121    ,BB4312 WONDERFOAM ASSORTED      ,1           ,BB4312      ,       1,     280,
021196055025    ,9905BB  PLUMAGE MULTICOLOURED   ,1           ,9905BB      ,       4,     396,




Sample xml definition file for importing select columns posschema.xml:

<?xml version="1.0" encoding="UTF-8" ?>

<data-files xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/datafiles.xsd">
    <data-file name="posreport" separator-style="fixed-length" type-code="text">
        <record name="tillentry" limit="many">
            <field name="tillCode" type="String" length="16" position="0"/>
            <field name="name" type="String" length="32" position="17"/>
            <field name="prodCode" type="String" length="12" position="63"/>
            <field name="quantity" type="String" length="8" position="76"/>
            <field name="totalPrice" type="String" length="8" position="85"/>
        </record>
    </data-file>
</data-files>




In the interface enter something like:

  • Definition Filename or URL: posschema.xml
  • Data File Definition Name: posreport
  • Data Filename or URL: posreport.csv

The types listed in this sample are simple String's but the usual types are available such as Date, Long etc.

Another example reading fixed record little endian binary files


<?xml version="1.0" encoding="UTF-8" ?>

<data-files xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/datafiles.xsd">
    <data-file name="stockdata" separator-style="fixed-record" type-code="text" record-length="768">
        <record name="stockdataitem" limit="many">
            <field name="barcode" type="NullTerminatedString" length="12" position="0"/>
            <field name="prodCode" type="NullTerminatedString" length="12" position="68"/>
            <field name="price" type="LEInteger" length="4" position="80"/>
            <field name="name" type="NullTerminatedString" length="30" position="16"/>
        </record>
    </data-file>
</data-files>




Tab delimited imports

Worth noting that to get tab separated imports working you should use a delimiter of : 

<?xml version="1.0" encoding="UTF-8"?>
<data-files xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/datafiles.xsd">
    <data-file name="bacs-iscd" separator-style="delimited" type-code="text" delimiter="&#009;">........


Also you may have a look at real life examples in
applications\order\src\org\ofbiz\order\thirdparty\zipsales\ZipSalesServices.java and
applications\order\src\org\ofbiz\order\thirdparty\taxware

  • No labels

1 Comment

  1. Really interesting for a new company Kick off, to populate the db.