<?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: Contain Pattern issue in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402464#M1644930</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried implementing the logic you gave, but I am not getting proper results.&lt;/P&gt;&lt;P&gt;Here is code which I am working on , what can I write inside the LOOP so that the reults could be as told before:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF ty_test,&lt;/P&gt;&lt;P&gt;        col type char11,&lt;/P&gt;&lt;P&gt;       END OF ty_test.&lt;/P&gt;&lt;P&gt;DATA: g_t_test type table of ty_test,&lt;/P&gt;&lt;P&gt;     g_wa_test type ty_test.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: len type i,&lt;/P&gt;&lt;P&gt;      len1 type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;g_wa_test-col = 'ABCDXXX'.&lt;/P&gt;&lt;P&gt;append g_wa_test to g_t_test.&lt;/P&gt;&lt;P&gt;clear: g_wa_test.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;g_wa_test-col = 'ABXCDXXX'.&lt;/P&gt;&lt;P&gt;append g_wa_test to g_t_test.&lt;/P&gt;&lt;P&gt;clear: g_wa_test.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT g_t_test INTO g_wA_test.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="9" type="ul"&gt;&lt;P&gt;' What logic can we write here ' **********&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE:/ g_wa_test-col.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 03 Jan 2012 11:12:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2012-01-03T11:12:11Z</dc:date>
    <item>
      <title>Contain Pattern issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402461#M1644927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement where I need to replace the 'X' in the string.&lt;/P&gt;&lt;P&gt;EX: 1. ABCDXXX&lt;/P&gt;&lt;P&gt;       2. ABXXCDXX&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The output should be&lt;/P&gt;&lt;P&gt; 1. ABCD&lt;/P&gt;&lt;P&gt; 2. ABXXCD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This mean I need to replace all the X which comes last in the string. There is a possiblity that X may come in between like Ex 2.&lt;/P&gt;&lt;P&gt;So that X should remain same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What pattern I can give for this Or any other solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2012 10:49:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402461#M1644927</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-03T10:49:10Z</dc:date>
    </item>
    <item>
      <title>Re: Contain Pattern issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402462#M1644928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try the following code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;_i = strlen( p_string ).
L_I = L_I - 1.
while ( l_flag &amp;lt;&amp;gt; 'X' ).
  if p_string+l_i(1) eq 'X'.
    p_string+l_i(1) = ''.
    l_i = l_i - 1.
  else.
    condense p_string.
    l_flag = 'X'.
  endif.
  ENDWHILE.

  write p_string.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2012 10:59:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402462#M1644928</guid>
      <dc:creator>nabheetscn</dc:creator>
      <dc:date>2012-01-03T10:59:18Z</dc:date>
    </item>
    <item>
      <title>Re: Contain Pattern issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402463#M1644929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do a reverse of the string =&amp;gt; shift left untill the following character not equals X =&amp;gt; reverse again&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2012 11:03:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402463#M1644929</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-03T11:03:15Z</dc:date>
    </item>
    <item>
      <title>Re: Contain Pattern issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402464#M1644930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried implementing the logic you gave, but I am not getting proper results.&lt;/P&gt;&lt;P&gt;Here is code which I am working on , what can I write inside the LOOP so that the reults could be as told before:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF ty_test,&lt;/P&gt;&lt;P&gt;        col type char11,&lt;/P&gt;&lt;P&gt;       END OF ty_test.&lt;/P&gt;&lt;P&gt;DATA: g_t_test type table of ty_test,&lt;/P&gt;&lt;P&gt;     g_wa_test type ty_test.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: len type i,&lt;/P&gt;&lt;P&gt;      len1 type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;g_wa_test-col = 'ABCDXXX'.&lt;/P&gt;&lt;P&gt;append g_wa_test to g_t_test.&lt;/P&gt;&lt;P&gt;clear: g_wa_test.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;g_wa_test-col = 'ABXCDXXX'.&lt;/P&gt;&lt;P&gt;append g_wa_test to g_t_test.&lt;/P&gt;&lt;P&gt;clear: g_wa_test.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT g_t_test INTO g_wA_test.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="9" type="ul"&gt;&lt;P&gt;' What logic can we write here ' **********&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE:/ g_wa_test-col.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2012 11:12:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402464#M1644930</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-03T11:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: Contain Pattern issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402465#M1644931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried implementing the logic you gave, but I am not getting proper results.&lt;/P&gt;&lt;P&gt;Here is code which I am working on , what can I write inside the LOOP so that the reults could be as told before:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF ty_test,&lt;/P&gt;&lt;P&gt;        col type char11,&lt;/P&gt;&lt;P&gt;       END OF ty_test.&lt;/P&gt;&lt;P&gt;DATA: g_t_test type table of ty_test,&lt;/P&gt;&lt;P&gt;     g_wa_test type ty_test.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;g_wa_test-col = 'ABCDXXX'.&lt;/P&gt;&lt;P&gt;append g_wa_test to g_t_test.&lt;/P&gt;&lt;P&gt;clear: g_wa_test.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;g_wa_test-col = 'ABXCDXXX'.&lt;/P&gt;&lt;P&gt;append g_wa_test to g_t_test.&lt;/P&gt;&lt;P&gt;clear: g_wa_test.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT g_t_test INTO g_wA_test.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="9" type="ul"&gt;&lt;P&gt;' What logic can we write here ' **********&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE:/ g_wa_test-col.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2012 11:19:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402465#M1644931</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-03T11:19:13Z</dc:date>
    </item>
    <item>
      <title>Re: Contain Pattern issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402466#M1644932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT g_t_test INTO g_wA_test.
l_i = strlen(  g_wA_test-col ).
L_I = L_I - 1.
while ( l_flag &amp;lt;&amp;gt; 'X' ).
  if g_wA_test-col+l_i(1) eq 'X'.
    g_wA_test-col+l_i(1) = ''.
    l_i = l_i - 1.
  else.
    condense g_wA_test-col.
    l_flag = 'X'.
  endif.
  ENDWHILE.
write / g_wA_test-col.
clear l_flag.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nabehet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2012 11:24:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402466#M1644932</guid>
      <dc:creator>nabheetscn</dc:creator>
      <dc:date>2012-01-03T11:24:27Z</dc:date>
    </item>
    <item>
      <title>Re: Contain Pattern issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402467#M1644933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is no operator in  while ( l_flag  'X' ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what operator should I use '='?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suggest.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2012 11:33:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402467#M1644933</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-03T11:33:26Z</dc:date>
    </item>
    <item>
      <title>Re: Contain Pattern issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402468#M1644934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are on ABAP kernel release 7 or above, then you should be able to do the magic with below two lines of code. This shows power and beauty of regular expressions &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Replace X in 'X+$' with any character you wish to delete towards the end of string. The regular expression matches only trailing X and it won't touch any X in the middle&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: ls_string TYPE string VALUE 'ABXXCDXX'.
REPLACE REGEX 'X+$' IN ls_string WITH ''.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are below ABAP 7 then you can use the more mundane SHIFT command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: ls_string TYPE string VALUE 'ABXXCDXX'.
SHIFT ls_string RIGHT DELETING TRAILING 'X'.
CONDENSE ls_string.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2012 11:34:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402468#M1644934</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-03T11:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: Contain Pattern issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402469#M1644935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;while ( l_flag &amp;lt;&amp;gt; 'X' ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nabheet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2012 11:38:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402469#M1644935</guid>
      <dc:creator>nabheetscn</dc:creator>
      <dc:date>2012-01-03T11:38:22Z</dc:date>
    </item>
    <item>
      <title>Re: Contain Pattern issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402470#M1644936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am sorry Vishnu that didnt work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nabheet how can use the while ( l_falg 'X' )  like this in my code. Its a syntax error. But the procedure is correct.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2012 11:42:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402470#M1644936</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-03T11:42:58Z</dc:date>
    </item>
    <item>
      <title>Re: Contain Pattern issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402471#M1644937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sumana, I gave you two pieces of code and clearly mentioned that the first will work only in ABAP 7 or above (that is ECC 6 or above).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The below piece of code should work for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: ls_string TYPE string VALUE 'ABXXCDXX'.
SHIFT ls_string RIGHT DELETING TRAILING 'X'.
CONDENSE ls_string.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also when you say some code doesn't work, it would be a better to mention what the error is, so we can help you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2012 11:45:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402471#M1644937</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-03T11:45:23Z</dc:date>
    </item>
    <item>
      <title>Re: Contain Pattern issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402472#M1644938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry for that Vishnu. Actually there is no change in INPUT and OUTPUT both are same I am getting for the suggested code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2012 11:54:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402472#M1644938</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-03T11:54:00Z</dc:date>
    </item>
    <item>
      <title>Re: Contain Pattern issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402473#M1644939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is weird. Which SAP system are you on? Which release?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both the pieces of code I gave you work on ECC 6 with ABAP 7&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See if the below works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ls_string should have 'ABXXCDXX' initially but after the SHIFT and CONDENSE it should become 'ABXXCD'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: ls_string(30) TYPE c VALUE 'ABXXCDXX'.
SHIFT ls_string RIGHT DELETING TRAILING 'X'.
CONDENSE ls_string.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2012 11:59:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402473#M1644939</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-03T11:59:35Z</dc:date>
    </item>
    <item>
      <title>Re: Contain Pattern issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402474#M1644940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Basic programming question. Moved to Beginners' corner.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2012 12:31:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402474#M1644940</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2012-01-03T12:31:30Z</dc:date>
    </item>
    <item>
      <title>Re: Contain Pattern issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402475#M1644941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vishnu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thats really splved my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only thing which confused me was my field type was CHAR11 for which it didnt work, but when I changed the type to STRING your code became the solution for it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jan 2012 05:29:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402475#M1644941</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-05T05:29:12Z</dc:date>
    </item>
    <item>
      <title>Re: Contain Pattern issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402476#M1644942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basic programming question. Moved to Beginners' corner.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Moved back as resulted in interesting regex information... &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jan 2012 07:12:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/contain-pattern-issue/m-p/8402476#M1644942</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2012-01-05T07:12:01Z</dc:date>
    </item>
  </channel>
</rss>

