<?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: Problem in display from drop down list in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-display-from-drop-down-list/m-p/5632101#M1282276</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure about capitals, but right now I can see similar effect in my program where I don't distinguish letter size.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In lisbox attributes I changed &lt;EM&gt;Def.length&lt;/EM&gt; to be excatly the same as &lt;EM&gt;Vis.length&lt;/EM&gt; and it is not truncating anymore. I think this is because the field is connected to &lt;STRONG&gt;keyfield&lt;/STRONG&gt; of table, not its description. As long as you set &lt;EM&gt;Def.length&lt;/EM&gt; to be &amp;gt;= than keyfield size, it will in worst case return entire keyfield for an entry. If key field is shorter than &lt;EM&gt;Def.length&lt;/EM&gt;, there should be still some space to fit a part of description too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 May 2009 13:38:40 GMT</pubDate>
    <dc:creator>MarcinPciak</dc:creator>
    <dc:date>2009-05-22T13:38:40Z</dc:date>
    <item>
      <title>Problem in display from drop down list</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-display-from-drop-down-list/m-p/5632096#M1282271</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;In Module Pool Program i have kept a dop down list. When you select a value the I/O Field not displaying the whole value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Example if drop down list contain 'PA000|5|Hr Master Table (Organsation Assignment) and if i select this, the list box is showing only 'PA000|5|Hr Master Table ' where others got truncated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could anyone help on this to rectify it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 May 2009 11:48:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-display-from-drop-down-list/m-p/5632096#M1282271</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-22T11:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in display from drop down list</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-display-from-drop-down-list/m-p/5632097#M1282272</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;In dropdown field attributes extend &lt;EM&gt;Visible length&lt;/EM&gt; to i.e 50, so your data can fit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 May 2009 12:44:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-display-from-drop-down-list/m-p/5632097#M1282272</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2009-05-22T12:44:30Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in display from drop down list</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-display-from-drop-down-list/m-p/5632098#M1282273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have kept the visibe length as 75. then also it getting truncated&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 May 2009 12:48:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-display-from-drop-down-list/m-p/5632098#M1282273</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-22T12:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in display from drop down list</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-display-from-drop-down-list/m-p/5632099#M1282274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ensure you have reserved enought length for description field in table you are passing to listbox:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: BEGIN OF list_tab OCCURS,
        keyfield type ....
        description TYPE char70,  "reserve i.e. char 70
       END OF list_tab.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 May 2009 13:02:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-display-from-drop-down-list/m-p/5632099#M1282274</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2009-05-22T13:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in display from drop down list</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-display-from-drop-down-list/m-p/5632100#M1282275</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;Both the screen field size and structure size is same. But it getting truncated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The drop down list is in small letters, where the selected one shows in capital letter. MAy be because of that?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 May 2009 13:10:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-display-from-drop-down-list/m-p/5632100#M1282275</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-22T13:10:45Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in display from drop down list</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-display-from-drop-down-list/m-p/5632101#M1282276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure about capitals, but right now I can see similar effect in my program where I don't distinguish letter size.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In lisbox attributes I changed &lt;EM&gt;Def.length&lt;/EM&gt; to be excatly the same as &lt;EM&gt;Vis.length&lt;/EM&gt; and it is not truncating anymore. I think this is because the field is connected to &lt;STRONG&gt;keyfield&lt;/STRONG&gt; of table, not its description. As long as you set &lt;EM&gt;Def.length&lt;/EM&gt; to be &amp;gt;= than keyfield size, it will in worst case return entire keyfield for an entry. If key field is shorter than &lt;EM&gt;Def.length&lt;/EM&gt;, there should be still some space to fit a part of description too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 May 2009 13:38:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-display-from-drop-down-list/m-p/5632101#M1282276</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2009-05-22T13:38:40Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in display from drop down list</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-display-from-drop-down-list/m-p/5632102#M1282277</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 solved the issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It got truncated because the drop down list values are in small letters, after selection the field value was in capital letters. So I populated the down list values to capital letters. So, the selction of values is not truncated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 May 2009 14:05:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-display-from-drop-down-list/m-p/5632102#M1282277</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-26T14:05:01Z</dc:date>
    </item>
  </channel>
</rss>

