フィールドCashFlowAttachにはデータベースにXMLコードが含まれています。XSLフォームを使用して、CashFlowAttachフィールドにこのデータ<p xmlns:Utils="cim:Utils"></p>
フィールドが含まれているかどうかの条件を確認する必要があります。
<xsl:choose>
<xsl:when test="string-length($CashFlowAttach)!=0">
<xsl:if test="string-length($CashFlowAttach)!='<p xmlns:Utils="cim:Utils"></p>'">
<a>
<xsl:attribute name="onclick">ajaxcallingForFileDownload
('<xsl:value-of select="$CashFlowAttach" />') </xsl:attribute>
<xsl:value-of select="$CashFlowAttach" />
</a>
</xsl:if>
</xsl:when>
</xsl:choose>