<?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: Statement PARAMETERS as STRING (report) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/statement-parameters-as-string-report/m-p/2877520#M675555</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok, i was confused that i see only "input" window with 50 Char, but the length was longer ( it depends on Char)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 02 Oct 2007 09:22:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-02T09:22:42Z</dc:date>
    <item>
      <title>Statement PARAMETERS as STRING (report)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/statement-parameters-as-string-report/m-p/2877518#M675553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to use TYPE STRING as declaration in the report and statement PARAMETERS &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(PARAMETERS : i_param        type string)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;error message "The deep data type 'STRING' is not allowed"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you give me help how set up parameters, which should be long e.g. 150 characters ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks you in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Oct 2007 09:00:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/statement-parameters-as-string-report/m-p/2877518#M675553</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-02T09:00:20Z</dc:date>
    </item>
    <item>
      <title>Re: Statement PARAMETERS as STRING (report)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/statement-parameters-as-string-report/m-p/2877519#M675554</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;PARAMETERS : p_type(150) TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Oct 2007 09:08:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/statement-parameters-as-string-report/m-p/2877519#M675554</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2007-10-02T09:08:02Z</dc:date>
    </item>
    <item>
      <title>Re: Statement PARAMETERS as STRING (report)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/statement-parameters-as-string-report/m-p/2877520#M675555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok, i was confused that i see only "input" window with 50 Char, but the length was longer ( it depends on Char)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Oct 2007 09:22:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/statement-parameters-as-string-report/m-p/2877520#M675555</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-02T09:22:42Z</dc:date>
    </item>
    <item>
      <title>Re: Statement PARAMETERS as STRING (report)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/statement-parameters-as-string-report/m-p/2877521#M675556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes you can see only input width 50 char, its just the visible length&lt;/P&gt;&lt;P&gt;but infact its actual length is 150, its a selection screen limit which shows you only 50 chars&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The selection screen limit of character is only 132, so you can not display a parameter with length 150, even if you declare 150 it considers only 132.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is clear.&lt;/P&gt;&lt;P&gt;Check this.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS : p_t(150) TYPE c.
DATA : l_str TYPE string.
DATA : len TYPE i.
l_str = p_t.
len = strlen( l_str ).

WRITE : len.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Oct 2007 09:24:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/statement-parameters-as-string-report/m-p/2877521#M675556</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2007-10-02T09:24:55Z</dc:date>
    </item>
  </channel>
</rss>

