Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

DMEE: Same name nodes

Former Member
0 Likes
903

I am facing a very very strange issue.

I have read that we can give any name to dmee nodes and repeatation of names is allowed.

I already have many tags with a name say 'Abc'. Now i created a new node with same name. but the value is not displayed in the xml file.

If i tweak 'Abc' to atleast 'ABc' or 'ABC' etc, the value is displayed.

Is there any limitation on same name for different nodes??? the tree does not give any syntax error. and I have to use the name compulsorily as 'Abc'.

Please help

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
727

Recieved below solution from SAP.

Suppose "Abc" is the node for which we are facing the problem.

Kindly go to the transaction STRANS and put the transformation name as
CGI_XML_CT_XSLT and remove the below code.


<xsl:template match="Abc">
<xsl:if test="*[.!='']">
<xsl:copy>
<xsl:apply-templates/>
</xsl:copy>
</xsl:if>
</xsl:template>

And after that activate the same and try to execute the file again. The issue will be resolved now

1 REPLY 1
Read only

Former Member
0 Likes
728

Recieved below solution from SAP.

Suppose "Abc" is the node for which we are facing the problem.

Kindly go to the transaction STRANS and put the transformation name as
CGI_XML_CT_XSLT and remove the below code.


<xsl:template match="Abc">
<xsl:if test="*[.!='']">
<xsl:copy>
<xsl:apply-templates/>
</xsl:copy>
</xsl:if>
</xsl:template>

And after that activate the same and try to execute the file again. The issue will be resolved now