How do i map this

Home Page Forums BizTalk 2004 – BizTalk 2010 How do i map this

Viewing 1 reply thread
  • Author
    Posts
    • #24821

      I have to map DTM02 to shipRequestdate.

       First Condition: DTM02 = shipdate, where DTM01 = 002

      second condition: if FOB01 = pb, DTM02 = shipdate, where DTM01 != 002

       

       

    • #24830

      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                 |
                                                                       |———–LogicalAND
      FOB01 ——–LogicalEQ(pb) ————————–|

       

Viewing 1 reply thread
  • The forum ‘BizTalk 2004 – BizTalk 2010’ is closed to new topics and replies.