<?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: ALV display in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-display/m-p/3608604#M869214</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In a table control, you can set the defaul widths in the screen painter by adjusting the widths.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Additoinally, you can alter the attributes with LOOP AT SCREEN and for those fields (SCREEN-NAME = 'YOURFIELDNAME' set SCREEN-LENGTH = yourwidth.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Mar 2008 14:47:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-26T14:47:38Z</dc:date>
    <item>
      <title>ALV display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-display/m-p/3608600#M869210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am looking at one SAP ECC6 system and the ALV grids columns are minimised so that you can not make out the data in the columns.  You then need to adjust the widthc of each column.  I'm looking at standard transactions such as MD04.  Is there a system setting or user setting that controls this, as usually the columns are optimised to fit the data?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2008 14:14:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-display/m-p/3608600#M869210</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-26T14:14:15Z</dc:date>
    </item>
    <item>
      <title>Re: ALV display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-display/m-p/3608601#M869211</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;  Just check it out in the function pool SLIS the following.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF SLIS_FIELDCAT_ALV_SPEC,&lt;/P&gt;&lt;P&gt;         KEY_SEL(1)     TYPE C,        " field not obligatory&lt;/P&gt;&lt;P&gt;         NO_SUM(1)      TYPE C,        " do not sum up&lt;/P&gt;&lt;P&gt;         SP_GROUP(4)    TYPE C,        " group specification&lt;/P&gt;&lt;P&gt;         REPREP(1)      TYPE C,        " selection for rep/rep&lt;/P&gt;&lt;P&gt;         INPUT(1)       TYPE C,        " input&lt;/P&gt;&lt;P&gt;         EDIT(1)        TYPE C,        " internal use only&lt;/P&gt;&lt;P&gt;         HOTSPOT(1)     TYPE C,        " hotspot&lt;/P&gt;&lt;P&gt;       END OF SLIS_FIELDCAT_ALV_SPEC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF SLIS_FIELDCAT_ALV.&lt;/P&gt;&lt;P&gt;INCLUDE TYPE SLIS_FIELDCAT_MAIN.&lt;/P&gt;&lt;P&gt;INCLUDE TYPE SLIS_FIELDCAT_ALV_SPEC.&lt;/P&gt;&lt;P&gt;TYPES: END OF SLIS_FIELDCAT_ALV.&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;Sankar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2008 14:17:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-display/m-p/3608601#M869211</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-26T14:17:19Z</dc:date>
    </item>
    <item>
      <title>Re: ALV display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-display/m-p/3608602#M869212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In Alv we use the  &lt;STRONG&gt;outputlen&lt;/STRONG&gt;  to maintain the feild length in the alv output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This we maintain in the fieldcatalog.&lt;/P&gt;&lt;P&gt;    f_fldcat-outputlen = 10.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2008 14:28:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-display/m-p/3608602#M869212</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-26T14:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: ALV display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-display/m-p/3608603#M869213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is a SAP standard transaction and in one ECC6 system the table columns are optimised but in another system they are not.  I was just wondering if there is a setting somewhere that controls this, and I've just debugged the trans and found that its actually using a table control and not an ALV grid???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2008 14:39:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-display/m-p/3608603#M869213</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-26T14:39:49Z</dc:date>
    </item>
    <item>
      <title>Re: ALV display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-display/m-p/3608604#M869214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In a table control, you can set the defaul widths in the screen painter by adjusting the widths.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Additoinally, you can alter the attributes with LOOP AT SCREEN and for those fields (SCREEN-NAME = 'YOURFIELDNAME' set SCREEN-LENGTH = yourwidth.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2008 14:47:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-display/m-p/3608604#M869214</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-26T14:47:38Z</dc:date>
    </item>
  </channel>
</rss>

