<?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: problem with call function close_form in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-function-close-form/m-p/7242448#M1526515</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are right &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Keshav.T on Sep 24, 2010 9:34 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 Sep 2010 16:03:34 GMT</pubDate>
    <dc:creator>kesavadas_thekkillath</dc:creator>
    <dc:date>2010-09-24T16:03:34Z</dc:date>
    <item>
      <title>problem with call function close_form</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-function-close-form/m-p/7242439#M1526506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a problem with function module close_form.I dont know if I am doing something wrong but please help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the issue is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
declarations:
data: gt_itcpp type table of itcpp,
         gt_otfdat type table of itcoo.
 CALL FUNCTION 'CLOSE_FORM
 EXPORTING
   RESULT  = gt_itcpp
 TABLES
   otfdata = gt_otfdat
 EXCEPTIONS
   OTHERS  = 1.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DUMP: FUNCTION PARAMETER RESULT IS UNKNOWN.&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, 24 Sep 2010 10:42:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-function-close-form/m-p/7242439#M1526506</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-24T10:42:24Z</dc:date>
    </item>
    <item>
      <title>Re: problem with call function close_form</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-function-close-form/m-p/7242440#M1526507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
data: gt_itcpp type table of itcpp,
         gt_otfdat type table of itcoo.
 CALL FUNCTION 'CLOSE_FORM
 EXPORTING
   RESULT  = gt_itcpp  "&amp;lt;--Should pass a structure not a internal table
 TABLES
   otfdata = gt_otfdat
 EXCEPTIONS
   OTHERS  = 1.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Sep 2010 10:50:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-function-close-form/m-p/7242440#M1526507</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-09-24T10:50:36Z</dc:date>
    </item>
    <item>
      <title>Re: problem with call function close_form</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-function-close-form/m-p/7242441#M1526508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the function call is incorrect.try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CLOSE_FORM'&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   RESULT  = gt_itcpp&lt;/P&gt;&lt;P&gt; TABLES&lt;/P&gt;&lt;P&gt;   otfdata = gt_otfdat&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   OTHERS  = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;replace "exporting" with importing&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Sep 2010 10:51:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-function-close-form/m-p/7242441#M1526508</guid>
      <dc:creator>former_member188827</dc:creator>
      <dc:date>2010-09-24T10:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: problem with call function close_form</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-function-close-form/m-p/7242442#M1526509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can you paste your function call here because "RESULT" should be placed in importing section rather than exporting&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Sep 2010 11:03:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-function-close-form/m-p/7242442#M1526509</guid>
      <dc:creator>former_member188827</dc:creator>
      <dc:date>2010-09-24T11:03:29Z</dc:date>
    </item>
    <item>
      <title>Re: problem with call function close_form</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-function-close-form/m-p/7242443#M1526510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pretty basic question and although marked as solved, it still doesn't look correct. So please be careful when assigning points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Keshav??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Sep 2010 14:51:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-function-close-form/m-p/7242443#M1526510</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-24T14:51:49Z</dc:date>
    </item>
    <item>
      <title>Re: problem with call function close_form</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-function-close-form/m-p/7242444#M1526511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are always welcome to unassign it &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My mistake ..shouldnt have answered it .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it still doesn't look correct&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Sep 2010 14:58:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-function-close-form/m-p/7242444#M1526511</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-09-24T14:58:46Z</dc:date>
    </item>
    <item>
      <title>Re: problem with call function close_form</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-function-close-form/m-p/7242445#M1526512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No problem answering it, but shouldn't it be something like:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: wa_itcpp  TYPE          itcpp,
      gt_otfdat TYPE TABLE OF itcoo.

CALL FUNCTION 'CLOSE_FORM'
  IMPORTING
    RESULT  = wa_itcpp
  TABLES
    otfdata = gt_otfdat
  EXCEPTIONS
    OTHERS  = 1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Sep 2010 15:11:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-function-close-form/m-p/7242445#M1526512</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-24T15:11:12Z</dc:date>
    </item>
    <item>
      <title>Re: problem with call function close_form</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-function-close-form/m-p/7242446#M1526513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes Rob.&lt;/P&gt;&lt;P&gt;I have already mentioned it there&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"&amp;lt;--Should pass a structure not a internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Sep 2010 15:14:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-function-close-form/m-p/7242446#M1526513</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-09-24T15:14:48Z</dc:date>
    </item>
    <item>
      <title>Re: problem with call function close_form</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-function-close-form/m-p/7242447#M1526514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My point was that there are actually two problems with the original code: the one that you pointed out and the one that abapuser pointed out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Although both were very helpful individually, I don't think either one actually solved the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It would be misleading to anyone searching the forum looking for posts that solved a problem similar to theirs and only implemented half the solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In fact abapuser's answer is the one that answers the question that was actually asked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Sep 2010 15:55:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-function-close-form/m-p/7242447#M1526514</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-24T15:55:24Z</dc:date>
    </item>
    <item>
      <title>Re: problem with call function close_form</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-function-close-form/m-p/7242448#M1526515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are right &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Keshav.T on Sep 24, 2010 9:34 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Sep 2010 16:03:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-function-close-form/m-p/7242448#M1526515</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-09-24T16:03:34Z</dc:date>
    </item>
    <item>
      <title>Re: problem with call function close_form</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-function-close-form/m-p/7242449#M1526516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Keshav - just to be clear, the issue was not really with anything you posted. It was with the OP who was (I hope) just not being particularly careful in assigning points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Sep 2010 16:46:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-function-close-form/m-p/7242449#M1526516</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-24T16:46:29Z</dc:date>
    </item>
  </channel>
</rss>

