<?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: error running ALV report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-running-alv-report/m-p/1898895#M375587</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;Check the definition of the field catalogue. Does it look like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;g_fieldcat      TYPE lvc_t_fcat. You have defined your field catalogue of type&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;slis_fieldcat_alv. This is causing the short dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kris Chalasani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Jul 2007 22:11:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-30T22:11:00Z</dc:date>
    <item>
      <title>error running ALV report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-running-alv-report/m-p/1898885#M375577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I am tring to run my first ALV report and I am getting a dump when I run it. it is dumping at &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &amp;lt;b&amp;gt; 	Program                                 	SAPLSLVC           &lt;/P&gt;&lt;P&gt;  	Include                                 	LSLVCF36           &lt;/P&gt;&lt;P&gt;  	Row                                     	3,221              &lt;/P&gt;&lt;P&gt;  	Module type                             	(FORM)             &lt;/P&gt;&lt;P&gt;  	Module Name                             	FILL_DATA_TABLE             &lt;/P&gt;&lt;P&gt;                     &lt;/P&gt;&lt;P&gt;     macro_cell_data_get      &lt;/P&gt;&lt;P&gt;       &amp;lt;ls_fcat&amp;gt;              &lt;/P&gt;&lt;P&gt;       &amp;lt;ls_data&amp;gt;              &lt;/P&gt;&lt;P&gt;       &amp;lt;l_field_value&amp;gt;        &lt;/P&gt;&lt;P&gt;       ls_lvc_data-value.    &amp;lt;/b&amp;gt;          &lt;/P&gt;&lt;P&gt;                     &lt;/P&gt;&lt;P&gt;I searched the forum for the "macro_cell_data_get" and I found 1 response that gave a response of&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;i&amp;gt;field symbol errors in ALV are usually down to fieldcat columns incorrectly defined. Check your internal table fields of the table you pass to the alv FM against the columns defined in the fieldcat&amp;lt;/i&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not sure what I should be checking. I am looked at the structure that I have created for the ALV and the internal tables and I am not sure what to look for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any help would be greatly appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jan 2007 20:45:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-running-alv-report/m-p/1898885#M375577</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-26T20:45:37Z</dc:date>
    </item>
    <item>
      <title>Re: error running ALV report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-running-alv-report/m-p/1898886#M375578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tim, &lt;/P&gt;&lt;P&gt;Could you please post your method call or FM call to invoke ALV? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check if all the entries defined in field catalog exist in your internal table?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jan 2007 20:47:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-running-alv-report/m-p/1898886#M375578</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-26T20:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: error running ALV report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-running-alv-report/m-p/1898887#M375579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I hope this is what you are looking for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM create_fieldcatalog USING   value(p1_repid) TYPE sy-repid            &lt;/P&gt;&lt;P&gt;                        CHANGING p_it_fieldcat TYPE slis_t_fieldcat_alv.  &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Local data declarations                                                 &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  DATA:  wa_fieldcat TYPE slis_fieldcat_alv.                                                                                &lt;/P&gt;&lt;P&gt;CONSTANTS: c_l TYPE c VALUE 'L'.                                                                                &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Call the FM to build the required field catalog.                        &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'                            &lt;/P&gt;&lt;P&gt;    EXPORTING                                                             &lt;/P&gt;&lt;P&gt;      i_program_name         = p1_repid                                   &lt;/P&gt;&lt;P&gt;      i_internal_tabname     = 'IT_OUTDATA'                               &lt;/P&gt;&lt;P&gt;      i_structure_name       = 'zfi_ap_unpln_dlvry_csts_STRUCT'           &lt;/P&gt;&lt;P&gt;    CHANGING                                                              &lt;/P&gt;&lt;P&gt;      ct_fieldcat            = p_it_fieldcat[]                            &lt;/P&gt;&lt;P&gt;    EXCEPTIONS                                                            &lt;/P&gt;&lt;P&gt;      inconsistent_interface = 1                                          &lt;/P&gt;&lt;P&gt;      program_error          = 2                                          &lt;/P&gt;&lt;P&gt;      OTHERS                 = 3.                                         &lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0.                                                                                &lt;/P&gt;&lt;P&gt;LOOP AT p_it_fieldcat INTO wa_fieldcat.                                                                                &lt;/P&gt;&lt;P&gt;wa_fieldcat-ddictxt = c_l.                                                                                &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Update the fieldcatalog parameters                                      &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      CASE wa_fieldcat-fieldname.                                         &lt;/P&gt;&lt;P&gt;        WHEN 'BUKRS'.                                                     &lt;/P&gt;&lt;P&gt;          wa_fieldcat-key = c_check.                                      &lt;/P&gt;&lt;P&gt;        &lt;/P&gt;&lt;P&gt;        WHEN OTHERS.                                                                                &lt;/P&gt;&lt;P&gt;ENDCASE.                                                            &lt;/P&gt;&lt;P&gt;      MODIFY p_it_fieldcat FROM wa_fieldcat INDEX sy-tabix.               &lt;/P&gt;&lt;P&gt;    ENDLOOP.                                                              &lt;/P&gt;&lt;P&gt;  ENDIF.                                                                  &lt;/P&gt;&lt;P&gt;ENDFORM. " FORM CREATE_FIELDCATALOG                                                                                &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;$&lt;/STRONG&gt;$----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;$&lt;/STRONG&gt;$ Form display_report                                                  &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;$&lt;/STRONG&gt;$----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;FORM display_alv  CHANGING p_it_outdata  TYPE ty_t_outdata                &lt;/P&gt;&lt;P&gt;                           p_it_fieldcat TYPE slis_t_fieldcat_alv         &lt;/P&gt;&lt;P&gt;                           p_it_alv_sort TYPE ty_t_sort_alv               &lt;/P&gt;&lt;P&gt;                           p1_layout   TYPE slis_layout_alv               &lt;/P&gt;&lt;P&gt;                           value(p1_repid)    TYPE sy-repid               &lt;/P&gt;&lt;P&gt;                           value(p1_var)      TYPE disvariant.                                                                                &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Call the FM to generate the ALV in grid format.                         &lt;/P&gt;&lt;/LI&gt;&lt;/UL&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      = p1_repid                                  &lt;/P&gt;&lt;P&gt;      i_callback_user_command = 'USER_COMMAND'                            &lt;/P&gt;&lt;P&gt;      i_callback_top_of_page  = 'TOP_OF_PAGE'                             &lt;/P&gt;&lt;P&gt;      is_layout               = p1_layout                                 &lt;/P&gt;&lt;P&gt;      i_structure_name        = 'ZFI_AP_UNPLN_DLVRY_CSTS_STRUCT'          &lt;/P&gt;&lt;P&gt;      it_fieldcat             = p_it_fieldcat                             &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     it_sort                 = p_it_alv_sort                            &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      i_save                  = 'A'                                       &lt;/P&gt;&lt;P&gt;      is_variant              = p1_var                                    &lt;/P&gt;&lt;P&gt;    TABLES                                                                &lt;/P&gt;&lt;P&gt;      t_outtab                = p_it_outdata                              &lt;/P&gt;&lt;P&gt;    EXCEPTIONS                                                            &lt;/P&gt;&lt;P&gt;      program_error           = 1                                         &lt;/P&gt;&lt;P&gt;      OTHERS                  = 2.                                        &lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.                                                       &lt;/P&gt;&lt;P&gt;    FREE: p_it_outdata.                                                   &lt;/P&gt;&lt;P&gt;  ENDIF.                                                                                &lt;/P&gt;&lt;P&gt;ENDFORM.                    "display_alv                                                                                &lt;/P&gt;&lt;P&gt;also I checked all of the entries and they seemed to match. I am using the field BELNR which looks like it is a combination of two fields. I am not sure if this is causing my problem or not&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jan 2007 20:54:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-running-alv-report/m-p/1898887#M375579</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-26T20:54:21Z</dc:date>
    </item>
    <item>
      <title>Re: error running ALV report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-running-alv-report/m-p/1898888#M375580</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;Could you tell me what is the reason of structure as well as fieldcatalog ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i_structure_name = 'ZFI_AP_UNPLN_DLVRY_CSTS_STRUCT' &lt;/P&gt;&lt;P&gt;it_fieldcat = p_it_fieldcat &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Comment the structure...use the field catalog only..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward Points, If useful.&lt;/P&gt;&lt;P&gt;Kannu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jan 2007 21:08:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-running-alv-report/m-p/1898888#M375580</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-26T21:08:38Z</dc:date>
    </item>
    <item>
      <title>Re: error running ALV report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-running-alv-report/m-p/1898889#M375581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Timothy,&lt;/P&gt;&lt;P&gt;Check that fields defined in the field catalog routine are in the same order as defined in the structure/internal table  being used to pass the ALV function module.&lt;/P&gt;&lt;P&gt;They need to be in the same sequence.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Vikram&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls reward for helpful replies!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jan 2007 21:11:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-running-alv-report/m-p/1898889#M375581</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-26T21:11:39Z</dc:date>
    </item>
    <item>
      <title>Re: error running ALV report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-running-alv-report/m-p/1898890#M375582</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 uppercase letters for the structure name zfi_ap_unpln_dlvry_csts_STRUCT' . Don't use i_internal_tabname = 'IT_OUTDATA'  - if you defined TYPES ty_t_outdata TYPE table of  ZFI_AP_UNPLN_DLVRY_CSTS then you should not use the parameter i_internal_tabname, also you don't need to specify i_program_name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; 'REUSE_ALV_FIELDCATALOG_MERGE'  can be used to create the field catalog according to a DDIC structure (i_structure_name) OR an internal table (i_internal_tabname) used in a program (i_program_name). I do not know what it does if you specify both and additionally the structure name mixing uppercase and lowercase letters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jan 2007 22:47:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-running-alv-report/m-p/1898890#M375582</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2007-01-26T22:47:17Z</dc:date>
    </item>
    <item>
      <title>Re: error running ALV report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-running-alv-report/m-p/1898891#M375583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I was finally able to get back to this. I have tried all of the suggestions that you sent me and the problem still exists. &lt;/P&gt;&lt;P&gt;When I started this program, all I did was to highlight the code of an existing program, and paste it into my new program and modified it to perform my task. I did not do anything with variants or layouts or anything else concerning the ALV part of the program , due to the fact that I am not sure what to do. I have found some documentation on ALV that I have to read, I am not sure if my failure to do something within ALV is causing this error or not.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jan 2007 17:10:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-running-alv-report/m-p/1898891#M375583</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-30T17:10:16Z</dc:date>
    </item>
    <item>
      <title>Re: error running ALV report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-running-alv-report/m-p/1898892#M375584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Timothy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how do you build the field catalog?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is the structure of the internal table displayed?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you use any coloring or row selection?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 08:33:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-running-alv-report/m-p/1898892#M375584</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2007-01-31T08:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: error running ALV report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-running-alv-report/m-p/1898893#M375585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Clemens,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the probelm that I was having was that I was using a field BELNR in the structure. I coded this field in the structure which is a combination of two fields. I was selecting the field from the RBKP table which is defined as RE_BELNR which is only one field. The program was getting hung up with the structure in that there was one to many fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 12:25:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-running-alv-report/m-p/1898893#M375585</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-31T12:25:45Z</dc:date>
    </item>
    <item>
      <title>Re: error running ALV report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-running-alv-report/m-p/1898894#M375586</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Timothy &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am also fcing the same problem while upgrading from 4.6 to ecc6.0&lt;/P&gt;&lt;P&gt;plz tel me if you have found any solution for this problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what solution u used to rectify this error &lt;/P&gt;&lt;P&gt;plz write me at anit.gautam@gmail.com&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2007 11:46:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-running-alv-report/m-p/1898894#M375586</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-02T11:46:10Z</dc:date>
    </item>
    <item>
      <title>Re: error running ALV report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-running-alv-report/m-p/1898895#M375587</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;Check the definition of the field catalogue. Does it look like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;g_fieldcat      TYPE lvc_t_fcat. You have defined your field catalogue of type&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;slis_fieldcat_alv. This is causing the short dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kris Chalasani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2007 22:11:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-running-alv-report/m-p/1898895#M375587</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-30T22:11:00Z</dc:date>
    </item>
  </channel>
</rss>

