<?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: function module clarification in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-clarification/m-p/6025827#M1348426</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should not need to do this if you have declared the data in the top of your module pool program or at the top of your report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Easiest way to check is put a breakpoint in your form fillidoc. Now check table T_EDI_DC40. If you can see the table and data inside there is no need to use the 'USING' statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 16 Aug 2009 23:31:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-08-16T23:31:19Z</dc:date>
    <item>
      <title>function module clarification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-clarification/m-p/6025826#M1348425</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;experts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am filling the control records in the perform filldata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i am using another perform to pass the control record data and data records data to the idoc  in the perform fillidoc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case do i need to use the using statement to send the control data and data reocords data  to the perform fillidoc as per the coding standards?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform filldata.&lt;/P&gt;&lt;P&gt;perform fillrecords.&lt;/P&gt;&lt;P&gt;preform fillidoc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Form filldata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here i am filling t_edi_dc40.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form fillrecords.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here i am filling t_edid_dd40.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form fillidoc. "here do i need to use the using statement if so how&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'MASTER_IDOC_DISTRIBUTE'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    master_idoc_control                  = t_edi_dc40&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OBJ_TYPE                             = ''&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CHNUM                                = ''&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  tables&lt;/P&gt;&lt;P&gt;    communication_idoc_control           =&lt;/P&gt;&lt;P&gt;    master_idoc_data                     = t_edi_dd40&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endfrom&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 16 Aug 2009 19:20:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-clarification/m-p/6025826#M1348425</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-16T19:20:35Z</dc:date>
    </item>
    <item>
      <title>Re: function module clarification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-clarification/m-p/6025827#M1348426</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should not need to do this if you have declared the data in the top of your module pool program or at the top of your report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Easiest way to check is put a breakpoint in your form fillidoc. Now check table T_EDI_DC40. If you can see the table and data inside there is no need to use the 'USING' statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 16 Aug 2009 23:31:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-clarification/m-p/6025827#M1348426</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-16T23:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: function module clarification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-clarification/m-p/6025828#M1348427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;suppose think that i have declared inside the form like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form fillrecords.&lt;/P&gt;&lt;P&gt;data :t_edid_dd40 type table of edid_dd40.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here i am filling t_edid_dd40.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then how i need to pass this to fm in the another perform fillidoc&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 04:09:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-clarification/m-p/6025828#M1348427</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-17T04:09:47Z</dc:date>
    </item>
    <item>
      <title>Re: function module clarification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-clarification/m-p/6025829#M1348428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please see the help on FORM and PERFORM statements.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 16:34:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-clarification/m-p/6025829#M1348428</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-17T16:34:31Z</dc:date>
    </item>
  </channel>
</rss>

