<?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: Help Using REUSE_ALV_GRID_DISPLAY function in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-using-reuse-alv-grid-display-function/m-p/1720239#M314429</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Holy!!!!!  Thanks a lot Anver!!! I didn't know it was case sensitive. &lt;SPAN __jive_emoticon_name="grin"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Nov 2006 06:08:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-22T06:08:54Z</dc:date>
    <item>
      <title>Help Using REUSE_ALV_GRID_DISPLAY function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-using-reuse-alv-grid-display-function/m-p/1720236#M314426</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please help me.  I've been on it for days.  I'm using the REUSE_ALV_GRID_DISPLAY function.  But everytime I run the program, the data doesn't display on the grid.  What comes out is either the variant name or when there's no variant stored, the cells are blank.  This is what I did:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: g_repid             LIKE sy-repid,&lt;/P&gt;&lt;P&gt;      gt_fieldcat         TYPE slis_t_fieldcat_alv,&lt;/P&gt;&lt;P&gt;      gt_events           TYPE slis_t_event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;  g_repid = sy-repid.&lt;/P&gt;&lt;P&gt;  PERFORM f_fieldcat_init      USING gt_fieldcat[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM f_fieldcat_init USING rt_fieldcat TYPE slis_t_fieldcat_alv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: ls_fieldcat TYPE slis_fieldcat_alv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR ls_fieldcat.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-col_pos         =   1.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-reptext_ddic    =  ' OFFICE'.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-fieldname       =  'ltext'.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-ref_tabname     =  'itab'.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-outputlen       =  40.&lt;/P&gt;&lt;P&gt;  APPEND ls_fieldcat TO rt_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR ls_fieldcat.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-col_pos         =   2.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-reptext_ddic    =  ' OFFICE'.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-fieldname       =  'ltext'.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-ref_tabname     =  'itab'.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-outputlen       =  40.&lt;/P&gt;&lt;P&gt;  APPEND ls_fieldcat TO rt_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR ls_fieldcat.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-col_pos         =   3.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-reptext_ddic    =  ' RC #'.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-fieldname       =  'kostl'.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-ref_tabname     =  'itab'.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-outputlen       =  10.&lt;/P&gt;&lt;P&gt;  APPEND ls_fieldcat TO rt_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR ls_fieldcat.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-col_pos         =   4.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-reptext_ddic    =  ' Date'.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-fieldname       =  'p_date'.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-ref_tabname     =  'itab'.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-outputlen       =  20.&lt;/P&gt;&lt;P&gt;  APPEND ls_fieldcat TO rt_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR ls_fieldcat.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-col_pos         =   5.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-reptext_ddic    =  ' Basic Salary'.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-fieldname       =  'basic'.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-ref_tabname     =  'itab'.&lt;/P&gt;&lt;P&gt;  ls_fieldcat-outputlen       =  20.&lt;/P&gt;&lt;P&gt;  APPEND ls_fieldcat TO rt_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      i_callback_program = g_repid&lt;/P&gt;&lt;P&gt;      is_layout          = gs_layout&lt;/P&gt;&lt;P&gt;      it_fieldcat        = gt_fieldcat[]&lt;/P&gt;&lt;P&gt;      it_events          = gt_events[]&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      t_outtab           = itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Nov 2006 06:01:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-using-reuse-alv-grid-display-function/m-p/1720236#M314426</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-22T06:01:06Z</dc:date>
    </item>
    <item>
      <title>Re: Help Using REUSE_ALV_GRID_DISPLAY function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-using-reuse-alv-grid-display-function/m-p/1720237#M314427</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;cahnge to capital letter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ls_fieldcat-fieldname = 'LTEXT'.&lt;/P&gt;&lt;P&gt;ls_fieldcat-ref_tabname = 'ITAB'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;Anver&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Nov 2006 06:03:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-using-reuse-alv-grid-display-function/m-p/1720237#M314427</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-11-22T06:03:21Z</dc:date>
    </item>
    <item>
      <title>Re: Help Using REUSE_ALV_GRID_DISPLAY function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-using-reuse-alv-grid-display-function/m-p/1720238#M314428</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;try to capital letters and check the same,when ur filling the field catalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Nov 2006 06:05:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-using-reuse-alv-grid-display-function/m-p/1720238#M314428</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2006-11-22T06:05:32Z</dc:date>
    </item>
    <item>
      <title>Re: Help Using REUSE_ALV_GRID_DISPLAY function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-using-reuse-alv-grid-display-function/m-p/1720239#M314429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Holy!!!!!  Thanks a lot Anver!!! I didn't know it was case sensitive. &lt;SPAN __jive_emoticon_name="grin"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Nov 2006 06:08:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-using-reuse-alv-grid-display-function/m-p/1720239#M314429</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-22T06:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: Help Using REUSE_ALV_GRID_DISPLAY function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-using-reuse-alv-grid-display-function/m-p/1720240#M314430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if ur issue solved completely, kindly mark 10 points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;Anver&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Nov 2006 06:12:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-using-reuse-alv-grid-display-function/m-p/1720240#M314430</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-11-22T06:12:16Z</dc:date>
    </item>
  </channel>
</rss>

