<?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: Short dump in Z transaction code in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-in-z-transaction-code/m-p/2935670#M691815</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are at any screen other than the main SAP menu screen and you want you go into another transaction (without backing out of what you are already in), you should always type &amp;lt;b&amp;gt;/n&amp;lt;/b&amp;gt; in the command field before the new transaction code.  Otherwise it will not work.  You don't need to change anything with your report.&lt;/P&gt;&lt;P&gt; - April King&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Oct 2007 17:55:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-11T17:55:03Z</dc:date>
    <item>
      <title>Short dump in Z transaction code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-in-z-transaction-code/m-p/2935669#M691814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;We have a Z transaction code 'ZPROFIT' for a report. After executing the report from output screen of report if i type 'se38' in command bar and if I press enter key it is going to short dump. But if I type '/nse38' it is working fine.The short dump description is as follows .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ShrtText&lt;/P&gt;&lt;P&gt;    An exception that could not be caught occurred.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What happened?&lt;/P&gt;&lt;P&gt;    The exception 'CX_SALV_OBJECT_NOT_FOUND' was raised but was not caught at any&lt;/P&gt;&lt;P&gt;     stage in the&lt;/P&gt;&lt;P&gt;    call hierarchy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Since exceptions represent error situations, and since the system could&lt;/P&gt;&lt;P&gt;    not react adequately to this error, the current program,&lt;/P&gt;&lt;P&gt;     'CL_SALV_FUNCTIONS=============CP', had to&lt;/P&gt;&lt;P&gt;    be terminated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error analysis&lt;/P&gt;&lt;P&gt;    An exception occurred. This exception is dealt with in more detail below&lt;/P&gt;&lt;P&gt;    . The exception, which is assinged to the class 'CX_SALV_OBJECT_NOT_FOUND', was&lt;/P&gt;&lt;P&gt;     not caught,&lt;/P&gt;&lt;P&gt;    which led to a runtime error.&lt;/P&gt;&lt;P&gt;    The reason for this exception is:&lt;/P&gt;&lt;P&gt;    No text available for this exception&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Trigger Location of Exception&lt;/P&gt;&lt;P&gt;    Program                                 CL_SALV_FUNCTIONS=============CP&lt;/P&gt;&lt;P&gt;    Include                                 CL_SALV_FUNCTIONS=============CM00J&lt;/P&gt;&lt;P&gt;    Row                                     28&lt;/P&gt;&lt;P&gt;    Module type                             (METHOD)&lt;/P&gt;&lt;P&gt;    Module Name                             IS_SALV_FUNCTION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Source Code Extract&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Line  SourceCde&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    1 method is_salv_function.&lt;/P&gt;&lt;P&gt;    2   data: l_name      type string.&lt;/P&gt;&lt;P&gt;    3   data: l_msgtext   type string.&lt;/P&gt;&lt;P&gt;    4   data: ls_message  type scx_t100key.&lt;/P&gt;&lt;P&gt;    5&lt;/P&gt;&lt;P&gt;    6 *get item&lt;/P&gt;&lt;P&gt;    7   try.&lt;/P&gt;&lt;P&gt;    8       call method get_item&lt;/P&gt;&lt;P&gt;    9         exporting&lt;/P&gt;&lt;P&gt;   10           function = name&lt;/P&gt;&lt;P&gt;   11         importing&lt;/P&gt;&lt;P&gt;   12           salv_function  = value.&lt;/P&gt;&lt;P&gt;   13     catch cx_salv_object_not_found.&lt;/P&gt;&lt;P&gt;   14     try.&lt;/P&gt;&lt;P&gt;   15       call method get_group&lt;/P&gt;&lt;P&gt;   16         exporting&lt;/P&gt;&lt;P&gt;   17           group = name&lt;/P&gt;&lt;P&gt;   18         importing&lt;/P&gt;&lt;P&gt;   19           salv_function  = value.&lt;/P&gt;&lt;P&gt;   20       catch cx_salv_object_not_found.&lt;/P&gt;&lt;P&gt;   21         l_name = name.&lt;/P&gt;&lt;P&gt;   22         message w026(salv_exception)&lt;/P&gt;&lt;P&gt;   23           with 'CL_SALV_FUNCTIONS' 'IS_SALV_FUNCTION' 'Function: ' l_name&lt;/P&gt;&lt;P&gt;   24           into l_msgtext.                                     "#EC NOTEXT&lt;/P&gt;&lt;P&gt;   25&lt;/P&gt;&lt;P&gt;   26         ls_message-msgid = sy-msgid.&lt;/P&gt;&lt;P&gt;   27         ls_message-msgno = sy-msgno.&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;         raise exception type cx_salv_object_not_found&lt;/P&gt;&lt;P&gt;   29           exporting&lt;/P&gt;&lt;P&gt;   30             textid   = ls_message&lt;/P&gt;&lt;P&gt;   31             object   = 'Function'&lt;/P&gt;&lt;P&gt;   32             key      = l_name&lt;/P&gt;&lt;P&gt;   33             class    = 'CL_SALV_FUNCTIONS'                    "#EC NOTEXT&lt;/P&gt;&lt;P&gt;   34             method   = 'IS_SALV_FUNCTION'.                    "#EC NOTEXT&lt;/P&gt;&lt;P&gt;   35     endtry.&lt;/P&gt;&lt;P&gt;   36   endtry.&lt;/P&gt;&lt;P&gt;   37&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know how we can solve this?&lt;/P&gt;&lt;P&gt;Is there anything wrong in report source code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Brahma Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 17:49:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-in-z-transaction-code/m-p/2935669#M691814</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T17:49:29Z</dc:date>
    </item>
    <item>
      <title>Re: Short dump in Z transaction code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-in-z-transaction-code/m-p/2935670#M691815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are at any screen other than the main SAP menu screen and you want you go into another transaction (without backing out of what you are already in), you should always type &amp;lt;b&amp;gt;/n&amp;lt;/b&amp;gt; in the command field before the new transaction code.  Otherwise it will not work.  You don't need to change anything with your report.&lt;/P&gt;&lt;P&gt; - April King&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 17:55:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-in-z-transaction-code/m-p/2935670#M691815</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T17:55:03Z</dc:date>
    </item>
    <item>
      <title>Re: Short dump in Z transaction code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-in-z-transaction-code/m-p/2935671#M691816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Brahma,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when u said writing "SE38", r u in SAP Easy Access?&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u can try reinstall ur SAP GUI...&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;&lt;/P&gt;&lt;P&gt;Allan Cristian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 17:56:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-in-z-transaction-code/m-p/2935671#M691816</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T17:56:55Z</dc:date>
    </item>
    <item>
      <title>Re: Short dump in Z transaction code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-in-z-transaction-code/m-p/2935672#M691817</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;There is no problem in your code.You should always use either /n or /o to go to any other trsndsction.(only exception is when you are in main menu screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 18:00:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-in-z-transaction-code/m-p/2935672#M691817</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T18:00:02Z</dc:date>
    </item>
    <item>
      <title>Re: Short dump in Z transaction code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-in-z-transaction-code/m-p/2935673#M691818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi brahma,&lt;/P&gt;&lt;P&gt;the sap will work in such a way that when you are already entered into any transaction say  &lt;/P&gt;&lt;P&gt;mm01. if you type any transaction code 'se38 '   in that mm01 window . it wont go that specified transaction, but instead you can give either '/ose38' to create new session or '/nse38' to come out of current transaction ...&lt;/P&gt;&lt;P&gt;reward if usefull...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 18:04:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-in-z-transaction-code/m-p/2935673#M691818</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T18:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: Short dump in Z transaction code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-in-z-transaction-code/m-p/2935674#M691819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes...I agree to all the comments. But my thing is it is not supposed to give sgort dump. i have another reports wher in if I type 'se38' , it will stay in that screen itself without going to dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advise.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brahma Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 18:18:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-in-z-transaction-code/m-p/2935674#M691819</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T18:18:34Z</dc:date>
    </item>
    <item>
      <title>Re: Short dump in Z transaction code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-in-z-transaction-code/m-p/2935675#M691820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi brahma,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try to reinstall ur Front End...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it's not a error from ur Program, I think it's dumb because SAP GUI it's not all right working,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try to remove and install SAP GUI, maybe it's can solve ur problem...&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;&lt;/P&gt;&lt;P&gt;Allan Cristian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 18:32:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-in-z-transaction-code/m-p/2935675#M691820</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T18:32:37Z</dc:date>
    </item>
    <item>
      <title>Re: Short dump in Z transaction code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-in-z-transaction-code/m-p/2935676#M691821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you're getting the dump because your report basically thinks that the user is trying to modify it in some way.  You've got an ALV report, which is designed to be interactive.  So when the user types something into the command field it is trying to figure out what changes that should cause in the report.  To see where you should handle this, go to your report output.  Then type /h in the command field to switch debugging on.  Then you can type in SE38 to see what part of your report is trying to handle the command code.  Whatever you enter into the command field will be stored in SY-UCOMM.&lt;/P&gt;&lt;P&gt; - April&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 18:43:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-in-z-transaction-code/m-p/2935676#M691821</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T18:43:13Z</dc:date>
    </item>
  </channel>
</rss>

