<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/1872576#M367258</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;You can check the development class SLIS for more examples..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the field catalog add the three fields..and fill the field EDIT = ' ' for the corresponding three columns.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Jan 2007 17:59:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-25T17:59:32Z</dc:date>
    <item>
      <title>alv</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/1872574#M367256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, &lt;/P&gt;&lt;P&gt;I need to create 3 fields NON-EDITABLE in a ALV program that contains 10 fields...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you help me, please?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jan 2007 17:50:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/1872574#M367256</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-25T17:50:30Z</dc:date>
    </item>
    <item>
      <title>Re: alv</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/1872575#M367257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. append the 3 field to ur final internal table&lt;/P&gt;&lt;P&gt;2. make sure that they are populated in the fieldcataloag&lt;/P&gt;&lt;P&gt;3.populate the data for those 3 fields&lt;/P&gt;&lt;P&gt;4.automatically they will be displayed with the other 10 fields&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jan 2007 17:58:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/1872575#M367257</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-25T17:58:27Z</dc:date>
    </item>
    <item>
      <title>Re: alv</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/1872576#M367258</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;You can check the development class SLIS for more examples..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the field catalog add the three fields..and fill the field EDIT = ' ' for the corresponding three columns.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jan 2007 17:59:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/1872576#M367258</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-25T17:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: alv</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/1872577#M367259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  You achive this by the attributes of the fields in the field catalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the below code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you are using ALV with function modules, then set the below mentioned attribute in the fieldcatalog of hte required fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_fldcat-input = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where wa_fldcat of type SLIS_FIELDCAT_ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you using ALV with classes, then&lt;/P&gt;&lt;P&gt;set the following attribute the fieldcatalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_fldcat-edit = 0.&lt;/P&gt;&lt;P&gt;where wa_fldcat of type lvc_S_fcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ihope this solves your problem.&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;Vara&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        varaprasad bhagavatula&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jan 2007 18:01:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/1872577#M367259</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-25T18:01:46Z</dc:date>
    </item>
  </channel>
</rss>

