Hello everybody,
I'm trying to update an UDF in the Item table OITM. If I have only one line in the import file, it works. But if I have more then one line it doesn't work.
Could anyone help me with this please?
I tried this from the B1i Help/Documents/File Inbound
<xsl:template name="transform"> <!-- batch processing for multiple message outbound --> <b1im_multimsg> <xsl:for-each select="$msg/row"> <!-- processing for a single item --> <b1im_msg> <B1out xmlns="" type="object"> <Items> <row> <ItemCode> <xsl:value-of select="$msg/row/col[2]"></xsl:value-of> </ItemCode> <U_Qty2> <xsl:value-of select="$msg/row/col[3]"></xsl:value-of> </U_Qty2> </row> </Items> </B1out> </b1im_msg> </xsl:for-each> </b1im_multimsg> </xsl:template>