<?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 Transport Request Documentation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/transport-request-documentation/m-p/12392290#M1994858</link>
    <description>&lt;P&gt;After creating a transport request, is there any way to check whether documentation for that tr is made or not?&lt;/P&gt;
  &lt;P&gt;Like, when we release a task it displays a text editor where we can maintain documentation. But I want to check whether documentation is there or not and if it is not there then don't release the tr.&lt;/P&gt;
  &lt;P&gt;Is there any way to do this?&lt;/P&gt;</description>
    <pubDate>Wed, 30 Jun 2021 07:43:18 GMT</pubDate>
    <dc:creator>vg24</dc:creator>
    <dc:date>2021-06-30T07:43:18Z</dc:date>
    <item>
      <title>Transport Request Documentation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transport-request-documentation/m-p/12392290#M1994858</link>
      <description>&lt;P&gt;After creating a transport request, is there any way to check whether documentation for that tr is made or not?&lt;/P&gt;
  &lt;P&gt;Like, when we release a task it displays a text editor where we can maintain documentation. But I want to check whether documentation is there or not and if it is not there then don't release the tr.&lt;/P&gt;
  &lt;P&gt;Is there any way to do this?&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jun 2021 07:43:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transport-request-documentation/m-p/12392290#M1994858</guid>
      <dc:creator>vg24</dc:creator>
      <dc:date>2021-06-30T07:43:18Z</dc:date>
    </item>
    <item>
      <title>Re: Transport Request Documentation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transport-request-documentation/m-p/12392291#M1994859</link>
      <description>&lt;P&gt;Yes, there is, at the same place as ATC&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jun 2021 07:47:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transport-request-documentation/m-p/12392291#M1994859</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2021-06-30T07:47:44Z</dc:date>
    </item>
    <item>
      <title>Re: Transport Request Documentation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transport-request-documentation/m-p/12392292#M1994860</link>
      <description>&lt;P&gt;Hi  &lt;SPAN class="mention-scrubbed"&gt;vg24&lt;/SPAN&gt; ,&lt;/P&gt;&lt;P&gt;It is possible. You need to implement a BADI CTS_REQUEST_CHECK. Use the method CHECK_BEFORE_RELEASE to check the documentation. &lt;/P&gt;&lt;P&gt;A short code suggestion below can help you.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  DATA lv_found      TYPE i.
  DATA lv_object     TYPE doku_obj.&amp;lt;br&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;&lt;CODE&gt;MOVE request TO lv_object.
**Check whether the transport contains the documentation,
    CALL FUNCTION 'DOCU_INIT'
      EXPORTING
        id     = 'TA'
        object = lv_object
        typ    = 'T'
      IMPORTING
        found  = lv_found.

    IF lv_found EQ 0.
      EXIT.
    ENDIF.

    IF lv_found NE 0.
    CALL FUNCTION 'DEQUEUE_E_TRKORR'
      EXPORTING
        trkorr = request.
    MESSAGE e000 WITH request.
  ENDIF.&amp;lt;br&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 30 Jun 2021 08:19:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transport-request-documentation/m-p/12392292#M1994860</guid>
      <dc:creator>former_member106</dc:creator>
      <dc:date>2021-06-30T08:19:12Z</dc:date>
    </item>
    <item>
      <title>Re: Transport Request Documentation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transport-request-documentation/m-p/12392293#M1994861</link>
      <description>&lt;P&gt;Can you elaborate a bit more about it? I'm new to this.&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jun 2021 08:20:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transport-request-documentation/m-p/12392293#M1994861</guid>
      <dc:creator>vg24</dc:creator>
      <dc:date>2021-06-30T08:20:11Z</dc:date>
    </item>
    <item>
      <title>Re: Transport Request Documentation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transport-request-documentation/m-p/12392294#M1994862</link>
      <description>&lt;P&gt;Thanks a lot &lt;SPAN class="mention-scrubbed"&gt;semkum&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;I believe the loop begins before function call.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jun 2021 08:27:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transport-request-documentation/m-p/12392294#M1994862</guid>
      <dc:creator>vg24</dc:creator>
      <dc:date>2021-06-30T08:27:29Z</dc:date>
    </item>
    <item>
      <title>Re: Transport Request Documentation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transport-request-documentation/m-p/12392295#M1994863</link>
      <description>&lt;P&gt;Thanks. there is no loop required, and my code had loop for someother reason. I have removed it now. Please accept the answer if your implementation works.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Senthil.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jun 2021 08:52:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transport-request-documentation/m-p/12392295#M1994863</guid>
      <dc:creator>former_member106</dc:creator>
      <dc:date>2021-06-30T08:52:44Z</dc:date>
    </item>
    <item>
      <title>Re: Transport Request Documentation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transport-request-documentation/m-p/12392296#M1994864</link>
      <description>&lt;P&gt;Thankyou for the answer!!&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jun 2021 09:14:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transport-request-documentation/m-p/12392296#M1994864</guid>
      <dc:creator>vg24</dc:creator>
      <dc:date>2021-06-30T09:14:45Z</dc:date>
    </item>
    <item>
      <title>Re: Transport Request Documentation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transport-request-documentation/m-p/12392297#M1994865</link>
      <description>&lt;P&gt;  &lt;SPAN class="mention-scrubbed"&gt;semkum&lt;/SPAN&gt; what can be given in 'langu' within the function call DOCU_INIT?&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jul 2021 07:04:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transport-request-documentation/m-p/12392297#M1994865</guid>
      <dc:creator>vg24</dc:creator>
      <dc:date>2021-07-02T07:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: Transport Request Documentation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transport-request-documentation/m-p/12392298#M1994866</link>
      <description>&lt;P&gt;  &lt;SPAN class="mention-scrubbed"&gt;vg24&lt;/SPAN&gt; , it should be SPRAS value (en, de) which needs to be passed. Basically, the language in which the text will be stored in the table.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Senthil.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jul 2021 07:08:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transport-request-documentation/m-p/12392298#M1994866</guid>
      <dc:creator>former_member106</dc:creator>
      <dc:date>2021-07-02T07:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: Transport Request Documentation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transport-request-documentation/m-p/12392299#M1994867</link>
      <description>&lt;P&gt;Thankyou Senthilkumar Moorthy &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jul 2021 07:10:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transport-request-documentation/m-p/12392299#M1994867</guid>
      <dc:creator>vg24</dc:creator>
      <dc:date>2021-07-02T07:10:22Z</dc:date>
    </item>
    <item>
      <title>Re: Transport Request Documentation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transport-request-documentation/m-p/12392300#M1994868</link>
      <description>&lt;P&gt;  &lt;SPAN class="mention-scrubbed"&gt;semkum&lt;/SPAN&gt; if the check has to be made only for a TR and not task, then how can it be done?&lt;/P&gt;&lt;P&gt;I have been trying to make an internal table of type E070 and looping through it. Wherever STRKORR eq '' and TRKORR eq lv_object, the function is being called and if not then I'm simply executing it. But this method is not working. It is not checking whether the object is a task or TR. Please help here.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jul 2021 06:55:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transport-request-documentation/m-p/12392300#M1994868</guid>
      <dc:creator>vg24</dc:creator>
      <dc:date>2021-07-05T06:55:17Z</dc:date>
    </item>
  </channel>
</rss>

