I have an inbound xml document that needs to be converted based on logical condition:
IF
<LOCATION>50101</LOCATION>
<CLIENT_ID>1151</CLIENT_ID>
ON SOURCE DOCUMENT
THEN TARGET DOCUMENT:
<SITE_ID>KNJ<SITE_ID>
How can I create this in xsl? Not sure if I need to use:
xsl:if or xsl:choose?
Thank You.
IF
<LOCATION>50101</LOCATION>
<CLIENT_ID>1151</CLIENT_ID>
ON SOURCE DOCUMENT
THEN TARGET DOCUMENT:
<SITE_ID>KNJ<SITE_ID>
How can I create this in xsl? Not sure if I need to use:
xsl:if or xsl:choose?
Thank You.