<?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 Function Module Issue in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-function-module-issue/m-p/2541133#M577470</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;Declare like this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: IT_ACC_NAM TYPE STANDARD TABLE OF ACC_NAM,&lt;/P&gt;&lt;P&gt;           WA_ACC_NAME TYPE ACC_NAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Jul 2007 12:47:29 GMT</pubDate>
    <dc:creator>former_member404244</dc:creator>
    <dc:date>2007-07-12T12:47:29Z</dc:date>
    <item>
      <title>Calling Function Module Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-function-module-issue/m-p/2541127#M577464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am writing a new FM and calling a FM within it.  I get a short dump once the CALL FUNCTION.... is executed.  The error I received is this:&lt;/P&gt;&lt;P&gt;&amp;lt;i&amp;gt;&lt;/P&gt;&lt;P&gt;In the function module interface, you can specify only  &lt;/P&gt;&lt;P&gt;fields of a specific type and length under "T_ACCNAM".  &lt;/P&gt;&lt;P&gt;Although the currently specified field                  &lt;/P&gt;&lt;P&gt;"ACC_NAM" is the correct type, its length is incorrect.&amp;lt;/i&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T_ACCNAM is a table in the function module being called.  I have ACC_NAM set up in my FM to contain the exact same fields as the T_ACCNAM.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ACC_NAM is declaired as follows:&lt;/P&gt;&lt;P&gt;  data:  begin of acc_nam occurs 0,&lt;/P&gt;&lt;P&gt;          spras like t171t-spras,&lt;/P&gt;&lt;P&gt;          bzirk like t171t-bzirk,&lt;/P&gt;&lt;P&gt;          bztxt like t171t-bztxt,&lt;/P&gt;&lt;P&gt;    end of acc_nam.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't understand what this error means and how to correct it.  Please help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 12:35:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-function-module-issue/m-p/2541127#M577464</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T12:35:41Z</dc:date>
    </item>
    <item>
      <title>Re: Calling Function Module Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-function-module-issue/m-p/2541128#M577465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;well STOP doing tables with headerlines and your Problems will stop.&lt;/P&gt;&lt;P&gt;besides headerlines are obsolete anyway.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 12:38:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-function-module-issue/m-p/2541128#M577465</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T12:38:05Z</dc:date>
    </item>
    <item>
      <title>Re: Calling Function Module Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-function-module-issue/m-p/2541129#M577466</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;Yours is a table with headerline. so if you pass ACC_NAM this will only pass the Workarea not the internal table you need Pass ACC_NAM[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatively you can use&lt;/P&gt;&lt;P&gt;TYPES: begin of acc_nam,&lt;/P&gt;&lt;P&gt;spras like t171t-spras,&lt;/P&gt;&lt;P&gt;bzirk like t171t-bzirk,&lt;/P&gt;&lt;P&gt;bztxt like t171t-bztxt,&lt;/P&gt;&lt;P&gt;end of acc_nam.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: IT_ACC_NAM TYPE TABLE OF ACC_NAM,&lt;/P&gt;&lt;P&gt;      WA_ACC_NAME TYPE ACC_NAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PASS IT_ACC_NAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 12:39:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-function-module-issue/m-p/2541129#M577466</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-07-12T12:39:05Z</dc:date>
    </item>
    <item>
      <title>Re: Calling Function Module Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-function-module-issue/m-p/2541130#M577467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi danielle,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. U are calling a fm (inside ur fm),&lt;/P&gt;&lt;P&gt;   and passing the parameter T_ACCNAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Instead of declaraing using BEGIN OF,&lt;/P&gt;&lt;P&gt;   just see the FM (which u are calling),&lt;/P&gt;&lt;P&gt;   and see the Tab of TABLES.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  This table must be declared using LIKE/TYPE of that kind,&lt;/P&gt;&lt;P&gt;  so that there is no incosistency.&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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 12:39:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-function-module-issue/m-p/2541130#M577467</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T12:39:51Z</dc:date>
    </item>
    <item>
      <title>Re: Calling Function Module Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-function-module-issue/m-p/2541131#M577468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How else should I declare it?  I tried doing it various ways and the sytax was incorrect.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 12:39:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-function-module-issue/m-p/2541131#M577468</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T12:39:57Z</dc:date>
    </item>
    <item>
      <title>Re: Calling Function Module Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-function-module-issue/m-p/2541132#M577469</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;Use &lt;/P&gt;&lt;P&gt;TYPES: begin of acc_nam,&lt;/P&gt;&lt;P&gt;spras like t171t-spras,&lt;/P&gt;&lt;P&gt;bzirk like t171t-bzirk,&lt;/P&gt;&lt;P&gt;bztxt like t171t-bztxt,&lt;/P&gt;&lt;P&gt;end of acc_nam.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: IT_ACC_NAM TYPE TABLE OF ACC_NAM,&lt;/P&gt;&lt;P&gt;WA_ACC_NAME TYPE ACC_NAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PASS IT_ACC_NAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 12:42:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-function-module-issue/m-p/2541132#M577469</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-07-12T12:42:46Z</dc:date>
    </item>
    <item>
      <title>Re: Calling Function Module Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-function-module-issue/m-p/2541133#M577470</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;Declare like this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: IT_ACC_NAM TYPE STANDARD TABLE OF ACC_NAM,&lt;/P&gt;&lt;P&gt;           WA_ACC_NAME TYPE ACC_NAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 12:47:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-function-module-issue/m-p/2541133#M577470</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2007-07-12T12:47:29Z</dc:date>
    </item>
  </channel>
</rss>

