<?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: How to make a normal Function Module remote able function module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-a-normal-function-module-remote-able-function-module/m-p/7166819#M1516639</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;If you navigate to the Attribute of the function module, you will get 3 sections. Please look into the Processing Type Section. There you will find 3 options as follows. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Normal Function Module&lt;/P&gt;&lt;P&gt;Remote-Enabled module&lt;/P&gt;&lt;P&gt;Update Module &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please select the Remote enable module, then your function will be remote enabled.&lt;/P&gt;&lt;P&gt;Please let me know if you facing any issue regarding this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Satrajit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Aug 2010 11:43:10 GMT</pubDate>
    <dc:creator>satrajit_chatterjee</dc:creator>
    <dc:date>2010-08-16T11:43:10Z</dc:date>
    <item>
      <title>How to make a normal Function Module remote able function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-a-normal-function-module-remote-able-function-module/m-p/7166814#M1516634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am a beginner in abap programming. I have made a programm in Se80 which shows all the nodes of the active hierarchies (5 stk.)&lt;/P&gt;&lt;P&gt;in a ALV grid. Therefore i am getting the active hierarchies from table "rshiedir" and use the normal function module "RSSH_HIERARCHY_READ" to display the nodes of the hierarchie. The problem is the hierarchies do have a different techical name in the systems (development-acceptance-productive) but the descriptive nbame is the same in all systems. Because of the difference of the technical names I can use this programm in just one system. But the hierarchy content should be comparable and be displayed in all three systems. &lt;STRONG&gt;&lt;EM&gt;Therefore i would like to create a remoteable function module which covers the normal one.&lt;/EM&gt;&lt;/STRONG&gt; &lt;STRONG&gt;Can i do this and how can i create a remoteable function module and use it?&lt;/STRONG&gt;  &lt;/P&gt;&lt;P&gt;If not do you know any remotable functgion module which gives back all the nodes from an active hierarchy in table "RShiedir".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and kind regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Murat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Aug 2010 11:09:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-a-normal-function-module-remote-able-function-module/m-p/7166814#M1516634</guid>
      <dc:creator>former_member207487</dc:creator>
      <dc:date>2010-08-16T11:09:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a normal Function Module remote able function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-a-normal-function-module-remote-able-function-module/m-p/7166815#M1516635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;A normal FM can be made remote enable by selecting Remote-Enabled Module option in the attributes of the FM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Aug 2010 11:17:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-a-normal-function-module-remote-able-function-module/m-p/7166815#M1516635</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-16T11:17:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a normal Function Module remote able function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-a-normal-function-module-remote-able-function-module/m-p/7166816#M1516636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Simple, create a wrapper RFC (similar to 'RSSH_HIERARCHY_READ' ) &amp;amp; call the normal FM 'RSSH_HIERARCHY_READ' inside the wrapper.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FUNCTION z_rssh_hierarchy_read.
*"----------------------------------------------------------------------
*"*"Global Interface:
*"  IMPORTING
*"     VALUE(I_RSHIEDIRKEY) TYPE  RSHI_S_RSHIEDIRKEY OPTIONAL
*"     VALUE(I_RSHIEDIRLOG) TYPE  RSHI_S_RSHIEDIRLOG OPTIONAL
*"     VALUE(I_DATE) TYPE  RSHI_DATE DEFAULT SY-DATUM
*"  EXPORTING
*"     REFERENCE(E_RSHIEDIR) TYPE  RSHI_S_HIEDIR
*"     REFERENCE(E_T_RSNODES) TYPE  RSHI_T_HIENODE
*"     REFERENCE(E_TH_RSINTERVAL) TYPE  RSHI_TH_INTERVAL
*"     REFERENCE(E_DUPLICATE_LEAFS) TYPE  RS_BOOL
*"     REFERENCE(E_T_RSNODES_LNK) TYPE  RSHI_T_HIENODE
*"  EXCEPTIONS
*"      INVALID_HIERARCHY
*"      NAME_ERROR
*"      IOBJ_NOT_FOUND
*"----------------------------------------------------------------------

" Don't forget to add TYPE-POOLS rshi to the FuGr. TOP include
  CALL FUNCTION 'RSSH_HIERARCHY_READ'
    EXPORTING
      i_rshiedirkey     = i_rshiedirkey
      i_rshiedirlog     = i_rshiedirlog
      i_date            = i_date
    IMPORTING
      e_rshiedir        = e_rshiedir
      e_t_rsnodes       = e_t_rsnodes
      e_th_rsinterval   = e_th_rsinterval
      e_duplicate_leafs = e_duplicate_leafs
      e_t_rsnodes_lnk   = e_t_rsnodes_lnk
    EXCEPTIONS
      invalid_hierarchy = 1
      name_error        = 2
      iobj_not_found    = 3
      OTHERS            = 4.
  IF sy-subrc &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here Z_RSSH_HIERARCHY_READ is the wrapper RFC. Hope you get the point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Aug 2010 11:20:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-a-normal-function-module-remote-able-function-module/m-p/7166816#M1516636</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-08-16T11:20:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a normal Function Module remote able function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-a-normal-function-module-remote-able-function-module/m-p/7166817#M1516637</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;You can check the radio button of Remote-Enabled Module in attributes tab of function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Aug 2010 11:22:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-a-normal-function-module-remote-able-function-module/m-p/7166817#M1516637</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-16T11:22:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a normal Function Module remote able function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-a-normal-function-module-remote-able-function-module/m-p/7166818#M1516638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Saha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the idea with the wrapper function module is good. But when i create a function module   the function group is required. What should i enter here. Everywhere the same like the original function module. &lt;STRONG&gt;Function group  "RSSHIER" should i enter this one for the wrapper function group?  and you wrote that i should not forget the type pool:slis in the include. When i create a wrapper function module where can i put the include?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and kindregards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Murat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Aug 2010 11:34:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-a-normal-function-module-remote-able-function-module/m-p/7166818#M1516638</guid>
      <dc:creator>former_member207487</dc:creator>
      <dc:date>2010-08-16T11:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a normal Function Module remote able function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-a-normal-function-module-remote-able-function-module/m-p/7166819#M1516639</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;If you navigate to the Attribute of the function module, you will get 3 sections. Please look into the Processing Type Section. There you will find 3 options as follows. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Normal Function Module&lt;/P&gt;&lt;P&gt;Remote-Enabled module&lt;/P&gt;&lt;P&gt;Update Module &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please select the Remote enable module, then your function will be remote enabled.&lt;/P&gt;&lt;P&gt;Please let me know if you facing any issue regarding this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Satrajit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Aug 2010 11:43:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-a-normal-function-module-remote-able-function-module/m-p/7166819#M1516639</guid>
      <dc:creator>satrajit_chatterjee</dc:creator>
      <dc:date>2010-08-16T11:43:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a normal Function Module remote able function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-a-normal-function-module-remote-able-function-module/m-p/7166820#M1516640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Murat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can create your own FuGr. (e.g., ZRSSHIER) &amp;amp; in the generated code of the FuGr. you'll have a top include.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the top include define the TYPE-POOL. (Similar to LRSSHIERTOP line 11). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS: For simplicity sake &amp;amp; to save me time to create the prototype i gave the same names &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Aug 2010 11:47:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-a-normal-function-module-remote-able-function-module/m-p/7166820#M1516640</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-08-16T11:47:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a normal Function Module remote able function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-a-normal-function-module-remote-able-function-module/m-p/7166821#M1516641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Saha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Do i have to declare importing and exporting variables or exporting tables? in the wrapper Function module?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and kind regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Murat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Aug 2010 15:28:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-a-normal-function-module-remote-able-function-module/m-p/7166821#M1516641</guid>
      <dc:creator>former_member207487</dc:creator>
      <dc:date>2010-08-17T15:28:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a normal Function Module remote able function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-a-normal-function-module-remote-able-function-module/m-p/7166822#M1516642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am wainting fo an answer from saha. but the question is answered.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Aug 2010 15:29:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-a-normal-function-module-remote-able-function-module/m-p/7166822#M1516642</guid>
      <dc:creator>former_member207487</dc:creator>
      <dc:date>2010-08-17T15:29:57Z</dc:date>
    </item>
  </channel>
</rss>

