Dynamicweb Provider

The Dynamicweb Provider is the fastest provider to use when adding data to the Dynamicweb database.

However, the price is a higher level of complexity when setting up the activity, compared to the more specialized providers – e.g. the Ecom Provider, the User Provider, or the Order Provider.

With the Dynamicweb Provider, data is continually added to the database, so the size of the data input is effectively only limited by your database or disk size.

When using the Dynamicweb Provider, relations between tables must be handled manually (as the table structure you access is the underlying Dynamicweb database).

For instance, if you want to add products and product groups to the database you cannot limit the import to EcomGroups and EcomProducts, you also need to add the relevant rows to the EcomGroupProductRelations table and the EcomShopGroupRelations table - and define the relevant keys.

When used as a source (for exporting data) no advanced settings are available to you (Figure 2.1).

It is simply a way for you to access the full Dynamicweb database.

Figure 2.1 When used as a data source, there are no advanced options available to you

When used as a destination provider (i.e. to import data into Dynamicweb) you have access to more extensive settings and options (Figure 3.1).

Figure 3.1 When used as a destination provider you have more options available to you

Since the Dynamicweb Provider can be used access the entire Dynamicweb database, you can use it to import all kinds of data into your solution.

Most of the time, however, you will be importing products, product groups and related Ecommerce data, and so there are extra options available for that:

Option

Description

Interacts with

Insert ony new records Inserts new records present in the source, but does not update existing records  

Update only existing records

When this option is ON the imported rows are updated but not inserted. When OFF rows are updated and inserted

Delete incoming rows – if this option is ON Update only existing records is skipped

Deactivate missing products

When ON missing products are deactivated. When OFF no action is taken.

Hide deactivated products – this option is used only when Deactivate missing products is ON

Remove missing rows after import

Deletes rows not present in the import source - including related tables

When Delete incoming rows is ON, this option is ignored

Remove missing rows after import in the destination table only Deletes rows not present in the import source - excluding related tabled  

Delete incoming rows

Deletes existing rows present in the import source

When Delete incoming rows is ON, the following options are skipped:

Update only existing records, Deactivate missing products, Remove missing rows after import, Delete products / groups for languages included in input, Hide deactivated products.

Delete products / groups for languages included in input

Deletes products and groups only from the languages included in the import

If Delete incoming rows is ON, Delete products / groups for languages included in input is skipped

Discard duplicates

When ON, duplicate rows are skipped

None

Hide deactivated products

When Deactivate missing products is ON, this option hides the deactivated products

If Delete incoming rows is ON, Hide deactivated products is skipped.
If Deactivate missing products is OFF, Hide deactivated products is skipped.

Disable cache clearing This setting disables cache clearing after import  

Three of the settings – Delete products / groups for languages included in input, Deactivate missing products & Remove missing rows after import – are resolved in a clear hierarchy, depending on which tables are being imported to:

When “Delete incoming rows” is OFF the hierarchy is the following:

  • IF the current importing table is EcomProducts or EcomGroups and Delete products / groups for languages included in input is ON the products and/or groups are deleted in the languages included in input
  • ELSE IF the table is EcomProducts  and Deactivate missing products is ON, the products are deactivated (and also hidden if Hide deactivated products is ON)
  • ELSE IF Remove missing rows after import is ON, the missing rows are deleted.

Finally, the Dynamicweb Provider supports updating your indexes every time an activity has been run - this may have a temporary impact on performance every time an import is run.

All tables and columns from the database are available when using the Dynamicweb Provider.

However, the AccessUser table cannot have rows removed with the Dynamicweb Provider. Recognized on AccessUserID you may update the table, but even though "Remove missing rows" has been set for destination, it will be ignored within the Dynamicweb Provider. To remove rows from AccessUser you must use the User Provider.

If you import data to a DateTime column, empty strings or null values will be parsed to the column as a NULL value.

Please note, that Primary key columns must be provided for every table in an activity that is using the Dynamicweb Provider as a destination.

When a job using the DynamicWeb provider as destination is run, the table imports are automatically executed in accordance with the underlying database schema. This means that the DynamicWeb provider checks the foreign keys of the established table mappings to determine if one table should be exectuted after another in order to maintain proper data relations.

Below is a description of the tables/columns needed when importing advanced data structures to the product catalog in Dynamicweb Ecommerce.

When you want to import product with a related group structure, the import is fairly straight forward, although you do have to add data to quite a few tables.

Basically, you must add data to the main tables:

  • EcomProducts
  • EcomGroups
  • EcomShops

As well as the usual relations tables – these relations are not language sensitive, so it is not possible to have different group structures depending on the language.

  • EcomShopGroupRelation
  • EcomGroupProductRelation

Additionally, if you have a tree structure in your groups, you must populate one more table:

  • EcomGroupRelations

This is because, technically, it is possible for one group to have multiple “parent” groups. If you add a group with more than one parent group, make sure to mark one of them as “isParent”

NOTE: if you import your own shops instead of creating them through the dynamicweb administration, you should make sure that the ShopId column has a value that starts with "SHOP" - this is required for the group tree in the administration to work.

Products with no ProductName

It's possible to import products with a NULL value in ProductName, but this will cause problems when indexing your products. We recommend you always include some form of ProductName in your import.

If you want to import variants using the Dynamicweb Provider, there are several tables you need to add data to:

  • EcomVariantGroups must contain one row for each language version of each variantGroup you are importing.
  • EcomVariantsOptions must contain one row for each language version of each option for each group.

So, if you have color and size as variant groups, and color options are red and blue, size options are small and large, this table must contain 4 rows. The VariantOptionId can be any string, as long as it is unique for each variant option, when combined with the languageID.

Naturally, you must also add data to the EcomProducts table – and there are several things you need to be aware of:

  • Add one row to the EcomProducts table for each variant and a “base” row for the product. This means that if you have a product “shoe”, which is available in colors red and blue, sizes large and small, you will add 5 rows to the database – one for “shoe” and one for each variant.
  • Add values to the ProductVariantCounter. The ProductVariantCounter must contain the total number of variants for this product, so each of the mentioned 5 rows should contain the value 4, since there are a total of 4 variants of the product.
  • Add values to the ProductVariantGroupCounter. The ProductVariantGroupCounter must contain the total number of variants for this product, so each of the mentioned 5 rows should contain the value 2, since there are two variant groups, color and size.
  • The VariantID column must contain a concatenation of the variantIDs for the variant options a given row fall under, combined by a period. So assuming “red” has variantID V01 and “small” has variantID “V05”, the small red variant row must have variantID “V01.V05”. The order of the variant IDs is not important.

Then you need to associate a product with a variant group, in order to determine which variants are available for the product:

<item table="EcomVariantgroupProductRelation"> <column columnName="VariantgroupProductRelationID"><![CDATA[VARGRPPRODREL_147954024_115085237]]></column> <column columnName="VariantgroupProductRelationProductID"><![CDATA[PROD1]]></column> <column columnName="VariantgroupProductRelationVariantGroupID"><![CDATA[VAR_113117498]]></column> <column columnName="VariantgroupProductRelationSorting"><![CDATA[0]]></column> <column columnName="VariantgroupProductRelationPriceDif"><![CDATA[False]]></column> </item>

All are required, except Sorting & PriceDif.

Finally, you need to import the active variants for a product:

<item table="EcomVariantOptionsProductRelation"> <column columnName="VariantOptionsProductRelationProductID"><![CDATA[PROD1]]></column> <column columnName="VariantOptionsProductRelationVariantID"><![CDATA[V1.V2.V3.V4]]></column> </item>

As of 9.2.0, you can create product category fields and product categories by modifying the <config>-node in the the XML file.

If you need to add new product categories and product category fields through import, you will have to populate three tables:

  • EcomProductCategory (only has one column, but it is still necessary to add the ID for each category to this table.)
  • EcomProductCategoryTranslation
  • EcomProductCategoryField

The value in the FieldType column is an integer taken from the following list:

Value

Field Type

1

Text (255)

2

Long text

3

Checkbox

4

Date

5

DateTime

6

Integer

7

Decimal

8

Link

9

File manager

10

Text (100)

11

Text (50)

12

Text (20)

13

Text (5)

14

Editor

15

List box

The value in the FieldPresentationType column is an integer taken from the following list:

Value

List type

1

RadioButtonList

2

DropDownList

3

MultiSelectList

4

CheckBoxList

The column should be left empty if none of these values apply.

  • EcomProductCategoryFieldTranslation (the column FieldTranslationFieldOption can safely be left blank)

 The actual field values are saved in the EcomProductCategoryFieldValue table. All fields in this table are fairly self-explanatory.