How do i map this Home Page › Forums › BizTalk 2004 – BizTalk 2010 › How do i map this This topic has 2 replies, 1 voice, and was last updated 9 years, 2 months ago by community-content. Viewing 1 reply thread Author Posts May 27, 2010 at 8:54 AM #24821 community-content I have to map DTM02 to shipRequestdate. First Condition: DTM02 = shipdate, where DTM01 = 002 second condition: if FOB01 = pb, DTM02 = shipdate, where DTM01 != 002 May 27, 2010 at 8:47 PM #24830 community-content Option1 – custom Xslt:<xsl:if test=”(DTM01 = “002”) or ((DTM01 != “002”) and (FOB01 = “pb”))”> <xsl:element name=”shipdate”> <xsl:value-of select=”DTM02″ </xsl:element></xsl:if> Option 2 Functoids DTM02 ————————————————————— Value Mapping functoid ——- shipdate |DTM01 —– LogicalEQ (002) ———————–LogicalOR——| |—————LogicalNOT | |———–LogicalANDFOB01 ——–LogicalEQ(pb) ————————–| May 29, 2010 at 11:19 AM #24835 community-content Hi can you write this scriptfunctoid in inlinec# Author Posts Viewing 1 reply thread The forum ‘BizTalk 2004 – BizTalk 2010’ is closed to new topics and replies. Log in / Register