<?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: Table with String data type ??? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-with-string-data-type/m-p/3201353#M762971</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Basically it is the same for defining structures and table types in the ABAP dictionary.   Check out table type STRING_TABLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 28 Dec 2007 15:33:43 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2007-12-28T15:33:43Z</dc:date>
    <item>
      <title>Table with String data type ???</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-with-string-data-type/m-p/3201349#M762967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Friends, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to create a structure with one of the field of type STRING ?&lt;/P&gt;&lt;P&gt;and later on can we use that structure for the Table ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Dec 2007 14:44:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-with-string-data-type/m-p/3201349#M762967</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-28T14:44:59Z</dc:date>
    </item>
    <item>
      <title>Re: Table with String data type ???</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-with-string-data-type/m-p/3201350#M762968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;you can use field type  &lt;/P&gt;&lt;P&gt;field like tline-tdline.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful&lt;/P&gt;&lt;P&gt;vivekanand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Dec 2007 14:47:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-with-string-data-type/m-p/3201350#M762968</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-28T14:47:08Z</dc:date>
    </item>
    <item>
      <title>Re: Table with String data type ???</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-with-string-data-type/m-p/3201351#M762969</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;Use Data Element ALVSTLI or ALPFSTRING to create a field of type STRING in the structure - In case you want to create a structure in the Data dictionary.&lt;/P&gt;&lt;P&gt;For creating a Structure in a program. &lt;/P&gt;&lt;P&gt;Use:&lt;/P&gt;&lt;P&gt;TYPES: &lt;/P&gt;&lt;P&gt;begin of ty_struc, &lt;/P&gt;&lt;P&gt;field1 type string,&lt;/P&gt;&lt;P&gt;field2 type c, &lt;/P&gt;&lt;P&gt;field3 type i,&lt;/P&gt;&lt;P&gt;End of ty_struc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: itab type table of ty_struc.&lt;/P&gt;&lt;P&gt;data: wa type ty_struc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers!!!&lt;/P&gt;&lt;P&gt;Lokesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Lokesh Aggarwal on Dec 28, 2007 3:31 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Dec 2007 15:24:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-with-string-data-type/m-p/3201351#M762969</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-28T15:24:39Z</dc:date>
    </item>
    <item>
      <title>Re: Table with String data type ???</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-with-string-data-type/m-p/3201352#M762970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you can.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

Types: begin of struct,
       fld1(10) type c,
       flds type string,
       end of struct.
data: itab type table of struct.
data: wa like line of itab.   

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Dec 2007 15:30:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-with-string-data-type/m-p/3201352#M762970</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-12-28T15:30:08Z</dc:date>
    </item>
    <item>
      <title>Re: Table with String data type ???</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-with-string-data-type/m-p/3201353#M762971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Basically it is the same for defining structures and table types in the ABAP dictionary.   Check out table type STRING_TABLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Dec 2007 15:33:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-with-string-data-type/m-p/3201353#M762971</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-12-28T15:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: Table with String data type ???</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-with-string-data-type/m-p/3201354#M762972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks  all for your valuable response. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The one solution which worked for me is ALPFSTRING .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Dec 2007 19:35:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-with-string-data-type/m-p/3201354#M762972</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-28T19:35:21Z</dc:date>
    </item>
    <item>
      <title>Re: Table with String data type ???</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-with-string-data-type/m-p/3201355#M762973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;you can use field type  &lt;/P&gt;&lt;P&gt;field like tline-tdline.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful&lt;/P&gt;&lt;P&gt;vivekanand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jan 2008 11:06:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-with-string-data-type/m-p/3201355#M762973</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-01T11:06:19Z</dc:date>
    </item>
  </channel>
</rss>

