Some BOD elements are not acceptable by receiver application - HxGN EAM - 12.0 - Administration & Configuration - Hexagon

HxGN EAM Configuration Guide for Infor ION

Language
English
Product
HxGN EAM
Search by Category
Administration & Configuration
HxGN EAM Version
12

During HxGN EAM integration with other Infor products through Infor ION, some BOD elements populated by sender application are not anticipated or acceptable by the receiver application. If you wish to suppress these BOD elements when the BOD arrives at receiver application or you want to move some BOD element value to another BOD element that the receiver application anticipates, you can use ION transformation when you configure ION for the integration.

For example, during SyncItemMaster integration from ERP to EAM, you do not wish to synchronize ItemLocation elements in BOD and ItemLocation elements are populated by ERP, you can use the following transformation stylesheet in ION configuration to remove ItemLocation elements when the BOD is routed from ERP to EAM in ION.

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:oag="http://schema.infor.com/InforOAGIS/2">

<xsl:output method="xml" indent="yes"/>

<xsl:template match="@*|node()">

<xsl:copy>

<xsl:apply-templates select="@*|node()"/>

</xsl:copy>

</xsl:template>

<xsl:template match="oag:ItemMaster/oag:ItemLocation"/>

</xsl:stylesheet>