<?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 report using oo in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report-using-oo/m-p/9909674#M1793807</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I believe you need to refresh/modify your internal table based on the new value. You should do it in PAI event of the screen. You can rely on "CHECK_CHANGED_DATA" and "REFRESH_TABLE_DISPLAY" methods of CL_GUI_ALV_GRID class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Dec 2013 13:16:51 GMT</pubDate>
    <dc:creator>naveen_inuganti2</dc:creator>
    <dc:date>2013-12-30T13:16:51Z</dc:date>
    <item>
      <title>alv report using oo</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report-using-oo/m-p/9909673#M1793806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12pt; background-color: #f8f8f8;"&gt;Hi All,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; background-color: #f8f8f8; color: #333333;"&gt;I am using a alv grid report which is having 2 fields,one is editable and the other one is non-editable.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; background-color: #f8f8f8; color: #333333;"&gt;in the editable field 'm using standard f4 help for which 'm getting field value and its description..&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12pt; background-color: #f8f8f8;"&gt;on selecting a entry, the description also should be changed to the non-editable field.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Dec 2013 11:16:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report-using-oo/m-p/9909673#M1793806</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-30T11:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: alv report using oo</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report-using-oo/m-p/9909674#M1793807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I believe you need to refresh/modify your internal table based on the new value. You should do it in PAI event of the screen. You can rely on "CHECK_CHANGED_DATA" and "REFRESH_TABLE_DISPLAY" methods of CL_GUI_ALV_GRID class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Dec 2013 13:16:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report-using-oo/m-p/9909674#M1793807</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2013-12-30T13:16:51Z</dc:date>
    </item>
    <item>
      <title>Re: alv report using oo</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report-using-oo/m-p/9909675#M1793808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Arun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to modify your final internal table(for noneditable field as well).&lt;/P&gt;&lt;P&gt;Once you modify the final table in PAI, just refresh your grid display.&lt;/P&gt;&lt;P&gt;The code would be some what like...&lt;/P&gt;&lt;P&gt;PAI...&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L1S52"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L1S52"&gt;MODIFY it_final &lt;SPAN class="L1S52"&gt;FROM&lt;/SPAN&gt; wa_final &lt;SPAN class="L1S52"&gt;TRANSPORTING&lt;/SPAN&gt; &amp;lt;editable&amp;gt; &amp;lt;noneditable&amp;gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data o_grid&amp;nbsp; TYPE REF TO cl_gui_alv_grid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; CALL METHOD o_grid-&amp;gt;refresh_table_display&lt;/P&gt;&lt;P&gt;*&amp;nbsp;&amp;nbsp;&amp;nbsp; EXPORTING&lt;/P&gt;&lt;P&gt;*&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; is_stable&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = i_stable.&lt;/P&gt;&lt;P&gt;*&amp;nbsp;&amp;nbsp;&amp;nbsp; I_SOFT_REFRESH =&lt;/P&gt;&lt;P&gt;*&amp;nbsp; EXCEPTIONS&lt;/P&gt;&lt;P&gt;*&amp;nbsp;&amp;nbsp;&amp;nbsp; FINISHED&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 1&lt;/P&gt;&lt;P&gt;*&amp;nbsp;&amp;nbsp;&amp;nbsp; others&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it works for you, if not let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Aabid Khan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Dec 2013 04:41:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report-using-oo/m-p/9909675#M1793808</guid>
      <dc:creator>former_member867213</dc:creator>
      <dc:date>2013-12-31T04:41:18Z</dc:date>
    </item>
    <item>
      <title>Re: alv report using oo</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report-using-oo/m-p/9909676#M1793809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; For your scenario CHECK_CHANGED_DATA is mandatory to use. Else you need to always press refresh button after each data entry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Prakash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Dec 2013 05:31:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report-using-oo/m-p/9909676#M1793809</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-31T05:31:56Z</dc:date>
    </item>
  </channel>
</rss>

