<?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: Visible Length in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/visible-length/m-p/5129397#M1189163</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 checked your code in my system and it's giving the whole string of 20 characters.&lt;/P&gt;&lt;P&gt;Check the output length of the parameter during debugging.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pushpraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Feb 2009 04:45:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-02-04T04:45:39Z</dc:date>
    <item>
      <title>Visible Length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visible-length/m-p/5129392#M1189158</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;when i declare a parameter of length 20 and gave a visible length 15. when i try to display the entries in the parameter it is giving me only the 15 characters instead of all the characters entered. (SAP 4.7EE)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code snippet:&lt;/P&gt;&lt;P&gt;Report yxyz.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter:&lt;/P&gt;&lt;P&gt;                p_name(20) type c visible length 15.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ p_name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i enter a value ABCDEFGHIJKLMNOPQRST&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the result will be ABCDEFGHIJKLMNO.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2009 04:33:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visible-length/m-p/5129392#M1189158</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-04T04:33:46Z</dc:date>
    </item>
    <item>
      <title>Re: Visible Length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visible-length/m-p/5129393#M1189159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ,&lt;/P&gt;&lt;P&gt;see whatever you said may be correct but if you try same snipett on any other system you will get correct result....&lt;/P&gt;&lt;P&gt;you might have got it due to some patche errors.&lt;/P&gt;&lt;P&gt;regards.&lt;/P&gt;&lt;P&gt;mohit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2009 04:38:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visible-length/m-p/5129393#M1189159</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-04T04:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: Visible Length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visible-length/m-p/5129394#M1189160</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;That addition Shortens only the visible length of a parameter field on the selection screeen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I checked your same code and  iam getting full ABCDEFGHIJKLMNOPQRST.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2009 04:40:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visible-length/m-p/5129394#M1189160</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2009-02-04T04:40:06Z</dc:date>
    </item>
    <item>
      <title>Re: Visible Length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visible-length/m-p/5129395#M1189161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it is obvious that it will show the visible length only...you should omit that portion...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
parameter:
p_name(20) type c.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the code above like that...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2009 04:40:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visible-length/m-p/5129395#M1189161</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-04T04:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: Visible Length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visible-length/m-p/5129396#M1189162</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 tried out your code. It works fine for me. If the problem continues, then try using a breakpoint or debugger and check if the value is changing anywhere. Are you using these lines together or is there some other code in between?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jayanthi.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2009 04:43:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visible-length/m-p/5129396#M1189162</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-04T04:43:14Z</dc:date>
    </item>
    <item>
      <title>Re: Visible Length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visible-length/m-p/5129397#M1189163</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 checked your code in my system and it's giving the whole string of 20 characters.&lt;/P&gt;&lt;P&gt;Check the output length of the parameter during debugging.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pushpraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2009 04:45:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visible-length/m-p/5129397#M1189163</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-04T04:45:39Z</dc:date>
    </item>
    <item>
      <title>Re: Visible Length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visible-length/m-p/5129398#M1189164</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;Maybe because you specified &lt;STRONG&gt;VISIBLE LENGTH 15&lt;/STRONG&gt;, you can see only the first 15 characters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you would click on the field on the selection screen, you would see that it contains the full 20 characters but its only that there is space to display only the first 15 characters on the screen. &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;Dev.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2009 04:47:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visible-length/m-p/5129398#M1189164</guid>
      <dc:creator>dev_parbutteea</dc:creator>
      <dc:date>2009-02-04T04:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: Visible Length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visible-length/m-p/5129399#M1189165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sarves,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code is working absolutely fine rather than the parameter declaration what you havew given try out &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;p_name(20) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the addition visible length(vlen) defines the visible length of the input field as vlen, whereby vlen is entered directly as a positive number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; If vlen is smaller than the length of the parameter and smaller than the maximum visible length, the input field is displayed in the length defined in vlen, with movable content.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;STRONG&gt;Otherwise, the addition is ignored.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you got the concept and the relavant solution&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;Srikanth.P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2009 04:50:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visible-length/m-p/5129399#M1189165</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-04T04:50:58Z</dc:date>
    </item>
    <item>
      <title>Re: Visible Length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visible-length/m-p/5129400#M1189166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; Look my friend the basic concept of using visible length is to display the specified length of the parameter in the basic list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e  if u specify visible length of 15 characters than u can only view 15 characters. It's a way that u hide your string at display time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the statement visible length truncates the string starting from rigth to left.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u think u got the answer to your query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2009 04:56:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visible-length/m-p/5129400#M1189166</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-04T04:56:38Z</dc:date>
    </item>
    <item>
      <title>Re: Visible Length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visible-length/m-p/5129401#M1189167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i tried it but still it gives me the same. i am working in SAP 4.7 version.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2009 05:17:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visible-length/m-p/5129401#M1189167</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-04T05:17:48Z</dc:date>
    </item>
    <item>
      <title>Re: Visible Length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visible-length/m-p/5129402#M1189168</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 also checked in 4.7 version only....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2009 05:22:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visible-length/m-p/5129402#M1189168</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2009-02-04T05:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: Visible Length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visible-length/m-p/5129403#M1189169</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;The problem is with the patches.&lt;/P&gt;&lt;P&gt;i got the answer.&lt;/P&gt;&lt;P&gt;thanks for the help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Feb 2009 07:44:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visible-length/m-p/5129403#M1189169</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-07T07:44:09Z</dc:date>
    </item>
  </channel>
</rss>

