<?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: String in ABAP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-in-abap/m-p/3157550#M751109</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bhaskar,&lt;/P&gt;&lt;P&gt;         You use generally use the string data type when you dont know how much wil be the length of your character field. A string may consist of normal as well as Special character.&lt;/P&gt;&lt;P&gt;                     You can define the string as DATA : string TYPE string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sourabh Verma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 14 Dec 2007 14:42:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-14T14:42:50Z</dc:date>
    <item>
      <title>String in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-in-abap/m-p/3157548#M751107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear ALL,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                     Am just learning SAP ABAP. I would like to know the use of String data type in SAP. When and where we use it and how do we maintain it?. Thanks to ALL in anticipation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 11:59:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-in-abap/m-p/3157548#M751107</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-14T11:59:05Z</dc:date>
    </item>
    <item>
      <title>Re: String in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-in-abap/m-p/3157549#M751108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bhaskar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : str type string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SSTRING 1-255 Character string string &lt;/P&gt;&lt;P&gt;STRING 256-... Character string string &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The type SSTRING is available as of release 6.10 and it has a variable length. Its maximum length must be specified and is limited to 255. The advantage of this type compared with CHAR, is that it is assigned to the ABAP type string. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the below link for more information:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb2fd9358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb2fd9358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Kindly Reward points if you found this reply helpful&amp;lt;/b&amp;gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Chaitanya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 12:05:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-in-abap/m-p/3157549#M751108</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-14T12:05:39Z</dc:date>
    </item>
    <item>
      <title>Re: String in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-in-abap/m-p/3157550#M751109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bhaskar,&lt;/P&gt;&lt;P&gt;         You use generally use the string data type when you dont know how much wil be the length of your character field. A string may consist of normal as well as Special character.&lt;/P&gt;&lt;P&gt;                     You can define the string as DATA : string TYPE string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sourabh Verma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 14:42:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-in-abap/m-p/3157550#M751109</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-14T14:42:50Z</dc:date>
    </item>
    <item>
      <title>Re: String in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-in-abap/m-p/3157551#M751110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;by default data type of string is Char255.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and its used tranfer data to files,&lt;/P&gt;&lt;P&gt;     performing the concatinate fun. on chars,&lt;/P&gt;&lt;P&gt;     holding the text data,  etc...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;declaration:&lt;/P&gt;&lt;P&gt;data: lv_str type string.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 16:17:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-in-abap/m-p/3157551#M751110</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-14T16:17:14Z</dc:date>
    </item>
    <item>
      <title>Re: String in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-in-abap/m-p/3157552#M751111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;String data type is used to hold the string of dynamic length.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Declaration:&lt;/P&gt;&lt;P&gt;__________&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA name1 TYPE string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Hakim&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark all useful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 22:37:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-in-abap/m-p/3157552#M751111</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2007-12-14T22:37:35Z</dc:date>
    </item>
  </channel>
</rss>

