<?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: dump in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump/m-p/3203118#M763481</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Paste your code here and try to find exactly which line you got error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 28 Dec 2007 16:51:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-28T16:51:34Z</dc:date>
    <item>
      <title>dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump/m-p/3203117#M763480</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;In TCODE:ST22,&lt;/P&gt;&lt;P&gt;Name of runtime error is RAISE_EXCEPTION.&lt;/P&gt;&lt;P&gt;Information on where terminated:RAISE NODE_NOT_FOUND.&lt;/P&gt;&lt;P&gt;Program: CL_GUI_ALV_TREE===============CP.&lt;/P&gt;&lt;P&gt;Please provide an analysis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewarded points.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Dec 2007 16:49:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump/m-p/3203117#M763480</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-28T16:49:09Z</dc:date>
    </item>
    <item>
      <title>Re: dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump/m-p/3203118#M763481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Paste your code here and try to find exactly which line you got error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Dec 2007 16:51:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump/m-p/3203118#M763481</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-28T16:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump/m-p/3203119#M763482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DATA LT_NODE_KEY TYPE LVC_T_NKEY.&lt;/P&gt;&lt;P&gt;  APPEND I_NODE_KEY TO LT_NODE_KEY.&lt;/P&gt;&lt;P&gt;  CALL METHOD ME-&amp;gt;ENSURE_NODES_VISIBLE&lt;/P&gt;&lt;P&gt;      EXPORTING IT_NODE_KEYS = LT_NODE_KEY&lt;/P&gt;&lt;P&gt;      EXCEPTIONS NODE_NOT_FOUND = 1.&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC = 1.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="------" /&gt;&lt;P&gt;&amp;gt;RAISE NODE_NOT_FOUND.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Dec 2007 16:54:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump/m-p/3203119#M763482</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-28T16:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump/m-p/3203120#M763483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Between try and endtry of the method you need to catch exceptions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try.&lt;/P&gt;&lt;P&gt;        cl_salv_tree=&amp;gt;factory(&lt;/P&gt;&lt;P&gt;          exporting&lt;/P&gt;&lt;P&gt;            r_container  = w_container&lt;/P&gt;&lt;P&gt;          importing&lt;/P&gt;&lt;P&gt;            r_salv_tree = w_tree&lt;/P&gt;&lt;P&gt;          changing&lt;/P&gt;&lt;P&gt;            t_table      = it_dummy ).&lt;/P&gt;&lt;P&gt;      catch cx_salv_no_new_data_allowed cx_salv_error.&lt;/P&gt;&lt;P&gt;        exit.&lt;/P&gt;&lt;P&gt;    endtry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your case catch exceptions are&lt;/P&gt;&lt;P&gt;FAILED NODE_NOT_FOUND CNTL_SYSTEM_ERROR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There was error in that method but no exception handling for the same. that is why it is giving dump.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Dec 2007 17:07:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump/m-p/3203120#M763483</guid>
      <dc:creator>former_member191735</dc:creator>
      <dc:date>2007-12-28T17:07:06Z</dc:date>
    </item>
    <item>
      <title>Re: dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump/m-p/3203121#M763484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following OSS Note Talks about your Dump.  Take a look into that and apply patches.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note 920565 - Exception NODE_NOT_FOUND in CL_GUI_ALV_TREE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Symptom &lt;/P&gt;&lt;P&gt;If the ENSURE_NODES_VISIBLE method of the CL_GUI_ALV_TREE class is called in the same PBO in which the ALV tree is generated, the NODE_NOT_FOUND exception occurs when you execute the transaction that uses the ALV tree. For example, this error occurs in transaction ME41 if you imported the Discrete Industries add-on in the system. The add-on modifies transaction ME41 in such a way that the system uses an ALV tree instead of the standard tree.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other terms &lt;/P&gt;&lt;P&gt;ME41&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reason and Prerequisites &lt;/P&gt;&lt;P&gt;This problem is caused by an error in Web GUI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Solution &lt;/P&gt;&lt;P&gt;SAP ITS 6.20: import patch 21.&lt;/P&gt;&lt;P&gt;SAP NetWeaver 2004: import patch 112.&lt;/P&gt;&lt;P&gt;NetWeaver 2004s : import patch 44.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Le'me know if it helped.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vinodh Balakrishnan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Dec 2007 17:08:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump/m-p/3203121#M763484</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-28T17:08:49Z</dc:date>
    </item>
    <item>
      <title>Re: dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump/m-p/3203122#M763485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi vinod&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting error analysis like this.&lt;/P&gt;&lt;P&gt; A RAISE statement in the program "CL_GUI_ALV_TREE===============CP" raised the&lt;/P&gt;&lt;P&gt;  exception&lt;/P&gt;&lt;P&gt; condition "NODE_NOT_FOUND".&lt;/P&gt;&lt;P&gt; Since the exception was not intercepted by a superior&lt;/P&gt;&lt;P&gt; program, processing was terminated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I should prepare analysis for this  why it is going to dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewarded points.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Dec 2007 17:25:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump/m-p/3203122#M763485</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-28T17:25:34Z</dc:date>
    </item>
  </channel>
</rss>

