<?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: Internal table with XSRTING data type in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-with-xsrting-data-type/m-p/6297676#M1390705</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srini,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its a basic question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF ty_itab,&lt;/P&gt;&lt;P&gt;hex TYPE xstring,&lt;/P&gt;&lt;P&gt;END OF ty_itab.&lt;/P&gt;&lt;P&gt;DATA itab TYPE STANDARD TABLE OF ty_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Nov 2009 06:49:27 GMT</pubDate>
    <dc:creator>awin_prabhu</dc:creator>
    <dc:date>2009-11-12T06:49:27Z</dc:date>
    <item>
      <title>Internal table with XSRTING data type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-with-xsrting-data-type/m-p/6297675#M1390704</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;Is there any way to create an internal table with XSTRING data type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Srini&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Nov 2009 06:44:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-with-xsrting-data-type/m-p/6297675#M1390704</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-12T06:44:21Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table with XSRTING data type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-with-xsrting-data-type/m-p/6297676#M1390705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srini,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its a basic question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF ty_itab,&lt;/P&gt;&lt;P&gt;hex TYPE xstring,&lt;/P&gt;&lt;P&gt;END OF ty_itab.&lt;/P&gt;&lt;P&gt;DATA itab TYPE STANDARD TABLE OF ty_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Nov 2009 06:49:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-with-xsrting-data-type/m-p/6297676#M1390705</guid>
      <dc:creator>awin_prabhu</dc:creator>
      <dc:date>2009-11-12T06:49:27Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table with XSRTING data type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-with-xsrting-data-type/m-p/6297677#M1390706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just like you create any internal table you can declare fields of the type XSTRING too. What problem are you facing in this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Nov 2009 06:51:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-with-xsrting-data-type/m-p/6297677#M1390706</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-12T06:51:00Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table with XSRTING data type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-with-xsrting-data-type/m-p/6297678#M1390707</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;First define the TYPES with only one field of type XSTRING then do the data declaration of type declaed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For ex:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types:&lt;/P&gt;&lt;P&gt;begin of ty_xstring,&lt;/P&gt;&lt;P&gt;field1 type xstring,&lt;/P&gt;&lt;P&gt;end of ty_xstring.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: t_xstring type standard table of ty_xstring.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Nov 2009 06:52:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-with-xsrting-data-type/m-p/6297678#M1390707</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-12T06:52:46Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table with XSRTING data type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-with-xsrting-data-type/m-p/6297679#M1390708</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;&lt;/P&gt;&lt;P&gt;The predefined data types string and xstring describe data objects of variable length (dynamic data objects). While the length of data objects in all other elementary data types is determined for its whole lifetime, the length of text and byte strings varies according to their content (the maximum size of a string is determined by profile parameter ztta/max_memreq_MB, see Maximum size of dynamic data objects). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: itab1 TYPE STANDARD TABLE OF xstring.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Nov 2009 06:53:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-with-xsrting-data-type/m-p/6297679#M1390708</guid>
      <dc:creator>NAeda</dc:creator>
      <dc:date>2009-11-12T06:53:08Z</dc:date>
    </item>
  </channel>
</rss>

