<?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 with ALV in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/4213706#M1006908</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i use CALL METHOD go_grid-&amp;gt;refresh_table_display in PAI before "leave Program" i get the following dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OBJECTS_OBJREF_NOT_ASSIGNED	CX_SY_REF_IS_INITIAL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Jul 2008 11:19:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-24T11:19:02Z</dc:date>
    <item>
      <title>Problem with ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/4213703#M1006905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i´ve a problem with an ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The situation is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I read some data from DB, pack them into an internal table call another dynpro and load them into the grid.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  CALL METHOD go_grid-&amp;gt;set_table_for_first_display
    EXPORTING
      is_variant           = gs_layout
      i_save               = x_save
      i_default            = 'X'
      it_toolbar_excluding = pt_exclude
    CHANGING
      it_outtab            = it_vbeln[]
      it_fieldcatalog      = z_fieldcat.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first call everything is okay. This time it_vbeln has one entry with 800000046.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if i navigate back to the first screen and read other data put them into the table and call next window again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here i set a break point before calling:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL METHOD go_grid-&amp;gt;set_table_for_first_display&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This time it_vbeln has one entry with 800000042. Okay so far this is the new data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After this call there is no additional code. The next thing is that the ALV appears on the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BUT: With the entry 800000046!!!&lt;/P&gt;&lt;P&gt;If i make a refresh via the toolbar Button "Refresh" &lt;/P&gt;&lt;P&gt;The entry  changes to 800000042.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone tell me my fault?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;Points guaranted&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 09:22:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/4213703#M1006905</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T09:22:07Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/4213704#M1006906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, you should add following code into your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if gr_container is initial.&lt;/P&gt;&lt;P&gt;  u2026u2026&lt;/P&gt;&lt;P&gt;  call method go_grid-&amp;gt;set_table_for_first_display&lt;/P&gt;&lt;P&gt;  u2026u2026&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;    call method go_grid-&amp;gt;refresh_table_display&lt;/P&gt;&lt;P&gt;      exceptions&lt;/P&gt;&lt;P&gt;        finished = 1&lt;/P&gt;&lt;P&gt;        others   = 2.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 10:46:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/4213704#M1006906</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T10:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/4213705#M1006907</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 have to write &lt;/P&gt;&lt;P&gt;grid1-&amp;gt;refresh_table_diplay.&lt;/P&gt;&lt;P&gt;Aftr writing This I think it will work and also refer the program bcalv_grid_02.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ansuman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 10:59:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/4213705#M1006907</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T10:59:39Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/4213706#M1006908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i use CALL METHOD go_grid-&amp;gt;refresh_table_display in PAI before "leave Program" i get the following dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OBJECTS_OBJREF_NOT_ASSIGNED	CX_SY_REF_IS_INITIAL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 11:19:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/4213706#M1006908</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T11:19:02Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/4213707#M1006909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i solved the problem by calling the methods:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;alv=&amp;gt;free&lt;/P&gt;&lt;P&gt;container=&amp;gt;free&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 13:09:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/4213707#M1006909</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T13:09:54Z</dc:date>
    </item>
  </channel>
</rss>

