‎2010 Apr 15 11:40 AM
how to get the data in an internal table from Xstring .
I have been straggling . I am successful in getting the data from XML file but the same thing is not working for XSTRING.
is there a way I can get the data saves in Xstring in internal table .
By getting it into internal table I doest mean the splitting and putting it in internal table . .
what I need is ... if you are using a form or some application from which the XSTRING is getting generated I want to get the data stored there into internal table .
Thanks in advance .
Naval Bhatt .
‎2010 Apr 15 11:54 AM
Hi,
use this code
data:
xstring1 type table of xstring,
fs_xstring like line of xstring1.
fs_xstring = <value>
append fs_xstring to xstring1.
This will do.
Regards and Best wishes.
‎2010 Jun 30 10:47 AM