‎2013 Feb 14 11:49 AM
Hi all,
I have generated XML file from abap code.
here the problem is
if the particular field is empty, for example plant is empty means,
its not giving the <PLANT> (empty value i want) </PLANT> .
but i need that field also in my XML output.
like this <PLANT> </PLANT>
how to bring that field empty , if the field is empty in internal table.??
Regards,
Bastin.G
‎2013 Feb 14 12:19 PM
Hello,
what is the code that are you using for the <PLANT> tag?
Regards
‎2013 Feb 14 12:19 PM
Hello,
what is the code that are you using for the <PLANT> tag?
Regards
‎2013 Feb 14 12:21 PM
hi i got answer.
before that i have used
CALL METHOD l_xml->create_with_data( dataobject = cust_data ).
now i used
CALL METHOD l_xml->set_data
EXPORTING
dataobject = cust_data
control = lv_dcxmlsercl.
now its working fine,,issue closed.