<?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 module pool in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2537611#M576222</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;Iam doing module pool programming.&lt;/P&gt;&lt;P&gt;iam working on tabstrips.&lt;/P&gt;&lt;P&gt;in first tab i have a key field,&lt;/P&gt;&lt;P&gt;my client doesnt want any spaces in between the words in that field.&lt;/P&gt;&lt;P&gt;like KIrthi  jupelli.&lt;/P&gt;&lt;P&gt;we have to get error messge.&lt;/P&gt;&lt;P&gt;please help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bye&lt;/P&gt;&lt;P&gt;kirthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Jul 2007 04:43:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-17T04:43:40Z</dc:date>
    <item>
      <title>module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2537611#M576222</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;Iam doing module pool programming.&lt;/P&gt;&lt;P&gt;iam working on tabstrips.&lt;/P&gt;&lt;P&gt;in first tab i have a key field,&lt;/P&gt;&lt;P&gt;my client doesnt want any spaces in between the words in that field.&lt;/P&gt;&lt;P&gt;like KIrthi  jupelli.&lt;/P&gt;&lt;P&gt;we have to get error messge.&lt;/P&gt;&lt;P&gt;please help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bye&lt;/P&gt;&lt;P&gt;kirthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 04:43:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2537611#M576222</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-17T04:43:40Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2537612#M576223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey Kirthi, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; While doing validations check for that field if it contains any ' ' in the string ... &lt;/P&gt;&lt;P&gt;then if the result is non zero then display a error message ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;Ranjita&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 05:04:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2537612#M576223</guid>
      <dc:creator>former_member196299</dc:creator>
      <dc:date>2007-07-17T05:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2537613#M576224</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;You would have to check the contents of the field like checking for a space in the field like checking with ca (contains any) na (not any) . This can solve ur problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dinesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 06:51:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2537613#M576224</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-17T06:51:32Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2537614#M576225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Do like this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Process After Input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  FIELD w_char MODULE char ON INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE char INPUT.&lt;/P&gt;&lt;P&gt;  DATA: slen TYPE i.&lt;/P&gt;&lt;P&gt;  slen = STRLEN( w_char ).&lt;/P&gt;&lt;P&gt;slen -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;&amp;gt; to identify the actual string length of the entered name in the i/o field&lt;/P&gt;&lt;P&gt;  IF w_char+0(slen) CA ' '.&lt;/P&gt;&lt;P&gt;    MESSAGE 'errororr' TYPE 'E'.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " char  INPUT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 07:30:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2537614#M576225</guid>
      <dc:creator>former_member491305</dc:creator>
      <dc:date>2007-07-17T07:30:37Z</dc:date>
    </item>
  </channel>
</rss>

