<?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: Transports/requests function module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/transports-requests-function-module/m-p/7917956#M1598446</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can try the function module TR_READ_REQUEST_WITH_TASKS.&lt;/P&gt;&lt;P&gt;But this is not remote enabled and you dont have USER as interface parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you can create a custom function module and hit the tables &lt;/P&gt;&lt;P&gt;E070 =&amp;gt; Change &amp;amp; Transport System: Header of Requests/Tasks&lt;/P&gt;&lt;P&gt;E071 =&amp;gt; Change &amp;amp; Transport System: Object Entries of Requests/Tasks&lt;/P&gt;&lt;P&gt;E07T =&amp;gt; Change &amp;amp; Transport System: Short Texts for Requests/Tasks &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;to get the details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;HM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 29 Jun 2011 06:26:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-06-29T06:26:49Z</dc:date>
    <item>
      <title>Transports/requests function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transports-requests-function-module/m-p/7917953#M1598443</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have searched for some standard function module which returns transports details (E070,E071) with no result.&lt;/P&gt;&lt;P&gt;Also FM should be remote-enabled and what is important - there must be some filtering criteria like E070-AS4USER (Owner of a request or task) ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea ?&lt;/P&gt;&lt;P&gt;Best regards, Daniel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2011 05:45:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transports-requests-function-module/m-p/7917953#M1598443</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-29T05:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: Transports/requests function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transports-requests-function-module/m-p/7917954#M1598444</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check FM : TRINT_READ_REQUEST or TR_READ_REQUEST but these are not RFC enabled . You may create a Z Fm and call oone of these FMs inside that .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2011 05:59:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transports-requests-function-module/m-p/7917954#M1598444</guid>
      <dc:creator>Sandeep_Panghal</dc:creator>
      <dc:date>2011-06-29T05:59:28Z</dc:date>
    </item>
    <item>
      <title>Re: Transports/requests function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transports-requests-function-module/m-p/7917955#M1598445</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to select the TRs based on the Uname, that is E070-AS4USER, then the FMs by Sandeep wouldn't work as with those FMs you need to provide the transport request number as a mandatory input.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*  request must not be space
  IF cs_request-h-trkorr = space.
    MESSAGE e773(tk)
            RAISING error_occured.
  ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have just the Uname as your primary filtering criteria, then use the FM - TRINT_SELECT_REQUESTS, and yes you will have to wrap an RFC around it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Chen K V on Jun 29, 2011 11:56 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2011 06:26:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transports-requests-function-module/m-p/7917955#M1598445</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-29T06:26:29Z</dc:date>
    </item>
    <item>
      <title>Re: Transports/requests function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transports-requests-function-module/m-p/7917956#M1598446</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can try the function module TR_READ_REQUEST_WITH_TASKS.&lt;/P&gt;&lt;P&gt;But this is not remote enabled and you dont have USER as interface parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you can create a custom function module and hit the tables &lt;/P&gt;&lt;P&gt;E070 =&amp;gt; Change &amp;amp; Transport System: Header of Requests/Tasks&lt;/P&gt;&lt;P&gt;E071 =&amp;gt; Change &amp;amp; Transport System: Object Entries of Requests/Tasks&lt;/P&gt;&lt;P&gt;E07T =&amp;gt; Change &amp;amp; Transport System: Short Texts for Requests/Tasks &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;to get the details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;HM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2011 06:26:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transports-requests-function-module/m-p/7917956#M1598446</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-29T06:26:49Z</dc:date>
    </item>
    <item>
      <title>Re: Transports/requests function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transports-requests-function-module/m-p/7917957#M1598447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you guys for fast reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRINT_SELECT_REQUESTS is really good one, but like I said before it must be remote function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is to read transport list (filtered by uname like in SE01) to JCo Java application (remote-functions) and make this application universal, system specific independent... (only standard FM) - sorry I should told this earlier.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Daniel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2011 07:26:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transports-requests-function-module/m-p/7917957#M1598447</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-29T07:26:29Z</dc:date>
    </item>
    <item>
      <title>Re: Transports/requests function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transports-requests-function-module/m-p/7917958#M1598448</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Daniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just create a Z wrapper function module over this standard function and make it remote enabled. This method is generally used in RFC required scenarios.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Diwakar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2011 07:50:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transports-requests-function-module/m-p/7917958#M1598448</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-29T07:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: Transports/requests function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transports-requests-function-module/m-p/7917959#M1598449</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, but when I start this application on other SAP server it won't work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2011 08:00:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transports-requests-function-module/m-p/7917959#M1598449</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-29T08:00:51Z</dc:date>
    </item>
    <item>
      <title>Re: Transports/requests function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transports-requests-function-module/m-p/7917960#M1598450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Daniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is to read transport list (filtered by uname like in SE01) to JCo Java application (remote-functions) and make this application universal, &lt;STRONG&gt;system specific independent&lt;/STRONG&gt;... (only standard FM) - sorry I should told this earlier.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Well, like others have mentioned, you just need to create a Z function module(FM) and mark it as Remote Enabled, you could have the interface of this Z FM to be the same as that of &lt;STRONG&gt;TRINT_SELECT_REQUESTS&lt;/STRONG&gt; or you can changeit for example you can take off IMPORT parameter "VIA Selection" etc and set Default values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once you make this an RFC it becomes available to all external systems which can invoke an RFC, also you can take it a step ahead and expose this custom RFC as a Web Service too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note sure if i understand what you meant by &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;system specific independent&lt;/STRONG&gt;... (only standard FM) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The Z RFC will be independent, and will be specific to the target system on which you run this RFC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ok, but when I start this application on other SAP server it won't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Do you mean when you invoke the &lt;STRONG&gt;TRINT_SELECT_REQUESTS&lt;/STRONG&gt; from JCo, you need to keep in mind that you cannot invoke &lt;STRONG&gt;TRINT_SELECT_REQUESTS&lt;/STRONG&gt; directly from Jco, you need to wrap it within an RFC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, If you meant you are not able to invoke the Z RFC from JCo, update the post on what is the message you get?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2011 08:22:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transports-requests-function-module/m-p/7917960#M1598450</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-29T08:22:16Z</dc:date>
    </item>
    <item>
      <title>Re: Transports/requests function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transports-requests-function-module/m-p/7917961#M1598451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;The Z RFC will be independent, and will be specific to the target system on which you run this RFC.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exactly and this is a problem for me.&lt;/P&gt;&lt;P&gt;When I create some Z solution on some R3 system, won't be accesible on other system, so there will be need to add same solution many times on each system when application will be started.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;Do you mean when you invoke the TRINT_SELECT_REQUESTS from JCo, you need to keep in mind that you cannot invoke TRINT_SELECT_REQUESTS directly from Jco, you need to wrap it within an RFC.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRINT_SELECT_REQUESTS FM is a good example of what kind of FM I need - but it is NOT a RFC FM so I cannot use this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FM should be accesible on all SAP R3 system servers in the same form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Daniel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2011 09:07:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transports-requests-function-module/m-p/7917961#M1598451</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-29T09:07:43Z</dc:date>
    </item>
    <item>
      <title>Re: Transports/requests function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transports-requests-function-module/m-p/7917962#M1598452</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case the alternative that i can think of is to use &lt;STRONG&gt;RFC_READ_TABLE&lt;/STRONG&gt; and look up table E070. Go through the below link for more details&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a83ec690-0201-0010-14ac-bd1d75e24a7d?quicklink=index&amp;amp;overridelayout=true" target="test_blank"&gt;http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a83ec690-0201-0010-14ac-bd1d75e24a7d?quicklink=index&amp;amp;overridelayout=true&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, it has certain limitation that you may want to check out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/people/piers.harding/blog/2004/11/10/rfcreadtable--my-old-faithful--what-has-happened-to-you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2011 09:17:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transports-requests-function-module/m-p/7917962#M1598452</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-29T09:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: Transports/requests function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transports-requests-function-module/m-p/7917963#M1598453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Chen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think, that there is no apropriate FM for my requirement but your proposition may be very helpful also I must admit that I didn't know about RFC_READ_TABLE and it could be it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you guys especially Chen for help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Daniel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2011 09:30:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transports-requests-function-module/m-p/7917963#M1598453</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-29T09:30:05Z</dc:date>
    </item>
  </channel>
</rss>

