Hi,
I have to set the bin location for From Whs and To Whs in B1if
<StockTransfer_Lines>
<xsl:for-each select="/vpf:Msg/vpf:Body/vpf:Payload[./@Role='C' and ./@id='atom1']/jdbc:ResultSet/jdbc:Row">
<row>
<ItemCode>
<xsl:value-of select="jdbc:ITEMCODE/text()"></xsl:value-of>
</ItemCode>
<ItemDescription>
<xsl:value-of select="jdbc:DESCRIPTION/text()"></xsl:value-of>
</ItemDescription>
<Quantity>
<xsl:value-of select="jdbc:QUANTITY/text()"></xsl:value-of>
</Quantity>
<WarehouseCode>
<xsl:value-of select="jdbc:TOWHSCODE/text()"></xsl:value-of>
</WarehouseCode>
<FromWarehouseCode>
<xsl:value-of select="jdbc:FILLER/text()"></xsl:value-of>
</FromWarehouseCode>
<MeasureUnit>
Kgs
</MeasureUnit>
</row>
</xsl:for-each>
</StockTransfer_Lines>
This is the XML I generated for adding StockTransfer Line . But I dont have any idea about the Bin Location, How to set it. Please help.
Thank You.