<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: convert wa to string in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-wa-to-string/m-p/3423220#M822194</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use concatenate&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Feb 2008 09:27:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-20T09:27:18Z</dc:date>
    <item>
      <title>convert wa to string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-wa-to-string/m-p/3423218#M822192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi to alll&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONSTANTS: BEGIN OF c_emptycell,&lt;/P&gt;&lt;P&gt;             menge(12) TYPE c VALUE 0,          &lt;/P&gt;&lt;P&gt;             sep1  TYPE x VALUE '09',            &lt;/P&gt;&lt;P&gt;             fixkz LIKE eket-fixkz VALUE IS INITIAL,&lt;/P&gt;&lt;P&gt;             sep2  TYPE x VALUE '09',            &lt;/P&gt;&lt;P&gt;           END OF c_emptycell.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to convert this one into string.&lt;/P&gt;&lt;P&gt;is it possible &lt;/P&gt;&lt;P&gt;can any one help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;raadha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Feb 2008 09:18:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-wa-to-string/m-p/3423218#M822192</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-20T09:18:11Z</dc:date>
    </item>
    <item>
      <title>Re: convert wa to string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-wa-to-string/m-p/3423219#M822193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;Here it is :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.sdn.sap.com/click.jspa?searchID=8997746&amp;amp;messageID=3572609" target="test_blank"&gt;https://forums.sdn.sap.com/click.jspa?searchID=8997746&amp;amp;messageID=3572609&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Feb 2008 09:23:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-wa-to-string/m-p/3423219#M822193</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-20T09:23:45Z</dc:date>
    </item>
    <item>
      <title>Re: convert wa to string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-wa-to-string/m-p/3423220#M822194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use concatenate&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Feb 2008 09:27:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-wa-to-string/m-p/3423220#M822194</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-20T09:27:18Z</dc:date>
    </item>
    <item>
      <title>Re: convert wa to string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-wa-to-string/m-p/3423221#M822195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;C'mon guys use OO.  &lt;/P&gt;&lt;P&gt;Given the growth of IT in certain parts of the world you guys above all should not still be using "Dinosaur Technology"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Forget the old Classic Abap methods as these won't work reliably (if at all) on Unicode systems anyway.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ist method converts structure to a string&lt;/P&gt;&lt;P&gt;2nd converts string to structure.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL METHOD cl_abap_container_utilities=&amp;gt;fill_container_c

CALL METHOD cl_abap_container_utilities=&amp;gt;read_container_c

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The SPLIT command is quite useful to break your string up if you have delimited the fields say with tab chars.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that your type X value '09' will also give problems on a unicode systeem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You'll need to use the attributes in cl_abap_utilities.&lt;/P&gt;&lt;P&gt;There's equivalent values you can use. (SE24) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Advantage here is that this also works on a Unicode system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Jimbo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Feb 2008 10:24:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-wa-to-string/m-p/3423221#M822195</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-20T10:24:09Z</dc:date>
    </item>
  </channel>
</rss>

