<?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 Questions about program documentation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/questions-about-program-documentation/m-p/5983558#M1341306</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there forum fellows, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd like to ask about program documentation which I'm able to create in SE38 (radio button 'Documentation')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) How can I display the the documentation window from code? I mean which function module should I use to make eg.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
IF (okcode = 'INFO') .
  display documentation .
ENDIF .
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) When I display the documentation in program there is a string "Report: (reportname)" in the first line, whilst that string is not visible it the documentation-edit mode. How can I get rid of that first line not to be displayed in documentation window?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will be thankful for help and tips. Greetings. P.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Aug 2009 08:01:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-08-12T08:01:58Z</dc:date>
    <item>
      <title>Questions about program documentation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/questions-about-program-documentation/m-p/5983558#M1341306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there forum fellows, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd like to ask about program documentation which I'm able to create in SE38 (radio button 'Documentation')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) How can I display the the documentation window from code? I mean which function module should I use to make eg.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
IF (okcode = 'INFO') .
  display documentation .
ENDIF .
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) When I display the documentation in program there is a string "Report: (reportname)" in the first line, whilst that string is not visible it the documentation-edit mode. How can I get rid of that first line not to be displayed in documentation window?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will be thankful for help and tips. Greetings. P.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2009 08:01:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/questions-about-program-documentation/m-p/5983558#M1341306</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-12T08:01:58Z</dc:date>
    </item>
    <item>
      <title>Re: Questions about program documentation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/questions-about-program-documentation/m-p/5983559#M1341307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'DSYS_SHOW_FOR_F1HELP'
      EXPORTING
           DOKCLASS           = 'RE'
           DOKNAME            = REPORT_NAME
           SHORT_TEXT         = 'X'
      EXCEPTIONS
           OTHERS             = 1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2009 08:10:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/questions-about-program-documentation/m-p/5983559#M1341307</guid>
      <dc:creator>Pawan_Kesari</dc:creator>
      <dc:date>2009-08-12T08:10:25Z</dc:date>
    </item>
    <item>
      <title>Re: Questions about program documentation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/questions-about-program-documentation/m-p/5983560#M1341308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1) For your first requirement you may use call transaction SE38 and skip first screen.&lt;/P&gt;&lt;P&gt;2) The first line of the documentation is actually the title maintained in the program attributes. Since the title is a mandatory field, you cannot remove it. You may only change it to something more suitable.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2009 08:11:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/questions-about-program-documentation/m-p/5983560#M1341308</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-12T08:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: Questions about program documentation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/questions-about-program-documentation/m-p/5983561#M1341309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look at FM  DSYS_SHOW_FOR_F1HELP with &lt;/P&gt;&lt;P&gt;- DOKCLASS = 'RE'&lt;/P&gt;&lt;P&gt;- DOKLANGU = sy-langu (or language of the documentation)&lt;/P&gt;&lt;P&gt;- DOKNAME = sy-repid (mapped to another field)&lt;/P&gt;&lt;P&gt;- SHORT_TEXT = 'X' (window mode)&lt;/P&gt;&lt;P&gt;(keep default value for other parameters)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2009 08:14:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/questions-about-program-documentation/m-p/5983561#M1341309</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2009-08-12T08:14:42Z</dc:date>
    </item>
    <item>
      <title>Re: Questions about program documentation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/questions-about-program-documentation/m-p/5983562#M1341310</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 create a documention it will just be available in selection-screen: if you press the icon for INFO it will be shown us the documentation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So u shouldn't need to develop your own code to manage it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you need to show the documentation after running the report, there are fm like HLP_DOCULINES_SHOW in order to show it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. I suppose the system uses it to write the description of the report&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2009 08:16:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/questions-about-program-documentation/m-p/5983562#M1341310</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-12T08:16:57Z</dc:date>
    </item>
  </channel>
</rss>

