<?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 Function Module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module/m-p/8252137#M1631192</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All ,&lt;/P&gt;&lt;P&gt;My main objective s  insert data from client to sap ztable using SAP.NET  Controller .&lt;/P&gt;&lt;P&gt;could you please give ma a link for step by step.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 01 Oct 2011 11:36:58 GMT</pubDate>
    <dc:creator>Arif1</dc:creator>
    <dc:date>2011-10-01T11:36:58Z</dc:date>
    <item>
      <title>RFC Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module/m-p/8252133#M1631188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;any  built in RFC enable function module or BAPI to insert data into ztable ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator Message: Please (re)search before posting your question. Thread locked &amp;amp; points unassigned.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Suhas Saha on Oct 1, 2011 5:24 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Oct 2011 05:35:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module/m-p/8252133#M1631188</guid>
      <dc:creator>Arif1</dc:creator>
      <dc:date>2011-10-01T05:35:34Z</dc:date>
    </item>
    <item>
      <title>Re: RFC Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module/m-p/8252134#M1631189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi arif,&lt;/P&gt;&lt;P&gt;        &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          Any Remote enabled function module can be used as BAPI. I assume you want to update the ZTABLE from an external system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While creating the function module, in the attributes, under processing type you need to select the radio button remote-enable module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Firstly when u want to create a BAPI you will be going to se11 and creating a structure there. Basically when creating custom BAPI's we will be including some fields in that structure. So, include your ZTABLE fields in your structure. Then you should go to se37 and create a function group which again you have to create function module by giving parameters. After that you will be writing the code in editor of the another client or the system. Then you have to specify RFCDEST also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;parameters: mat like zbapi_swamy-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : bapiretn like bapiret2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of item occurs 0.&lt;/P&gt;&lt;P&gt;include structure zbapi_swamy.&lt;/P&gt;&lt;P&gt;data: end of item.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'ZBAPI_FM'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;MATERIAL = mat&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;RETURN = bapiretn&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;ITAB = item.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at item.&lt;/P&gt;&lt;P&gt;write:/ item-matnr, item-meins,item-mbrsh.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;chaitanya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Oct 2011 06:44:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module/m-p/8252134#M1631189</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-01T06:44:30Z</dc:date>
    </item>
    <item>
      <title>Re: RFC Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module/m-p/8252135#M1631190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Go with the above process mentioned by Chaitanya after creation of that go to the 'SWO1' tcode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We need to place our customized fumction module in BOR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can find the following step by step procedure in saptechnical.You will find steps for SWO1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;G.Aditya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Oct 2011 09:28:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module/m-p/8252135#M1631190</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-01T09:28:06Z</dc:date>
    </item>
    <item>
      <title>Re: RFC Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module/m-p/8252136#M1631191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arif,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to make a custom bapi and have to update the custom table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regrads,&lt;/P&gt;&lt;P&gt;Madhu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Oct 2011 11:06:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module/m-p/8252136#M1631191</guid>
      <dc:creator>madhu_vadlamani</dc:creator>
      <dc:date>2011-10-01T11:06:38Z</dc:date>
    </item>
    <item>
      <title>Re: RFC Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module/m-p/8252137#M1631192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All ,&lt;/P&gt;&lt;P&gt;My main objective s  insert data from client to sap ztable using SAP.NET  Controller .&lt;/P&gt;&lt;P&gt;could you please give ma a link for step by step.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Oct 2011 11:36:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module/m-p/8252137#M1631192</guid>
      <dc:creator>Arif1</dc:creator>
      <dc:date>2011-10-01T11:36:58Z</dc:date>
    </item>
  </channel>
</rss>

