<?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: regarding field string in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-field-string/m-p/2922222#M688201</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field string is like a structure but it used for only one program or report. It can be used many time with different name in a same program.&lt;/P&gt;&lt;P&gt;For ex. &lt;/P&gt;&lt;P&gt;Data:Begin of salary,&lt;/P&gt;&lt;P&gt;Basic type n,&lt;/P&gt;&lt;P&gt;da type i,&lt;/P&gt;&lt;P&gt;hra type i,&lt;/P&gt;&lt;P&gt;end of salary.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 12 Jan 2008 13:41:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-12T13:41:21Z</dc:date>
    <item>
      <title>regarding field string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-field-string/m-p/2922219#M688198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;               plz explain me what is field string with your own eg.........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Oct 2007 09:44:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-field-string/m-p/2922219#M688198</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-13T09:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: regarding field string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-field-string/m-p/2922220#M688199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Field string is nothing but the group of fields&lt;/P&gt;&lt;P&gt;You can call it as Structure also&lt;/P&gt;&lt;P&gt;example:&lt;/P&gt;&lt;P&gt;types: begin of x_str&lt;/P&gt;&lt;P&gt;           kunnr type kunnr,&lt;/P&gt;&lt;P&gt;           lifnr  type lifnr,&lt;/P&gt;&lt;P&gt;           name1 type name1,&lt;/P&gt;&lt;P&gt;           land1  type land1,&lt;/P&gt;&lt;P&gt;        end of x_str.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; this stores one record at run time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Oct 2007 09:50:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-field-string/m-p/2922220#M688199</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-13T09:50:56Z</dc:date>
    </item>
    <item>
      <title>Re: regarding field string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-field-string/m-p/2922221#M688200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;did u mean datatype SRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if so&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;Regards,&lt;/P&gt;&lt;P&gt;Nagulan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Oct 2007 10:35:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-field-string/m-p/2922221#M688200</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-13T10:35:59Z</dc:date>
    </item>
    <item>
      <title>Re: regarding field string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-field-string/m-p/2922222#M688201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field string is like a structure but it used for only one program or report. It can be used many time with different name in a same program.&lt;/P&gt;&lt;P&gt;For ex. &lt;/P&gt;&lt;P&gt;Data:Begin of salary,&lt;/P&gt;&lt;P&gt;Basic type n,&lt;/P&gt;&lt;P&gt;da type i,&lt;/P&gt;&lt;P&gt;hra type i,&lt;/P&gt;&lt;P&gt;end of salary.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Jan 2008 13:41:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-field-string/m-p/2922222#M688201</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-12T13:41:21Z</dc:date>
    </item>
  </channel>
</rss>

