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

how to get data from Xstring .

Naval_bhatt
Contributor
0 Likes
553

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 .

2 REPLIES 2
Read only

Former Member
0 Likes
480

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.

Read only

Naval_bhatt
Contributor
0 Likes
480

answered in other thread .