<?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: Obtaining substring in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-substring/m-p/1397769#M192530</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Err..the problem is, if I do not know the length of str1, 2, 3 and 4, how can I use offset? Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Jun 2006 14:37:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-29T14:37:55Z</dc:date>
    <item>
      <title>Obtaining substring</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-substring/m-p/1397767#M192528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think I posted this question somewhere before, but I am really confused and could no longer find the original post, so sorry guys if you have to spend your time respose this again:&lt;/P&gt;&lt;P&gt;How can I pull out a sub-string from a string that is delimited by something without using an internal table (i.e., use SPLIT), say for example I would like to have &lt;/P&gt;&lt;P&gt;str1      str2        str3        str4&lt;/P&gt;&lt;P&gt;which are tab-delimited to be separated so that i can do something to str1, pull it out, come back with a substring containing str2, 3 and 4 and continue like that until I reach str4, how can I do that?&lt;/P&gt;&lt;P&gt;str1,2,3,4 are of varying length, BTW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anyi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 14:34:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-substring/m-p/1397767#M192528</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-29T14:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining substring</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-substring/m-p/1397768#M192529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt; use offset&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;split lv_data CL_abap_char_utilities=&amp;gt;horizontal_tab&lt;/P&gt;&lt;P&gt;      str1 str2 str3 str4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Manoj Gupta&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 14:36:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-substring/m-p/1397768#M192529</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-29T14:36:48Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining substring</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-substring/m-p/1397769#M192530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Err..the problem is, if I do not know the length of str1, 2, 3 and 4, how can I use offset? Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 14:37:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-substring/m-p/1397769#M192530</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-29T14:37:55Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining substring</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-substring/m-p/1397770#M192531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use the split like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

data: field1 type string.
data: field2 type string.
data: field3 type string.

split string at 
    cl_abap_char_utilities=&amp;gt;horizontal_tab 
            into field1 field2 field3.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regard,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 14:39:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-substring/m-p/1397770#M192531</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-06-29T14:39:13Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining substring</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-substring/m-p/1397771#M192532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Err...I think I did not mentioned clearly here, but I do not know how many so-called fields are there as well, i.e., I have up to n sunstrings that are tab-delimited here, where n could be anything from 1 to 100, say. Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anyi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 14:40:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-substring/m-p/1397771#M192532</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-29T14:40:18Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining substring</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-substring/m-p/1397772#M192533</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;Try like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : TAB TYPE X VALUE '09'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SPLIT i_tab AT tab INTO f1 f2 f3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Laxman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 14:41:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-substring/m-p/1397772#M192533</guid>
      <dc:creator>Laxmana_Appana_</dc:creator>
      <dc:date>2006-06-29T14:41:10Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining substring</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-substring/m-p/1397773#M192534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DATA: v_string TYPE string VALUE 'abc*def'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SEARCH v_string FOR '*' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : v_string type string value 'Anyi',&lt;/P&gt;&lt;P&gt;v_lth type i,&lt;/P&gt;&lt;P&gt;v_res type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_lth = strlen( v_string ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if count &amp;lt; v_lth.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if v_res = 'n'&lt;/P&gt;&lt;P&gt;v_res = v_string + 0( count ).&lt;/P&gt;&lt;P&gt;count = count + 1.&lt;/P&gt;&lt;P&gt;endif. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else use search statment&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go through the following procedure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Word wrapping/Split&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the fucntion module SWA_STRING_SPLIT to split a tring into&lt;/P&gt;&lt;P&gt;smaller strings or use function module SWA_STRING_SPLIT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This example shows how to split the text in a field of one internal &lt;/P&gt;&lt;P&gt;table and place it into a field in another internal table that has&lt;/P&gt;&lt;P&gt;a shorter size&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT z_hfa_test .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Table containing texts that has to be split&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;BEGIN OF it_longstrings OCCURS 0,&lt;/P&gt;&lt;P&gt;line TYPE string,&lt;/P&gt;&lt;P&gt;END OF it_longstrings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Output table from function SWA_STRING_SPLIT&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it_string_components LIKE swastrtab OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Table containg the resukting strings&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;BEGIN OF it_shortstrings OCCURS 0,&lt;/P&gt;&lt;P&gt;line(10) TYPE c,&lt;/P&gt;&lt;P&gt;END OF it_shortstrings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Add some lines to it_longstrings&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;it_longstrings-line = '123456789012345 Hallo this is a very long'.&lt;/P&gt;&lt;P&gt;APPEND it_longstrings.&lt;/P&gt;&lt;P&gt;it_longstrings-line = 'line, that has to be split.'.&lt;/P&gt;&lt;P&gt;APPEND it_longstrings.&lt;/P&gt;&lt;P&gt;it_longstrings-line = 'The line has to be split into lines of 10&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;characters'.&lt;/P&gt;&lt;P&gt;APPEND it_longstrings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Split each line of it_longstrings into lines with length 10&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;The resuklting lines are palced in table it_string_components&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;LOOP AT it_longstrings.&lt;/P&gt;&lt;P&gt;CLEAR it_string_components. REFRESH it_string_components.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SWA_STRING_SPLIT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;input_string = it_longstrings-line&lt;/P&gt;&lt;P&gt;max_component_length = 10&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;TERMINATING_SEPARATORS =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;OPENING_SEPARATORS =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;string_components = it_string_components&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MAX_COMPONENT_LENGTH_INVALID = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;OTHERS = 2&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Add the lines to table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;LOOP AT it_string_components.&lt;/P&gt;&lt;P&gt;it_shortstrings-line = it_string_components-str.&lt;/P&gt;&lt;P&gt;APPEND it_shortstrings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;LOOP AT it_shortstrings.&lt;/P&gt;&lt;P&gt;WRITE: / it_shortstrings-line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Splitting delimited string&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of placing the substring ind l_output, it could be palced in an&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;internal&lt;/P&gt;&lt;P&gt;table using this syntax:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT f AT g INTO TABLE itab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Each substring will be placed in its own table row. In the example below, the table would have 5 rows.&lt;/P&gt;&lt;P&gt;Note that all output fields must be of type char or string&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT YDK8HENFR_TEST1 line-size 80.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: l_string(132) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of l_output,&lt;/P&gt;&lt;P&gt;name(40) type c,&lt;/P&gt;&lt;P&gt;age(10) type c,&lt;/P&gt;&lt;P&gt;address(40) type c,&lt;/P&gt;&lt;P&gt;city(40) type c,&lt;/P&gt;&lt;P&gt;zipcode(4) type c,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end of l_output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_string = 'John;28;My street;My city;3000'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;split l_string at ';' into l_output-name&lt;/P&gt;&lt;P&gt;l_output-age&lt;/P&gt;&lt;P&gt;l_output-address&lt;/P&gt;&lt;P&gt;l_output-city&lt;/P&gt;&lt;P&gt;l_output-zipcode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write: / l_output-name.&lt;/P&gt;&lt;P&gt;write: / l_output-age.&lt;/P&gt;&lt;P&gt;write: / l_output-address.&lt;/P&gt;&lt;P&gt;write: / l_output-city.&lt;/P&gt;&lt;P&gt;write: / l_output-zipc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 14:41:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-substring/m-p/1397773#M192534</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-29T14:41:29Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining substring</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-substring/m-p/1397774#M192535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well then the easiest way is to split it into an internal table.  Is there a reason why you don't want to do that.&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>Thu, 29 Jun 2006 14:43:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-substring/m-p/1397774#M192535</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-06-29T14:43:32Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining substring</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-substring/m-p/1397775#M192536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To be honest, I was just too lazy to declare an internal table &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;, I thought there may be some easier way of doing that, but I guess I still have to take the long way in the end...I am from a JAVA background, and in JAVA, you can just use substring to do it, I thought ABAP would be that smart as well, but apparently it is not :). Thanks a lot for all the replies!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 14:48:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-substring/m-p/1397775#M192536</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-29T14:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining substring</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-substring/m-p/1397776#M192537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;i&amp;gt;I thought ABAP would be that smart as well, but apparently it is not&amp;lt;/i&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ohhhh......  you are not talking bad about ABAP in the ABAP forum, are you? &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Too lazy to declare an internal table?   Its one line of code.  &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Data: itab type table of string with header line.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regard,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 14:53:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-substring/m-p/1397776#M192537</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-06-29T14:53:42Z</dc:date>
    </item>
  </channel>
</rss>

