<?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: Passing type pool data type to RFC function module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-type-pool-data-type-to-rfc-function-module/m-p/1058183#M91050</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Saurabh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry, i should have looked into the type pool for definition. in RFC functions you cannot use local structure. (SLIS_SELFIELD is a local structure). to be able to use it with RFC enabled FMs , it has to be a physical structure created in SE11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Oct 2005 11:27:59 GMT</pubDate>
    <dc:creator>athavanraja</dc:creator>
    <dc:date>2005-10-12T11:27:59Z</dc:date>
    <item>
      <title>Passing type pool data type to RFC function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-type-pool-data-type-to-rfc-function-module/m-p/1058179#M91046</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 have obtained the information regarding the user selected fields in an ALV in a variable of type SLIS_SELFIELD (declared in type pool SLIS). Now I need to pass on this information to an RFC enabled funtion module. &lt;/P&gt;&lt;P&gt;I have declared an import parameter of type SLIS_SELFIELD in the function module. However I get an error message 'Type SLIS_SELFIELD is neither known nor allowed'. However, using this type is allowed for a normal function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to know if there is any way of passing this field to the RFC enabled function module, or any other data dictionary type which I can use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any pointers would be helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Saurabh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2005 10:08:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-type-pool-data-type-to-rfc-function-module/m-p/1058179#M91046</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-12T10:08:02Z</dc:date>
    </item>
    <item>
      <title>Re: Passing type pool data type to RFC function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-type-pool-data-type-to-rfc-function-module/m-p/1058180#M91047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Saurabh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess the most easiest way is to declare a Data Dictionary structure yourself based on the definition in type-pool SLIS and use this structure as reference.&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;&lt;/P&gt;&lt;P&gt;John.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2005 10:23:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-type-pool-data-type-to-rfc-function-module/m-p/1058180#M91047</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-12T10:23:50Z</dc:date>
    </item>
    <item>
      <title>Re: Passing type pool data type to RFC function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-type-pool-data-type-to-rfc-function-module/m-p/1058181#M91048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;just declare the type pool (SLIS) in the top include (global data) of the function group. then you will be able to use it in all the FMs within the function group&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And i dont think its RFC related issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2005 10:32:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-type-pool-data-type-to-rfc-function-module/m-p/1058181#M91048</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-10-12T10:32:21Z</dc:date>
    </item>
    <item>
      <title>Re: Passing type pool data type to RFC function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-type-pool-data-type-to-rfc-function-module/m-p/1058182#M91049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raja,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have already done that. But even then it gives the same error.&lt;/P&gt;&lt;P&gt;However, if I mark my FM as a normal (non RFC) function module it does not give the error and works fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Saurabh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2005 11:10:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-type-pool-data-type-to-rfc-function-module/m-p/1058182#M91049</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-12T11:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: Passing type pool data type to RFC function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-type-pool-data-type-to-rfc-function-module/m-p/1058183#M91050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Saurabh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry, i should have looked into the type pool for definition. in RFC functions you cannot use local structure. (SLIS_SELFIELD is a local structure). to be able to use it with RFC enabled FMs , it has to be a physical structure created in SE11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2005 11:27:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-type-pool-data-type-to-rfc-function-module/m-p/1058183#M91050</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-10-12T11:27:59Z</dc:date>
    </item>
  </channel>
</rss>

