<?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 Short dump in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump/m-p/3758901#M904331</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am working on a program and while executing this I got this short dump&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Termination occurred in the ABAP program "SAPLSLVC" - in "FILL_DATA_TABLE".&lt;/P&gt;&lt;P&gt;The main program was "ZTEST ".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the source code you have the termination point in line 2734&lt;/P&gt;&lt;P&gt;of the (Include) program "LSLVCF36".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please tell me what exactly is going wrong and how to correct this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;P&gt;Rajeev&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Apr 2008 14:46:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-24T14:46:53Z</dc:date>
    <item>
      <title>Short dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump/m-p/3758901#M904331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am working on a program and while executing this I got this short dump&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Termination occurred in the ABAP program "SAPLSLVC" - in "FILL_DATA_TABLE".&lt;/P&gt;&lt;P&gt;The main program was "ZTEST ".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the source code you have the termination point in line 2734&lt;/P&gt;&lt;P&gt;of the (Include) program "LSLVCF36".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please tell me what exactly is going wrong and how to correct this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;P&gt;Rajeev&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2008 14:46:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump/m-p/3758901#M904331</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-24T14:46:53Z</dc:date>
    </item>
    <item>
      <title>Re: Short dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump/m-p/3758902#M904332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajeev,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;send me the code or error analysis please.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2008 14:51:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump/m-p/3758902#M904332</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-24T14:51:58Z</dc:date>
    </item>
    <item>
      <title>Re: Short dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump/m-p/3758903#M904333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have created a field catalog and till that time it's not giving me any short dump but as soon as use "display_alv_report" with the follwoing code it gives me a short dump:&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     = gd_repid&lt;/P&gt;&lt;P&gt;      i_callback_top_of_page = 'TOP-OF-PAGE'&lt;/P&gt;&lt;P&gt;      is_layout              = gd_layout&lt;/P&gt;&lt;P&gt;      it_fieldcat            = fieldcatalog[]&lt;/P&gt;&lt;P&gt;      i_save                 = 'X'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      t_outtab               = it_output&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;    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;error analysis doesn't say much it only says:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error analysis&lt;/P&gt;&lt;P&gt;    Short text of error message&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Long text of error message:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Technical information about&lt;/P&gt;&lt;P&gt;    Message class....... "0K"&lt;/P&gt;&lt;P&gt;    Number.............. 000&lt;/P&gt;&lt;P&gt;    Variable 1.......... " "&lt;/P&gt;&lt;P&gt;    Variable 2.......... " "&lt;/P&gt;&lt;P&gt;    Variable 3.......... " "&lt;/P&gt;&lt;P&gt;    Variable 4.......... " "&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2008 14:58:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump/m-p/3758903#M904333</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-24T14:58:03Z</dc:date>
    </item>
    <item>
      <title>Re: Short dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump/m-p/3758904#M904334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is exactly where the error is coming:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; 2713 ************************************&lt;/P&gt;&lt;P&gt; 2714 * Column per Fieldcat Entry&lt;/P&gt;&lt;P&gt; 2715 ************************************&lt;/P&gt;&lt;P&gt; 2716         ls_lvc_data-value = space.&lt;/P&gt;&lt;P&gt; 2717         clear ls_lvc_data-style.&lt;/P&gt;&lt;P&gt; 2718         loop at it_fcat_local assigning &amp;lt;ls_fcat&amp;gt;&lt;/P&gt;&lt;P&gt; 2719                 where tech ne 'X' and no_out ne 'X'.&lt;/P&gt;&lt;P&gt; 2720           if l_invisible eq 'X'.&lt;/P&gt;&lt;P&gt; 2721             clear l_invisible.&lt;/P&gt;&lt;P&gt; 2722             if &amp;lt;ls_fcat&amp;gt;-do_sum is initial.&lt;/P&gt;&lt;P&gt; 2723               continue.&lt;/P&gt;&lt;P&gt; 2724             else.&lt;/P&gt;&lt;P&gt; 2725               clear ls_lvc_data-col_pos.&lt;/P&gt;&lt;P&gt; 2726             endif.&lt;/P&gt;&lt;P&gt; 2727           endif.&lt;/P&gt;&lt;P&gt; 2728&lt;/P&gt;&lt;P&gt; 2729           add 1 to ls_lvc_data-col_pos.&lt;/P&gt;&lt;P&gt; 2730&lt;/P&gt;&lt;P&gt; 2731           assign component &amp;lt;ls_fcat&amp;gt;-fieldname&lt;/P&gt;&lt;P&gt; 2732                            of structure &amp;lt;ls_data&amp;gt; to &amp;lt;l_field_value&amp;gt;.&lt;/P&gt;&lt;P&gt; 2733           if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;             message x000(0k).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2008 15:04:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump/m-p/3758904#M904334</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-24T15:04:54Z</dc:date>
    </item>
    <item>
      <title>Re: Short dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump/m-p/3758905#M904335</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 how you fill the catalog table  fieldcatalog, it seems there's some problem there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2008 15:08:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump/m-p/3758905#M904335</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-24T15:08:13Z</dc:date>
    </item>
  </channel>
</rss>

