<?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: BAPI_QUALNOT_GETDETAIL refresh in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-qualnot-getdetail-refresh/m-p/363793#M7840</link>
    <description>&lt;P&gt;Thnks Raymond.&lt;/P&gt;</description>
    <pubDate>Wed, 04 Jan 2017 10:19:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2017-01-04T10:19:20Z</dc:date>
    <item>
      <title>BAPI_QUALNOT_GETDETAIL refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-qualnot-getdetail-refresh/m-p/363789#M7836</link>
      <description>&lt;P&gt;Hi,
I used this bapi ALV report. First run lt_notitem is true value but i used qm02 tcode changed value &lt;STRONG&gt;below first picture and second picture&lt;/STRONG&gt;. My report click refresh button &lt;STRONG&gt;(below third &lt;/STRONG&gt;&lt;B&gt;picture)&lt;/B&gt; bapi lt_notitem table same value not get changed value. I turn back first screen select-option run F8 lt_notitem table get new value. where is problem ? How is solved ?&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;    REFRESH: lt_notlongtxt,
             lt_notitem,lt_notitem[],
             lt_notifcaus,
             lt_notifactv,
             lt_notiftask,
             lt_notifpartnr,
             lt_return.


    CLEAR   : lt_notlongtxt ,
              lt_notitem , lt_notitem[],
              lt_notifcaus ,
              lt_notifactv ,
              lt_notiftask ,
              lt_notifpartnr ,
              lt_return .


    CLEAR: ls_notifheader_export,
           ls_notifhdtext.


    CALL FUNCTION 'BAPI_QUALNOT_GETDETAIL'
      EXPORTING
        number             = ls_qmel-qmnum
      IMPORTING
        notifheader_export = ls_notifheader_export
        notifhdtext        = ls_notifhdtext
      TABLES
        notlongtxt         = lt_notlongtxt
        notitem            = lt_notitem
        notifcaus          = lt_notifcaus
        notifactv          = lt_notifactv
        notiftask          = lt_notiftask
        notifpartnr        = lt_notifpartnr
        return             = lt_return.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/12770-capture3.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/12767-capture1.png" /&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/12771-capture4.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Dec 2016 14:04:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-qualnot-getdetail-refresh/m-p/363789#M7836</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-12-27T14:04:01Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_QUALNOT_GETDETAIL refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-qualnot-getdetail-refresh/m-p/363790#M7837</link>
      <description>&lt;P&gt;With CL_GUI_ALV_GRID (?), the most frequent cause is that people create a new instance of the ALV grid (without freeing the previous ALV grid instance), and the effect is that only the first one is displayed. To free the first ALV grid instance, use these 2 lines:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;alv_grid-&amp;gt;free( ).&lt;BR /&gt;FREE alv_grid.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Note that instead of freeing and creating, you may call the REFRESH_TABLE_DISPLAY method.&lt;/P&gt;&lt;P&gt;CL_SALV_TABLE has the same issue if you use it in "container mode".&lt;/P&gt;</description>
      <pubDate>Tue, 27 Dec 2016 14:46:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-qualnot-getdetail-refresh/m-p/363790#M7837</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2016-12-27T14:46:34Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_QUALNOT_GETDETAIL refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-qualnot-getdetail-refresh/m-p/363791#M7838</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;my problem is lt_notitem bapi table. I dont have alv refresh method.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Dec 2016 16:18:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-qualnot-getdetail-refresh/m-p/363791#M7838</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-12-27T16:18:51Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_QUALNOT_GETDETAIL refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-qualnot-getdetail-refresh/m-p/363792#M7839</link>
      <description>&lt;P&gt;Did you try to refresh memory of the FG behind the BAPI, call FM IQS1_REFRESH_ALL for this purpose.&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Raymond&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jan 2017 09:58:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-qualnot-getdetail-refresh/m-p/363792#M7839</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2017-01-02T09:58:22Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_QUALNOT_GETDETAIL refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-qualnot-getdetail-refresh/m-p/363793#M7840</link>
      <description>&lt;P&gt;Thnks Raymond.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jan 2017 10:19:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-qualnot-getdetail-refresh/m-p/363793#M7840</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-01-04T10:19:20Z</dc:date>
    </item>
  </channel>
</rss>

