During preparation of a presentation about the new Data Import/Export Framework I came across an issue on the Customer entity when using AX as source data format. When the staging data is filled from the target some address fields (most of them) are filled in the wrong fields of the staging table.

So it was time to dig into it and solve this issue. The first thing I looked after was if all fields were mapped correctly. The address fields are handled by a method ‘GeneratePostalAddress’. A field ‘Return parameter sequence’ is important for returning the fields from the target to the staging table. When comparing the fields, it seemed to be that almost all fields were moved one position, except for the first three.

DIEF_Staging to target mapping before

Within the method ‘GeneratePostalAddress a static function is called which handles a container which is filled and returned by this method. Comparing the 4th field in this container with the sequence in the target mapping learned that the field ‘TimeZone’ is missing.

DIEF_DMFLogisticsAddressHelper

The fields and order is managed by a corresponding FieldGroup on the staging table as listed below.

DIEF_FieldGroupBefore

Indeed the field TimeZone was missing, so I added this one and moved it to the 4th position.

DIEF_FieldGroupAfter

In the target mapping you can then delete the lines related to the method ‘GeneratePostalAddress’ and Generate the mapping again. All missing fields will be regenerated then.

DIEF_Staging to target mapping after

Now it was time to fill the staging table again and the fields including TimeZone was mapped correctly.

That’s all for now. Till next time!

0 replies

Leave a Reply

Want to join the discussion?
Feel free to contribute!

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.