2013 Jan 30 11:44 AM
Hi Experts,
I want to change my case of the fields, which i have defined in the ABAP structure. for example
structure details are
STR1
FIELD1
FIELD2
when i convert them to XML through transformation, i am receiving as follows
<STR1>
<FIELD1/>
<FIELD2/>
</STR1>
but according to my requirement i need them as follows,
<str1>
<field1/>
<field2/>
</str1>
Please suggest me the helpful tags to convert the case in the XML transformation.
Thanks in advance,
bhaskar
2013 Jan 30 11:53 AM
2013 Jan 30 12:01 PM
Hi Kabil,
I am just beginner in XML transformation.
But what i can figure out here in your code is, you are creating XML data in the ABAP itself by using classes. but i am following the CALL TRANSFORMATION statement and by creating my custom transformation. i think i missed it in my question.
Thank you.
2013 Feb 27 8:28 AM