<?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 User Exit and Call Stack issues in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-and-call-stack-issues/m-p/6606772#M1438178</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abappers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement to include my customized functionality in a user Exit COPA0002.&lt;/P&gt;&lt;P&gt;I need to use the contents of an internal table of another program SAPLKEII.&lt;/P&gt;&lt;P&gt;The entries are present in the internal table and I can see it in the CAll Stack.But getting assigned into my program.&lt;/P&gt;&lt;P&gt;What is the possible solution to get the entries of the internal table from the call stack.'&lt;/P&gt;&lt;P&gt;Code snippet/Syntax would be of a great help.&lt;/P&gt;&lt;P&gt;I supppose Field symbols concepts can be used in achieving the functionality.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please waiting for the help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;P.Srikanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Jan 2010 04:38:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-01-28T04:38:42Z</dc:date>
    <item>
      <title>User Exit and Call Stack issues</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-and-call-stack-issues/m-p/6606772#M1438178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abappers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement to include my customized functionality in a user Exit COPA0002.&lt;/P&gt;&lt;P&gt;I need to use the contents of an internal table of another program SAPLKEII.&lt;/P&gt;&lt;P&gt;The entries are present in the internal table and I can see it in the CAll Stack.But getting assigned into my program.&lt;/P&gt;&lt;P&gt;What is the possible solution to get the entries of the internal table from the call stack.'&lt;/P&gt;&lt;P&gt;Code snippet/Syntax would be of a great help.&lt;/P&gt;&lt;P&gt;I supppose Field symbols concepts can be used in achieving the functionality.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please waiting for the help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;P.Srikanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jan 2010 04:38:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-and-call-stack-issues/m-p/6606772#M1438178</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-28T04:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: User Exit and Call Stack issues</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-and-call-stack-issues/m-p/6606773#M1438179</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;try this..&lt;/P&gt;&lt;P&gt; define constant &lt;/P&gt;&lt;P&gt;     CONSTANTS: lc_const(20) TYPE c VALUE '(SAPLKEII)name of internal table[]',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Define the field symbol:&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;fs_temp&amp;gt; TYPE ANY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assign the constant to filed symbol&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN (lc_const) TO &amp;lt;fs_temp&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now &amp;lt;FS_TEMP&amp;gt; contains the internal table data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jan 2010 04:51:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-and-call-stack-issues/m-p/6606773#M1438179</guid>
      <dc:creator>nirajgadre</dc:creator>
      <dc:date>2010-01-28T04:51:22Z</dc:date>
    </item>
    <item>
      <title>Re: User Exit and Call Stack issues</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-and-call-stack-issues/m-p/6606774#M1438180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srikanth, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to use memory-id. (Set or get parameter). &lt;/P&gt;&lt;P&gt;Whereever itab has been filled write it. IMPORT itab FROM MEMORY ID 'XYZ'. &lt;/P&gt;&lt;P&gt;whereever you required this table. use it  EXPORT itab TO MEMORY ID 'XYZ'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import or export has obsoleted so better to use GET/SET (SPA/GPA). &lt;/P&gt;&lt;P&gt;Link: [http://help.sap.com/erp2005_ehp_04/helpdata/EN/bf/ec077e5db911d295ae0000e82de14a/frameset.htm] &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;P&gt;Anurag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jan 2010 11:06:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-and-call-stack-issues/m-p/6606774#M1438180</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-28T11:06:24Z</dc:date>
    </item>
  </channel>
</rss>

