<?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: No data showing up in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-data-showing-up/m-p/12645330#M2014650</link>
    <description>&lt;P&gt;hi Frederic!&lt;/P&gt;&lt;P&gt;still not showing any data though, can you help me with that &lt;/P&gt;</description>
    <pubDate>Tue, 14 Mar 2023 03:06:45 GMT</pubDate>
    <dc:creator>former_member844813</dc:creator>
    <dc:date>2023-03-14T03:06:45Z</dc:date>
    <item>
      <title>No data showing up</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-data-showing-up/m-p/12645328#M2014648</link>
      <description>&lt;P&gt;i need help with my program not showing any data, help me what did i do wrong&lt;/P&gt;
  &lt;P&gt;here's the code&lt;/P&gt; 
  &lt;PRE&gt;&lt;CODE&gt;*&amp;amp;---------------------------------------------------------------------*&lt;BR /&gt;*&amp;amp; Report  ZGETFBL&lt;BR /&gt;*&amp;amp;&lt;BR /&gt;*&amp;amp;---------------------------------------------------------------------*&lt;BR /&gt;*&amp;amp;&lt;BR /&gt;*&amp;amp;&lt;BR /&gt;*&amp;amp;---------------------------------------------------------------------*&lt;BR /&gt;REPORT  ZGETFBL.&lt;BR /&gt;&lt;BR /&gt;TABLES: BSAS,&lt;BR /&gt;        BSIS.&lt;BR /&gt;&lt;BR /&gt;DATA: ITAB TYPE TABLE OF ZDATAGL,&lt;BR /&gt;      WA TYPE ZDATAGL.&lt;BR /&gt;&lt;BR /&gt;START-OF-SELECTION.&lt;BR /&gt;&lt;BR /&gt;SELECT MANDT HKONT AUGBL KOSTL DMBTR FROM BSAS&lt;BR /&gt;   INTO TABLE ITAB&lt;BR /&gt;  WHERE HKONT = '6105001' AND BUDAT BETWEEN '01.09.2022' AND '30.09.2022'.&lt;BR /&gt;&lt;BR /&gt;SELECT MANDT HKONT AUGBL KOSTL DMBTR FROM BSIS&lt;BR /&gt;  APPENDING TABLE ITAB&lt;BR /&gt;    WHERE HKONT = '6105001' AND BUDAT BETWEEN '01.09.2022' AND '30.09.2022'.&lt;BR /&gt;&lt;BR /&gt;END-OF-SELECTION.&lt;BR /&gt;MODIFY ZDATAGL FROM TABLE ITAB.&lt;BR /&gt;&lt;BR /&gt;CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'&lt;BR /&gt;  EXPORTING&lt;BR /&gt;*   I_INTERFACE_CHECK                 = ' '&lt;BR /&gt;*   I_BYPASSING_BUFFER                = ' '&lt;BR /&gt;*   I_BUFFER_ACTIVE                   = ' '&lt;BR /&gt;*   I_CALLBACK_PROGRAM                = ' '&lt;BR /&gt;*   I_CALLBACK_PF_STATUS_SET          = ' '&lt;BR /&gt;*   I_CALLBACK_USER_COMMAND           = ' '&lt;BR /&gt;*   I_CALLBACK_TOP_OF_PAGE            = ' '&lt;BR /&gt;*   I_CALLBACK_HTML_TOP_OF_PAGE       = ' '&lt;BR /&gt;*   I_CALLBACK_HTML_END_OF_LIST       = ' '&lt;BR /&gt;    I_STRUCTURE_NAME                  = 'ZDATAGL'&lt;BR /&gt;*   I_BACKGROUND_ID                   = ' '&lt;BR /&gt;*   I_GRID_TITLE                      =&lt;BR /&gt;*   I_GRID_SETTINGS                   =&lt;BR /&gt;*   IS_LAYOUT                         =&lt;BR /&gt;*   IT_FIELDCAT                       =&lt;BR /&gt;*   IT_EXCLUDING                      =&lt;BR /&gt;*   IT_SPECIAL_GROUPS                 =&lt;BR /&gt;*   IT_SORT                           =&lt;BR /&gt;*   IT_FILTER                         =&lt;BR /&gt;*   IS_SEL_HIDE                       =&lt;BR /&gt;*   I_DEFAULT                         = 'X'&lt;BR /&gt;*   I_SAVE                            = ' '&lt;BR /&gt;*   IS_VARIANT                        =&lt;BR /&gt;*   IT_EVENTS                         =&lt;BR /&gt;*   IT_EVENT_EXIT                     =&lt;BR /&gt;*   IS_PRINT                          =&lt;BR /&gt;*   IS_REPREP_ID                      =&lt;BR /&gt;*   I_SCREEN_START_COLUMN             = 0&lt;BR /&gt;*   I_SCREEN_START_LINE               = 0&lt;BR /&gt;*   I_SCREEN_END_COLUMN               = 0&lt;BR /&gt;*   I_SCREEN_END_LINE                 = 0&lt;BR /&gt;*   I_HTML_HEIGHT_TOP                 = 0&lt;BR /&gt;*   I_HTML_HEIGHT_END                 = 0&lt;BR /&gt;*   IT_ALV_GRAPHICS                   =&lt;BR /&gt;*   IT_HYPERLINK                      =&lt;BR /&gt;*   IT_ADD_FIELDCAT                   =&lt;BR /&gt;*   IT_EXCEPT_QINFO                   =&lt;BR /&gt;*   IR_SALV_FULLSCREEN_ADAPTER        =&lt;BR /&gt;* IMPORTING&lt;BR /&gt;*   E_EXIT_CAUSED_BY_CALLER           =&lt;BR /&gt;*   ES_EXIT_CAUSED_BY_USER            =&lt;BR /&gt;  TABLES&lt;BR /&gt;    T_OUTTAB                          = ITAB&lt;BR /&gt; EXCEPTIONS&lt;BR /&gt;   PROGRAM_ERROR                     = 1&lt;BR /&gt;   OTHERS                            = 2&lt;BR /&gt;          .&lt;BR /&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;BR /&gt;* Implement suitable error handling here&lt;BR /&gt;ENDIF.&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 13 Mar 2023 14:06:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-data-showing-up/m-p/12645328#M2014648</guid>
      <dc:creator>former_member844813</dc:creator>
      <dc:date>2023-03-13T14:06:40Z</dc:date>
    </item>
    <item>
      <title>Re: No data showing up</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-data-showing-up/m-p/12645329#M2014649</link>
      <description>&lt;P&gt;The internal date format of SAP is YYYYMMDD &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;BETWEEN '22220901' AND '22220931'.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 13 Mar 2023 14:43:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-data-showing-up/m-p/12645329#M2014649</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2023-03-13T14:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: No data showing up</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-data-showing-up/m-p/12645330#M2014650</link>
      <description>&lt;P&gt;hi Frederic!&lt;/P&gt;&lt;P&gt;still not showing any data though, can you help me with that &lt;/P&gt;</description>
      <pubDate>Tue, 14 Mar 2023 03:06:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-data-showing-up/m-p/12645330#M2014650</guid>
      <dc:creator>former_member844813</dc:creator>
      <dc:date>2023-03-14T03:06:45Z</dc:date>
    </item>
    <item>
      <title>Re: No data showing up</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-data-showing-up/m-p/12645331#M2014651</link>
      <description>&lt;P&gt;You have to put a break point (break userid) just before the call of the function and check the internal table is not empty. &lt;/P&gt;&lt;P&gt;If it is empty, check using SE16 transaction if there are some entries with your WHERE conditions &lt;/P&gt;</description>
      <pubDate>Tue, 14 Mar 2023 07:07:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-data-showing-up/m-p/12645331#M2014651</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2023-03-14T07:07:20Z</dc:date>
    </item>
    <item>
      <title>Re: No data showing up</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-data-showing-up/m-p/12645332#M2014652</link>
      <description>&lt;P&gt;Your biggest mistake is using old technology for your report. Instead of REUSE_ALV_GRID_DISPLAY', use CL_SALV_TABLE. There's many blogs about it.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Mar 2023 08:34:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-data-showing-up/m-p/12645332#M2014652</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2023-03-14T08:34:17Z</dc:date>
    </item>
    <item>
      <title>Re: No data showing up</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-data-showing-up/m-p/12645333#M2014653</link>
      <description>Suggestions&lt;OL&gt;&lt;LI&gt;Define the range of date as a select-options and the GL account as a parameter (and then debug and look at the actual values of those fields)&lt;/LI&gt;&lt;LI&gt;Use an OO ALV class such as CL_SALV_TABLE and not an outdated FM&lt;/LI&gt;&lt;LI&gt;Update the Z table thru a Function Code managed in the ALV&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Tue, 14 Mar 2023 10:01:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-data-showing-up/m-p/12645333#M2014653</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2023-03-14T10:01:47Z</dc:date>
    </item>
  </channel>
</rss>

