<?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: progress  bar in a select statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488649#M1256146</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what do you mean by "Try using For All Entries instead of using JOIN. This will improve performance too"&lt;/P&gt;&lt;P&gt; ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Apr 2009 10:11:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-14T10:11:15Z</dc:date>
    <item>
      <title>progress  bar in a select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488639#M1256136</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;I am writing a report, and i have a perform for select which is very slow, so i d like to have a progress bar&lt;/P&gt;&lt;P&gt;like [this|http://abaplovers.blogspot.com/2008/05/abap-code-for-progress-bar.html], but i dont know how can this be applied in a select clause. Can anyone help ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 09:37:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488639#M1256136</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T09:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: progress  bar in a select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488640#M1256137</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;Use this Fm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAPGUI_PROGRESS_INDICATOR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Br/Manas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 09:44:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488640#M1256137</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T09:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: progress  bar in a select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488641#M1256138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Stratos,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please paste the select query here.&lt;/P&gt;&lt;P&gt;I will try to write the code for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It all depends on using sy-tabix value which needs to be passed on to the FM mentioned by you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Babu Kilari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 09:45:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488641#M1256138</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T09:45:43Z</dc:date>
    </item>
    <item>
      <title>Re: progress  bar in a select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488642#M1256139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stratos&lt;/P&gt;&lt;P&gt;Try this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA : lv_per     TYPE syst-tabix     ,
         lv_lst_p   TYPE syst-tabix     ,
         lv_total   TYPE syst-tabix     ,
         lv_char    TYPE string         .
 
  DESCRIBE TABLE i_afpo LINES lv_total .
 
  LOOP AT i_afpo ASSIGNING &amp;lt;fs_afpo&amp;gt; .
 
*   Progress Indicator
    lv_lst_p = ( sy-tabix  * 100  ) / lv_total .
*   There is no point in updating frontend if % remains same
    IF lv_lst_p NE lv_per .
      lv_per = lv_lst_p .
      lv_char = lv_per .
 
      CONCATENATE 'Processing'(002)
                  lv_char
                  '%'(003)
             INTO lv_char
        SEPARATED BY space .
 
      CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
        EXPORTING
          percentage = lv_per
          text       = lv_char.
    ENDIF.
  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Hareesh Menon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 09:48:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488642#M1256139</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T09:48:45Z</dc:date>
    </item>
    <item>
      <title>Re: progress  bar in a select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488643#M1256140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 09:53:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488643#M1256140</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T09:53:05Z</dc:date>
    </item>
    <item>
      <title>Re: progress  bar in a select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488644#M1256141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are using a SELECT.......ENDSELECT or selecting the documents within an LOOP.....ENDLOOP, call the FM "SAPGUI_PROGRESS_INDICATOR" with destination as SAPGUI. Pass on the document number or something, which would show you the current selection on the SAP GUI. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  SELECT vbeln                         " SD document no.
    FROM vbpa
    INTO (w_vbeln)
   WHERE parvw EQ c_patnr_func_z1
     AND lifnr EQ w_lifnr.

    fs_sales_patnr_doc-vbeln = w_vbeln.
    CLEAR w_vbeln.

* To display the processing status of the report on status bar.
  PERFORM display_sapgui_status USING w_vbeln.

* To fetch the sales documents of type ZEXC, ZORR and ZORE from VBAK
    PERFORM get_sales_docs_zexc_zorr_zore.

  ENDSELECT.

*----------------------------------------------------------------------*
*  FORM DISPLAY_SAPGUI_STATUS                                          *
*----------------------------------------------------------------------*
*  Subroutine for displaying the current processing status on SAPGUI   *
*  status bar.                                                         *
*----------------------------------------------------------------------*
*  --&amp;gt; P_W_STATUS - Process status text                                *
*----------------------------------------------------------------------*
FORM display_sapgui_status  USING p_w_status LIKE w_vbeln.

  CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
    DESTINATION 'SAPGUI'
    KEEPING LOGICAL UNIT OF WORK
    EXPORTING
      text                 = p_w_status
    EXCEPTIONS
      system_failure
      communication_failure.

ENDFORM.                               " DISPLAY_SAPGUI_STATUS


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 09:53:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488644#M1256141</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T09:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: progress  bar in a select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488645#M1256142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;here's the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: EKKO, "PO Header&lt;/P&gt;&lt;P&gt;        EKPO, "PO Item&lt;/P&gt;&lt;P&gt;        EKBE, "PO History (Invoice)&lt;/P&gt;&lt;P&gt;        RBKP, "Document Header: Invoice Receipt&lt;/P&gt;&lt;P&gt;        MAKT, "Material Descriptions&lt;/P&gt;&lt;P&gt;        LFA1. "Vendor Master&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"Structure&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF TS_POINV,  "Basic PO-invoice data structure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BELNR LIKE RBKP-BELNR, "Accounting Document Number&lt;/P&gt;&lt;P&gt;BEWTP LIKE EKBE-BEWTP, "PO history category&lt;/P&gt;&lt;P&gt;GJAHR LIKE EKBE-GJAHR, "Material Document Year&lt;/P&gt;&lt;P&gt;BUDAT LIKE EKBE-BUDAT, "Posting Date in the Document&lt;/P&gt;&lt;P&gt;EBELN LIKE EKBE-EBELN, "Purchasing Document Number&lt;/P&gt;&lt;P&gt;EBELP LIKE EKBE-EBELP, "Item Number of Purchasing Document&lt;/P&gt;&lt;P&gt;RLIFNR LIKE RBKP-LIFNR, "Invoice vendor&lt;/P&gt;&lt;P&gt;NAME1 LIKE LFA1-NAME1, "Vendor's name1&lt;/P&gt;&lt;P&gt;LAND1 LIKE LFA1-LAND1, "Vendor's land&lt;/P&gt;&lt;P&gt;MATNR LIKE EKPO-MATNR, "Material Number&lt;/P&gt;&lt;P&gt;TXZ01 LIKE EKPO-TXZ01, "short text&lt;/P&gt;&lt;P&gt;DFINVPO TYPE P DECIMALS 6, "Invoice Po difference per unit&lt;/P&gt;&lt;P&gt;BWAERS LIKE EKBE-WAERS,  "Currency Key&lt;/P&gt;&lt;P&gt;BPMNG LIKE EKBE-BPMNG, "Invoice Quantity in purchase order price unit&lt;/P&gt;&lt;P&gt;PBPRME LIKE EKPO-BPRME,"Order Price Unit (Purchasing)&lt;/P&gt;&lt;P&gt;WRBTR LIKE EKBE-WRBTR, "Amount in po currency&lt;/P&gt;&lt;P&gt;INVPRAM TYPE P DECIMALS 6, "Invoice price per quantity&lt;/P&gt;&lt;P&gt;MENGE LIKE EKPO-MENGE, "Purchase order quantity&lt;/P&gt;&lt;P&gt;BPRME LIKE EKPO-BPRME, "Order Price Unit (Purchasing)&lt;/P&gt;&lt;P&gt;NETWR LIKE EKPO-NETWR, "Net order value in PO currency&lt;/P&gt;&lt;P&gt;POPRAM TYPE P DECIMALS 6, "PO price per quantity.&lt;/P&gt;&lt;P&gt;SAMEQNT TYPE C LENGTH 1,&lt;/P&gt;&lt;P&gt;DFINVPO_PR TYPE P DECIMALS 2,&lt;/P&gt;&lt;P&gt;END OF TS_POINV,&lt;/P&gt;&lt;P&gt;TT_POINV TYPE TABLE OF TS_POINV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: GT_POINV TYPE TABLE OF TS_POINV,&lt;/P&gt;&lt;P&gt;      GW_POINV LIKE LINE OF GT_POINV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK B001.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: S_BUDAT FOR GW_POINV-BUDAT.  "invoice date&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK B001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT&lt;/P&gt;&lt;P&gt;  B~BUDAT&lt;/P&gt;&lt;P&gt;  B~BELNR&lt;/P&gt;&lt;P&gt;  B~BEWTP&lt;/P&gt;&lt;P&gt;  B~BPMNG&lt;/P&gt;&lt;P&gt;  B~WRBTR&lt;/P&gt;&lt;P&gt;  P~BPRME AS PBPRME&lt;/P&gt;&lt;P&gt;  B~WAERS AS BWAERS&lt;/P&gt;&lt;P&gt;  B~DMBTR&lt;/P&gt;&lt;P&gt;  B~HSWAE AS IHSWAE&lt;/P&gt;&lt;P&gt;  B~EBELN&lt;/P&gt;&lt;P&gt;  B~EBELP&lt;/P&gt;&lt;P&gt;  P~MATNR&lt;/P&gt;&lt;P&gt;  P~MENGE&lt;/P&gt;&lt;P&gt;  P~BPRME&lt;/P&gt;&lt;P&gt;  P~NETWR&lt;/P&gt;&lt;P&gt;  K~WAERS AS KWAERS&lt;/P&gt;&lt;P&gt;  K~WKURS&lt;/P&gt;&lt;P&gt;  B~HSWAE AS PHSWAE&lt;/P&gt;&lt;P&gt;  R~LIFNR AS RLIFNR&lt;/P&gt;&lt;P&gt;  B~GJAHR&lt;/P&gt;&lt;P&gt;  L~NAME1&lt;/P&gt;&lt;P&gt;  P~TXZ01&lt;/P&gt;&lt;P&gt;  L~LAND1&lt;/P&gt;&lt;P&gt;  B~GJAHR&lt;/P&gt;&lt;P&gt;    FROM&lt;/P&gt;&lt;P&gt;      EKBE AS B&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      INNER JOIN&lt;/P&gt;&lt;P&gt;        EKPO AS P&lt;/P&gt;&lt;P&gt;          ON B&lt;SUB&gt;EBELN = P&lt;/SUB&gt;EBELN&lt;/P&gt;&lt;P&gt;          AND B&lt;SUB&gt;EBELP = P&lt;/SUB&gt;EBELP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      INNER JOIN&lt;/P&gt;&lt;P&gt;        EKKO AS K&lt;/P&gt;&lt;P&gt;          ON K&lt;SUB&gt;EBELN = B&lt;/SUB&gt;EBELN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      INNER JOIN&lt;/P&gt;&lt;P&gt;        RBKP AS R&lt;/P&gt;&lt;P&gt;          ON B&lt;SUB&gt;BELNR = R&lt;/SUB&gt;BELNR&lt;/P&gt;&lt;P&gt;          AND B&lt;SUB&gt;GJAHR = R&lt;/SUB&gt;GJAHR&lt;/P&gt;&lt;P&gt;          AND R&lt;SUB&gt;LIFNR = K&lt;/SUB&gt;LIFNR  "Same vendor&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      INNER JOIN&lt;/P&gt;&lt;P&gt;        LFA1 AS L&lt;/P&gt;&lt;P&gt;        ON L&lt;SUB&gt;LIFNR = R&lt;/SUB&gt;LIFNR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      INTO CORRESPONDING FIELDS OF TABLE&lt;/P&gt;&lt;P&gt;        GT_POINV&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      WHERE&lt;/P&gt;&lt;P&gt;      B~BUDAT IN S_BUDAT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 09:55:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488645#M1256142</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T09:55:15Z</dc:date>
    </item>
    <item>
      <title>Re: progress  bar in a select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488646#M1256143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Before the select statement you need to call Function Module. Look at sample one below...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: &lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      percentage = '50'&lt;/P&gt;&lt;P&gt;      text       = g_text.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 09:59:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488646#M1256143</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T09:59:16Z</dc:date>
    </item>
    <item>
      <title>Re: progress  bar in a select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488647#M1256144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;before the select ? and how the sy-index will be count for the percentage ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 10:06:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488647#M1256144</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T10:06:36Z</dc:date>
    </item>
    <item>
      <title>Re: progress  bar in a select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488648#M1256145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stratos,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think it might not work for in the case of Joins. You can use the Progress Bar Indicator for the data fetching on a single table I guess. Here there is no scope for Select and Endselect, Loop and Endloop Isn it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try using For All Entries instead of using JOIN. This will improve performance too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Meanwhile, I will try to get something out of it as I am free.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Babu Kilari&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Babu Kilari on Apr 14, 2009 12:08 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 10:07:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488648#M1256145</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T10:07:32Z</dc:date>
    </item>
    <item>
      <title>Re: progress  bar in a select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488649#M1256146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what do you mean by "Try using For All Entries instead of using JOIN. This will improve performance too"&lt;/P&gt;&lt;P&gt; ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 10:11:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488649#M1256146</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T10:11:15Z</dc:date>
    </item>
    <item>
      <title>Re: progress  bar in a select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488650#M1256147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am suggesting you to use FOR ALL ENTRIES Statement instead of using JOINS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You had written the code completely using JOINS. That is the reason it is taking time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You got it what I meant?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 10:13:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488650#M1256147</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T10:13:01Z</dc:date>
    </item>
    <item>
      <title>Re: progress  bar in a select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488651#M1256148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not necessarily Babu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the thread opened by Gareth abt FAE Vs Joins. The thread is available in the sticky.&lt;/P&gt;&lt;P&gt;&lt;SPAN __jive_macro_name="thread" id="919187"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pk&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: kishan P on Apr 14, 2009 3:51 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 10:15:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488651#M1256148</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T10:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: progress  bar in a select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488652#M1256149</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; Please run the report &lt;STRONG&gt;RSMON000_ALV&lt;/STRONG&gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after running the report in the output &lt;STRONG&gt;TIME&lt;/STRONG&gt; column displays how many seconds each select query &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; is taking.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Sateesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2009 15:09:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488652#M1256149</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-15T15:09:50Z</dc:date>
    </item>
    <item>
      <title>Re: progress  bar in a select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488653#M1256150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem is not that you are using a JOIN. The problem is that you are doing an array fetch all at one time, so you cannot show the progress. You could do this if you changed it to a SELECT/ENDSELECT construct, but since performance is a problem, that would be counterproductive.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2009 15:32:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488653#M1256150</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-15T15:32:21Z</dc:date>
    </item>
    <item>
      <title>Re: progress  bar in a select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488654#M1256151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx &lt;STRONG&gt;Rob Burbank&lt;/STRONG&gt; that's the solution i was thinking myself.&lt;/P&gt;&lt;P&gt;It's not only the fetch. It's the sy-index. In the debbuger you pass with F5 all the select statment, thus &lt;/P&gt;&lt;P&gt;you cannot have the sy-index in the progress "loop".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  By the way i think that you dont need to have a progress bar in a select statment, because a select was made for executing quickly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that's all. thanks everyone for the replies..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2009 17:20:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/progress-bar-in-a-select-statement/m-p/5488654#M1256151</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-15T17:20:43Z</dc:date>
    </item>
  </channel>
</rss>

