<?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: sub string in select in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sub-string-in-select/m-p/5130234#M1189262</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;I think b~matr(4) is not acceptable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just give b~matreial = 'GH82'..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: tahir naqqash on Feb 2, 2009 4:50 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Feb 2009 11:50:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-02-02T11:50:17Z</dc:date>
    <item>
      <title>sub string in select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sub-string-in-select/m-p/5130233#M1189261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;guys i want to fire this query by " AND   b~material(4) = 'GH82'." gives error.Syntax not accepted&lt;/P&gt;&lt;P&gt;It gives error " b~material(4)" unknown.&lt;/P&gt;&lt;P&gt;Please do guide &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT a&lt;SUB&gt;company a&lt;/SUB&gt;customer a&lt;SUB&gt;bill_no a&lt;/SUB&gt;iris_repai&lt;/P&gt;&lt;P&gt;         a&lt;SUB&gt;svc_prod a&lt;/SUB&gt;serial_no a&lt;SUB&gt;crt_serial a&lt;/SUB&gt;serialtype&lt;/P&gt;&lt;P&gt;         a&lt;SUB&gt;repair_rcv a&lt;/SUB&gt;rcv_dt a&lt;SUB&gt;comp_dt a&lt;/SUB&gt;dlvry_dt&lt;/P&gt;&lt;P&gt;         b~material&lt;/P&gt;&lt;P&gt;         INTO CORRESPONDING FIELDS OF TABLE itab&lt;/P&gt;&lt;P&gt;         FROM zest0 AS a INNER JOIN zest1 AS b&lt;/P&gt;&lt;P&gt;         ON a&lt;SUB&gt;customer = b&lt;/SUB&gt;customer and&lt;/P&gt;&lt;P&gt;            a&lt;SUB&gt;company = b&lt;/SUB&gt;company&lt;/P&gt;&lt;P&gt;         WHERE a~company = 'C750'&lt;/P&gt;&lt;P&gt;         AND   a~svc_prod = 'HHP01'&lt;/P&gt;&lt;P&gt;         AND   a~iris_repai = 'A04'&lt;/P&gt;&lt;P&gt;         AND   b~material(4) = 'GH82'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 11:48:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sub-string-in-select/m-p/5130233#M1189261</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-02T11:48:14Z</dc:date>
    </item>
    <item>
      <title>Re: sub string in select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sub-string-in-select/m-p/5130234#M1189262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;I think b~matr(4) is not acceptable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just give b~matreial = 'GH82'..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: tahir naqqash on Feb 2, 2009 4:50 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 11:50:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sub-string-in-select/m-p/5130234#M1189262</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-02T11:50:17Z</dc:date>
    </item>
    <item>
      <title>Re: sub string in select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sub-string-in-select/m-p/5130235#M1189263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECT a~company a~customer a~bill_no a~iris_repai
a~svc_prod a~serial_no a~crt_serial a~serialtype
a~repair_rcv a~rcv_dt a~comp_dt a~dlvry_dt
b~material
INTO CORRESPONDING FIELDS OF TABLE itab
FROM zest0 AS a INNER JOIN zest1 AS b
ON a~customer = b~customer and
a~company = b~company
WHERE a~company = 'C750'
AND a~svc_prod = 'HHP01'
AND a~iris_repai = 'A04'
AND b~material = 'GH82%'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 11:50:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sub-string-in-select/m-p/5130235#M1189263</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2009-02-02T11:50:28Z</dc:date>
    </item>
    <item>
      <title>Re: sub string in select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sub-string-in-select/m-p/5130236#M1189264</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;Better select all the records into internal table and then delete those records which does not have a pattern 'GH82*'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;S. Chandramouli.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 12:18:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sub-string-in-select/m-p/5130236#M1189264</guid>
      <dc:creator>former_member784222</dc:creator>
      <dc:date>2009-02-02T12:18:36Z</dc:date>
    </item>
    <item>
      <title>Re: sub string in select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sub-string-in-select/m-p/5130237#M1189265</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;SAP does not understand &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;b~material(4) = 'GH82'&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; so the issue. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please modify the code as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECT a~company a~customer a~bill_no a~iris_repai
a~svc_prod a~serial_no a~crt_serial a~serialtype
a~repair_rcv a~rcv_dt a~comp_dt a~dlvry_dt
b~material
INTO CORRESPONDING FIELDS OF TABLE itab
FROM zest0 AS a INNER JOIN zest1 AS b
ON a~customer = b~customer and
a~company = b~company
WHERE a~company = 'C750'
AND a~svc_prod = 'HHP01'
AND a~iris_repai = 'A04'
AND b~material LIKE 'GH82%'
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Suhas Saha on Feb 2, 2009 5:53 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 12:21:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sub-string-in-select/m-p/5130237#M1189265</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-02-02T12:21:58Z</dc:date>
    </item>
    <item>
      <title>Re: sub string in select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sub-string-in-select/m-p/5130238#M1189266</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 use this &lt;STRONG&gt;&lt;U&gt;b~material+0(4) = 'GH82'&lt;/U&gt;&lt;/STRONG&gt; may solve out your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Faisal Altaf on Feb 2, 2009 5:24 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 12:23:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sub-string-in-select/m-p/5130238#M1189266</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-02-02T12:23:11Z</dc:date>
    </item>
    <item>
      <title>Re: sub string in select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sub-string-in-select/m-p/5130239#M1189267</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 AND b~material like 'GH82%'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Himanshu Verma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 12:24:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sub-string-in-select/m-p/5130239#M1189267</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-02T12:24:35Z</dc:date>
    </item>
    <item>
      <title>Re: sub string in select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sub-string-in-select/m-p/5130240#M1189268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alka,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Try it this way: b~material LIKE 'GH82%'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT a~company a~customer a~bill_no a~iris_repai
a~svc_prod a~serial_no a~crt_serial a~serialtype
a~repair_rcv a~rcv_dt a~comp_dt a~dlvry_dt
b~material
INTO CORRESPONDING FIELDS OF TABLE itab
FROM zest0 AS a INNER JOIN zest1 AS b
ON a~customer = b~customer and
a~company = b~company
WHERE a~company = 'C750'
AND a~svc_prod = 'HHP01'
AND a~iris_repai = 'A04'
AND b~material LIKE 'GH82%'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With luck,&lt;/P&gt;&lt;P&gt;Pritam.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Pritam Ghosh on Feb 2, 2009 1:33 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 12:31:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sub-string-in-select/m-p/5130240#M1189268</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-02T12:31:13Z</dc:date>
    </item>
    <item>
      <title>Re: sub string in select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sub-string-in-select/m-p/5130241#M1189269</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;Sorry, According to following Sample Code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: it_kna1 LIKE STANDARD TABLE OF kna1 WITH HEADER LINE.

SELECT * FROM kna1
  INTO CORRESPONDING FIELDS OF TABLE it_kna1
  WHERE sortl like 'MRS%'. " Do this sortl like 'MRS%' Not this sortl+0(4) =  'MRS' it is not working&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so you can't use sortl(4) or sortl+0(4) in select .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 12:33:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sub-string-in-select/m-p/5130241#M1189269</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-02-02T12:33:38Z</dc:date>
    </item>
    <item>
      <title>Re: sub string in select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sub-string-in-select/m-p/5130242#M1189270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Alka,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use Substring in the where-cluase,, this works in SQL, but i'm not sure here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT a&lt;SUB&gt;company a&lt;/SUB&gt;customer a&lt;SUB&gt;bill_no a&lt;/SUB&gt;iris_repai&lt;/P&gt;&lt;P&gt;a&lt;SUB&gt;svc_prod a&lt;/SUB&gt;serial_no a&lt;SUB&gt;crt_serial a&lt;/SUB&gt;serialtype&lt;/P&gt;&lt;P&gt;a&lt;SUB&gt;repair_rcv a&lt;/SUB&gt;rcv_dt a&lt;SUB&gt;comp_dt a&lt;/SUB&gt;dlvry_dt&lt;/P&gt;&lt;P&gt;b~material&lt;/P&gt;&lt;P&gt;INTO CORRESPONDING FIELDS OF TABLE itab&lt;/P&gt;&lt;P&gt;FROM zest0 AS a INNER JOIN zest1 AS b&lt;/P&gt;&lt;P&gt;ON a&lt;SUB&gt;customer = b&lt;/SUB&gt;customer and&lt;/P&gt;&lt;P&gt;a&lt;SUB&gt;company = b&lt;/SUB&gt;company&lt;/P&gt;&lt;P&gt;WHERE a~company = 'C750'&lt;/P&gt;&lt;P&gt;AND a~svc_prod = 'HHP01'&lt;/P&gt;&lt;P&gt;AND a~iris_repai = 'A04'&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;AND b~material LIKE substr('GB123',1,4).&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It works, If you can execute the above query using Native Sql,  as i think SubStr() function is not available in ABAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks\&lt;/P&gt;&lt;P&gt;Mahesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Mahesh Reddy on Feb 2, 2009 1:45 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Mahesh Reddy on Feb 3, 2009 4:48 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 12:45:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sub-string-in-select/m-p/5130242#M1189270</guid>
      <dc:creator>former_member222860</dc:creator>
      <dc:date>2009-02-02T12:45:10Z</dc:date>
    </item>
    <item>
      <title>Re: sub string in select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sub-string-in-select/m-p/5130243#M1189271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333px;"&gt;Hello,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;I got it with new open SQL Syntax avalaible from enhancement 740.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;For example:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Table ZHR_EXAMPLE_TABLE2 has the column ID_EMPLEADO with 6 characters instead of 8 like PERNR in table ZHR_EXAMPLE_TABLE1.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;SELECT&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;T0~COLUMN1, T0~COLUMN2, T0~COLUMN3, T0~COLUM4, T1~COLUMN1 AS COLUMRESULT, T1~PERNR&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;FROM ZHR_EXAMPLE_TABLE1 AS T0&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;INNER JOIN ZHR_EXAMPLE_TABLE2 AS T1 ON &lt;STRONG&gt;SUBSTRING( T1~PERNR,3,6 ) = T0~ID_EMPLEADO&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;WHERE T0~IDPARTE = @ZIDPARTE AND T1~BEGDA LE T0~FECHA AND T1~ENDDA GE T0~FECHA&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;INTO CORRESPONDING FIELDS OF TABLE @ITAB.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;your code with the internal table itab&amp;gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;ENDIF.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Instead of "&lt;SPAN style="font-size: 13.3333px;"&gt;INTO CORRESPONDING FIELDS OF TABLE @ITAB&lt;/SPAN&gt;"&amp;nbsp; you can use "INTO TABLE @DATA(result)". With result no declarated before, the result of the select will be in the that table.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;I hope it can be useful for someone.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Kind regards,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Julian.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2016 07:07:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sub-string-in-select/m-p/5130243#M1189271</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-10-03T07:07:10Z</dc:date>
    </item>
  </channel>
</rss>

