<?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 application help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-help/m-p/895206#M54109</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please let me know how can I link the application help to Word Document.For e.g.&lt;/P&gt;&lt;P&gt;I have a report ZREPORT. When I execute the report and click on HELP-&amp;gt;Application help (from the MENU), it should open word document. Please let me know if this is possible and if possible where I can attached the word document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Feb 2005 17:37:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-02-24T17:37:28Z</dc:date>
    <item>
      <title>application help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-help/m-p/895206#M54109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please let me know how can I link the application help to Word Document.For e.g.&lt;/P&gt;&lt;P&gt;I have a report ZREPORT. When I execute the report and click on HELP-&amp;gt;Application help (from the MENU), it should open word document. Please let me know if this is possible and if possible where I can attached the word document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2005 17:37:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-help/m-p/895206#M54109</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-02-24T17:37:28Z</dc:date>
    </item>
    <item>
      <title>Re: application help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-help/m-p/895207#M54110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Don't know if thats possible.   I would suggest using program documentation.   In SE38, type program name, click change.  Now click GO TO, click DOCUMENTATION.  Put your documentation here.  By doing this,  when executing the program, when the selection screen is displayed,  you will see an "information" icon in the status bar.  Clicking that button will bring up your documentation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2005 18:05:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-help/m-p/895207#M54110</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-02-24T18:05:26Z</dc:date>
    </item>
    <item>
      <title>Re: application help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-help/m-p/895208#M54111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I know about this documentation .But This is not our requirement.&lt;/P&gt;&lt;P&gt;Any way thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2005 18:50:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-help/m-p/895208#M54111</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-02-24T18:50:48Z</dc:date>
    </item>
    <item>
      <title>Re: application help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-help/m-p/895209#M54112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok,  then create a button on your gui status. When user clicks it, do the following code.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

  CALL METHOD CL_GUI_FRONTEND_SERVICES=&amp;gt;EXECUTE
    EXPORTING
      DOCUMENT               = 'C:/yourfile.doc'
      MAXIMIZED              = 'X'
      SYNCHRONOUS            = 'X'
    EXCEPTIONS
      CNTL_ERROR             = 1
      ERROR_NO_GUI           = 2
      BAD_PARAMETER          = 3
      FILE_NOT_FOUND         = 4
      PATH_NOT_FOUND         = 5
      FILE_EXTENSION_UNKNOWN = 6
      ERROR_EXECUTE_FAILED   = 7
      OTHERS                 = 8.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I really don't think that you can "customize" what gets open up when user click the "Help"-----&amp;gt;"Application Help".  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2005 19:05:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-help/m-p/895209#M54112</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-02-24T19:05:42Z</dc:date>
    </item>
    <item>
      <title>Re: application help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-help/m-p/895210#M54113</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;that's exactly what comes up into my mind, when hearing this requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just wonder, how all PCs will be filled with all documents for all reports... even network folders don't need necessarily be mounted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2005 19:09:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-help/m-p/895210#M54113</guid>
      <dc:creator>christian_wohlfahrt</dc:creator>
      <dc:date>2005-02-24T19:09:00Z</dc:date>
    </item>
    <item>
      <title>Re: application help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-help/m-p/895211#M54114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I also don't believe you can customize that specific menu path. That key is used to send a specific string to the SAP helper application (check help_04.exe) which uses sapdoccd.ini to lookup  the help files. Check by with the BASIS folks to find out how you can customize it.&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Swapan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2005 21:01:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-help/m-p/895211#M54114</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-02-24T21:01:23Z</dc:date>
    </item>
    <item>
      <title>Re: application help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-help/m-p/895212#M54115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This posting may be of interest to you:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="29068"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you tell us why you need a Word document?  Is there some feature in Word that you want to use that is not available in standard SAP documentation?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2005 21:46:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-help/m-p/895212#M54115</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-02-24T21:46:38Z</dc:date>
    </item>
  </channel>
</rss>

