<?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: Parameters - restrict input length in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-restrict-input-length/m-p/7562489#M1564529</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;I wonder how something is impossible to do!&lt;/P&gt;&lt;P&gt;I understand the other alternatives like giving a hint or error message but i wonder why SAP is limited to do something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyways thanks for all who gave a thought about this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Shawn.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Jan 2011 11:13:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-01-21T11:13:27Z</dc:date>
    <item>
      <title>Parameters - restrict input length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-restrict-input-length/m-p/7562484#M1564524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Might sound very basic.&lt;/P&gt;&lt;P&gt;I have declared a parameter of type string.&lt;/P&gt;&lt;P&gt;But i want the restrict the input through screen to 175 characters only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Shawn.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jan 2011 10:41:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-restrict-input-length/m-p/7562484#M1564524</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-21T10:41:38Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters - restrict input length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-restrict-input-length/m-p/7562485#M1564525</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 this&lt;/P&gt;&lt;P&gt;PARAMETER : p_test TYPE string VISIBLE LENGTH 175.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Sachin M M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jan 2011 10:47:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-restrict-input-length/m-p/7562485#M1564525</guid>
      <dc:creator>sachin_mathapati</dc:creator>
      <dc:date>2011-01-21T10:47:02Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters - restrict input length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-restrict-input-length/m-p/7562486#M1564526</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;use&lt;/P&gt;&lt;P&gt;PARAMETERS : p_string type string VISIBLE LENGTH 127.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in the at selection screen event.&lt;/P&gt;&lt;P&gt;check the string length the user has entered.&lt;/P&gt;&lt;P&gt;if strlen(p_string) &amp;gt; 127.&lt;/P&gt;&lt;P&gt;display error message.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jan 2011 10:55:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-restrict-input-length/m-p/7562486#M1564526</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-21T10:55:46Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters - restrict input length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-restrict-input-length/m-p/7562487#M1564527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is a restriction on Characters type fields on Selection screen. It accepts only 132 Characters if declared as character.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thats the reason for declaring it as STRING data type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will accept upto 255 Characters but i want to restrict it to 175 &amp;amp; Also i DONT WANT TO DISPLAY ERROR MEESAGE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I Just want to restrict the input beyond 175 char.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Shawn.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jan 2011 11:01:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-restrict-input-length/m-p/7562487#M1564527</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-21T11:01:03Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters - restrict input length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-restrict-input-length/m-p/7562488#M1564528</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;If you dont want to give the Error message then best option is to give a Hint in the selection screen by saying that it will accept only 175 characters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then at the at selection output &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;get the lenth of the parameter and then pass this to a another field of length 175.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this might help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Regards,&lt;/P&gt;&lt;P&gt;Sumodh.P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jan 2011 11:07:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-restrict-input-length/m-p/7562488#M1564528</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-21T11:07:12Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters - restrict input length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-restrict-input-length/m-p/7562489#M1564529</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;I wonder how something is impossible to do!&lt;/P&gt;&lt;P&gt;I understand the other alternatives like giving a hint or error message but i wonder why SAP is limited to do something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyways thanks for all who gave a thought about this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Shawn.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jan 2011 11:13:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-restrict-input-length/m-p/7562489#M1564529</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-21T11:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters - restrict input length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-restrict-input-length/m-p/7562490#M1564530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the reason behind you wanting a 175 char parameter?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jan 2011 12:13:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-restrict-input-length/m-p/7562490#M1564530</guid>
      <dc:creator>former_member201275</dc:creator>
      <dc:date>2011-01-21T12:13:11Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters - restrict input length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-restrict-input-length/m-p/7562491#M1564531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thats a project Specific Requirement!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jan 2011 12:48:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-restrict-input-length/m-p/7562491#M1564531</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-21T12:48:15Z</dc:date>
    </item>
  </channel>
</rss>

