I want to create an XML file with an abap program.
I make a call like this ..
CALL TRANSFORMATION ('ZPA_TR_LIST_NEGRAS')
source conta = conta -> In ABAP debugging
conta has value.
result xml xstr.
in XSLT file I have :
<xsl:param name="CONTA" select="string(/asx:abap[1]/asx:values[1]/CONTA)"/>
But when I generate the XML file CONTA value is missing.
What is the problem ?