<?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: calling internal table in smartform in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-internal-table-in-smartform/m-p/6349118#M1398613</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;not working, structure l_xekpo is already defined in program, and i am using it in smartform&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by defining in tables sections as L_XEKPO LIKE EKPO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know how to define l_exkpo as it is a structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regrds,&lt;/P&gt;&lt;P&gt;Manisha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 Nov 2009 05:02:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-11-09T05:02:29Z</dc:date>
    <item>
      <title>calling internal table in smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-internal-table-in-smartform/m-p/6349116#M1398611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hye,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;using structure l_xekpo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In global definition intilalization code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : GT_XEKPO LIKE L_XEKPO OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA ekpo_wa LIKE L_XEKPO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at L_XEKPO into ekpo_wa.&lt;/P&gt;&lt;P&gt;  move ekpo_wa to gt_xekpo.&lt;/P&gt;&lt;P&gt;  append gt_xekpo.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now in output parameters need to give gt_xekpo??? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but facing problem with definition in global area??&lt;/P&gt;&lt;P&gt;I provided &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In form Interface tables have defined:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_xekpo like ekpo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In global definition types defined.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : TY_XEKPO TYPE TABLE OF L_XEKPO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its showing error : Type l_xekpo is unkown.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone provide solution how to go for this and get gt_ekpo defined to be used in ouput parameters .....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Nov 2009 19:04:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-internal-table-in-smartform/m-p/6349116#M1398611</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-08T19:04:23Z</dc:date>
    </item>
    <item>
      <title>Re: calling internal table in smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-internal-table-in-smartform/m-p/6349117#M1398612</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;Have u created the L_XEKPO or it is already there in SAP standard. IF it is declared in the program ,Create L_XEKPO structure in SE11 that means globally.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please revert if it not working...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srinivas...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Nov 2009 02:09:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-internal-table-in-smartform/m-p/6349117#M1398612</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-09T02:09:37Z</dc:date>
    </item>
    <item>
      <title>Re: calling internal table in smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-internal-table-in-smartform/m-p/6349118#M1398613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;not working, structure l_xekpo is already defined in program, and i am using it in smartform&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by defining in tables sections as L_XEKPO LIKE EKPO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know how to define l_exkpo as it is a structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regrds,&lt;/P&gt;&lt;P&gt;Manisha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Nov 2009 05:02:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-internal-table-in-smartform/m-p/6349118#M1398613</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-09T05:02:29Z</dc:date>
    </item>
    <item>
      <title>Re: calling internal table in smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-internal-table-in-smartform/m-p/6349119#M1398614</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;In Form interface&lt;DEL&gt;&amp;gt;Tables&lt;/DEL&gt;&amp;gt;Try to give tble type of EKPO (EKPO_TTY)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Dharma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Nov 2009 05:21:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-internal-table-in-smartform/m-p/6349119#M1398614</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-09T05:21:02Z</dc:date>
    </item>
    <item>
      <title>Re: calling internal table in smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-internal-table-in-smartform/m-p/6349120#M1398615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manisha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Please ignore my previous suggestion. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to define GT_XEKPO &amp;amp; ekpo_wa as of type EKPO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now you can use these variables directly in the Initialization tab of Global definitions for writing your logic.&lt;/P&gt;&lt;P&gt;Pass this variable thorugh input/outpur parameters of initialization tab if required&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. To make use of the variable gt_xekpo thorugh out the smartform, you need to pass this through output parametes of initialization tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Swarna Munukoti.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Swarna Munukoti on Nov 9, 2009 6:58 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Nov 2009 05:45:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-internal-table-in-smartform/m-p/6349120#M1398615</guid>
      <dc:creator>former_member217544</dc:creator>
      <dc:date>2009-11-09T05:45:39Z</dc:date>
    </item>
  </channel>
</rss>

