<?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: Get current FORM-Routine Name in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-current-form-routine-name/m-p/2553658#M581779</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kris, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for Your reply. Syst-variables won't work. &lt;/P&gt;&lt;P&gt;I tried that one first. &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards, &lt;/P&gt;&lt;P&gt;Gunther&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Jul 2007 08:05:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-17T08:05:02Z</dc:date>
    <item>
      <title>Get current FORM-Routine Name</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-current-form-routine-name/m-p/2553656#M581777</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;during runtime i want to know the current form-routine-name to write it in a variable and put it in an itab. The background-idea is to print out all procedures that have been executed after running the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any hints, suggestions how to get this done?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Gunther&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 07:55:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-current-form-routine-name/m-p/2553656#M581777</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-17T07:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: Get current FORM-Routine Name</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-current-form-routine-name/m-p/2553657#M581778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See these fields&lt;/P&gt;&lt;P&gt;sy-CPROG&lt;/P&gt;&lt;P&gt;sy-XPROG&lt;/P&gt;&lt;P&gt;sy-XFORM&lt;/P&gt;&lt;P&gt;sy-LDBPG&lt;/P&gt;&lt;P&gt;sy-TITLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 08:00:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-current-form-routine-name/m-p/2553657#M581778</guid>
      <dc:creator>former_member189059</dc:creator>
      <dc:date>2007-07-17T08:00:04Z</dc:date>
    </item>
    <item>
      <title>Re: Get current FORM-Routine Name</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-current-form-routine-name/m-p/2553658#M581779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kris, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for Your reply. Syst-variables won't work. &lt;/P&gt;&lt;P&gt;I tried that one first. &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards, &lt;/P&gt;&lt;P&gt;Gunther&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 08:05:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-current-form-routine-name/m-p/2553658#M581779</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-17T08:05:02Z</dc:date>
    </item>
    <item>
      <title>Re: Get current FORM-Routine Name</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-current-form-routine-name/m-p/2553659#M581780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Gunther,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only way to do this is to read the ABAP Call Stack in an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF t_s_abap_callstack,&lt;/P&gt;&lt;P&gt;         mainprogram LIKE sy-repid,&lt;/P&gt;&lt;P&gt;         include LIKE sy-repid,&lt;/P&gt;&lt;P&gt;         line TYPE i,&lt;/P&gt;&lt;P&gt;         eventtype LIKE abdbg-leventtype,&lt;/P&gt;&lt;P&gt;         event LIKE abdbg-levent,&lt;/P&gt;&lt;P&gt;         flag_system,&lt;/P&gt;&lt;P&gt;       END OF t_s_abap_callstack.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;variable for ABAP callstack&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DATA: g_callstack TYPE STANDARD TABLE OF t_s_abap_callstack,&lt;/P&gt;&lt;P&gt;      g_callstack_wa TYPE t_s_abap_callstack.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call 'ABAP_CALLSTACK' id 'DEPTH' field 99&lt;/P&gt;&lt;P&gt;                        id 'CALLSTACK' field g_callstack.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;g_callstack now contains the program and routine names called, in sequence.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls be careful in using this C Call; in particular, usage in a Productive environment should only be envisaged with the utmost caution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Philippe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 08:52:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-current-form-routine-name/m-p/2553659#M581780</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-17T08:52:25Z</dc:date>
    </item>
    <item>
      <title>Re: Get current FORM-Routine Name</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-current-form-routine-name/m-p/2553660#M581781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Philippe, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;excellent. Thank's for Your helpful reply! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gunther&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 09:39:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-current-form-routine-name/m-p/2553660#M581781</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-17T09:39:57Z</dc:date>
    </item>
  </channel>
</rss>

