<?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: RFC INSERT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-insert/m-p/1514397#M236935</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i did like this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in tables tab:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;ITAB          LIKE         ZTakeData&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in Source code tab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;insert ZTakeData from table itab.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and while checking Syntax its saying&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"Reference parameters are not allowed with RFC"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 04 Aug 2006 14:35:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-04T14:35:21Z</dc:date>
    <item>
      <title>RFC INSERT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-insert/m-p/1514391#M236929</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;How to create a Remote Enabled Function Module with Insert code. I have a database table call ZTakeData.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and i want to insert data into that using some RFC FUnc Module..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any Sugg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Aug 2006 14:21:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-insert/m-p/1514391#M236929</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-04T14:21:38Z</dc:date>
    </item>
    <item>
      <title>Re: RFC INSERT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-insert/m-p/1514392#M236930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Write a function module and make it Remote-Enabled. In the function module declare required variables &amp;amp; also table structure.&lt;/P&gt;&lt;P&gt; In the code access the table passed and update the respective table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Aug 2006 14:23:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-insert/m-p/1514392#M236930</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-04T14:23:58Z</dc:date>
    </item>
    <item>
      <title>Re: RFC INSERT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-insert/m-p/1514393#M236931</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;Thanks for reply, i need steps please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Aug 2006 14:24:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-insert/m-p/1514393#M236931</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-04T14:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: RFC INSERT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-insert/m-p/1514394#M236932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can create your function module via SE80 or SE37, in the attributes tab, mark as "Remote Enabled",  you can then define your interface,  you can use a TABLES paramter typed like the structure of your "Z" table.  Then in the code of your function module, you only need one statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here im_ZTakeData is the name of the TABLES parameter that you defined.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

insert ZTakeData from table im_ZTakeData.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now all you need to do is call the RFC and pass an internal table with the same structure of your "Z" table and all records will be inserted into the "Z" table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Aug 2006 14:25:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-insert/m-p/1514394#M236932</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-08-04T14:25:51Z</dc:date>
    </item>
    <item>
      <title>Re: RFC INSERT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-insert/m-p/1514395#M236933</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;anything to do in Import, Export, Tables tab while creating Func Module?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Aug 2006 14:27:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-insert/m-p/1514395#M236933</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-04T14:27:39Z</dc:date>
    </item>
    <item>
      <title>Re: RFC INSERT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-insert/m-p/1514396#M236934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, As I said, I would suggest passing the data thru the TABLES parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the name of the parmater, use something meaningful and in the next column enter LIKE, in the next column use the name of your "Z" table, then add the line of code that I mentioned above in to the source code.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Aug 2006 14:30:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-insert/m-p/1514396#M236934</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-08-04T14:30:15Z</dc:date>
    </item>
    <item>
      <title>Re: RFC INSERT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-insert/m-p/1514397#M236935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i did like this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in tables tab:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;ITAB          LIKE         ZTakeData&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in Source code tab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;insert ZTakeData from table itab.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and while checking Syntax its saying&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"Reference parameters are not allowed with RFC"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Aug 2006 14:35:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-insert/m-p/1514397#M236935</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-04T14:35:21Z</dc:date>
    </item>
    <item>
      <title>Re: RFC INSERT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-insert/m-p/1514398#M236936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes,  are you passing any other parameters in the IMPORT or EXPORT tab?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You usually see this error when passing by reference in an RFC.  If you have anything on the IMPORT or EXPORT paramters tabs, you need to check the checkbox for "passing by value".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Aug 2006 14:39:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-insert/m-p/1514398#M236936</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-08-04T14:39:34Z</dc:date>
    </item>
    <item>
      <title>Re: RFC INSERT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-insert/m-p/1514399#M236937</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;i am sorry, i have something in export tab and now i removed it.. now its activated..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;actually, whats the use of Import and Export Tab?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Aug 2006 14:42:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-insert/m-p/1514399#M236937</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-04T14:42:24Z</dc:date>
    </item>
    <item>
      <title>Re: RFC INSERT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-insert/m-p/1514400#M236938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IMPORT and EXPORT parameters are usually single fields or structures containing one line of data, and you use the TABLES parameter for passing multy line data like internal tables.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually the best practice has shifted to using only IMPORT and EXPORT parameters and not use the TABLES parameters at all.  You are now supposed to pass your internal tables via IMPORT and EXPORT parameters using Table Types defined in the ABAP dictionary.  To tell you the true, I have not yet adopted this practice, and I haven't see many that have.  But there is nothing wrong with using the TABLES parameters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Aug 2006 14:47:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-insert/m-p/1514400#M236938</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-08-04T14:47:43Z</dc:date>
    </item>
  </channel>
</rss>

