<?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 Structure compatibility in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module-structure-compatibility/m-p/2386546#M530316</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Veena,&lt;/P&gt;&lt;P&gt;You just have to create a structure in SE11 with the same fields as /ZLCRD/TAX_PROCESSING_DATA. You can also create a struture in your function module and pass this as the importing parameter, but this is not advisable, as this can't be reused.&lt;/P&gt;&lt;P&gt;Once this is done, your function module will work perfectly fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anil Madhavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Jun 2007 03:26:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-05T03:26:13Z</dc:date>
    <item>
      <title>RFC function module Structure compatibility</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module-structure-compatibility/m-p/2386544#M530314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one funcion module defined in R/3 system which I need to call from my EBP system. &lt;/P&gt;&lt;P&gt;The Function module has importing parameter of the type /ZLCRD/TAX_PROCESSING_DATA, which has been created in R/3. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I try to create the similar structure in EBP, it says name space does not exist. Any idea about how this would have been created?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, if I simply define a structure with the normal z name with exactly same fields, in the same order in EBP system and pass this as the exporting parameter while calling the RFC enabled function module, would that be a problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Veena&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2007 21:02:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module-structure-compatibility/m-p/2386544#M530314</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-04T21:02:31Z</dc:date>
    </item>
    <item>
      <title>Re: RFC function module Structure compatibility</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module-structure-compatibility/m-p/2386545#M530315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Better to create structure with in ur program at EBP system and pass that parameters to RFC Function module,it will not effect any other things.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2007 21:22:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module-structure-compatibility/m-p/2386545#M530315</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-04T21:22:45Z</dc:date>
    </item>
    <item>
      <title>Re: RFC function module Structure compatibility</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module-structure-compatibility/m-p/2386546#M530316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Veena,&lt;/P&gt;&lt;P&gt;You just have to create a structure in SE11 with the same fields as /ZLCRD/TAX_PROCESSING_DATA. You can also create a struture in your function module and pass this as the importing parameter, but this is not advisable, as this can't be reused.&lt;/P&gt;&lt;P&gt;Once this is done, your function module will work perfectly fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anil Madhavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 03:26:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module-structure-compatibility/m-p/2386546#M530316</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T03:26:13Z</dc:date>
    </item>
    <item>
      <title>Re: RFC function module Structure compatibility</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module-structure-compatibility/m-p/2386547#M530317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Veena,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here ZLCRD is the name space. This is like a package in java, in case you are familiar with Java or it is like name spaces in XI, if you know XI.&lt;/P&gt;&lt;P&gt;Such name spaces have to be created by BASIS with permission from SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ideally it should not give an error if the data types match but it may give an error in case actual type names are compared. I'm not quite aware of EBP system.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 03:34:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module-structure-compatibility/m-p/2386547#M530317</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T03:34:04Z</dc:date>
    </item>
  </channel>
</rss>

