<?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: ABAP Program documentation -- calling web document in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-program-documentation-calling-web-document/m-p/2229413#M479487</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;write a program with your call and link it to your document:&lt;/P&gt;&lt;P&gt;in doumentation - insert - link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Apr 2007 06:19:41 GMT</pubDate>
    <dc:creator>andreas_mann3</dc:creator>
    <dc:date>2007-04-25T06:19:41Z</dc:date>
    <item>
      <title>ABAP Program documentation -- calling web document</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-program-documentation-calling-web-document/m-p/2229412#M479486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would like to be able to have my ABAP Program call documentation from the Web when the user presses Shift/F1 or clicks on the Little Blue Information Icon.  This is just a basic ABAP - no screen programming.  I know how to call my documentation from the Web (see code below).  I just don't know how to trigger it to happen.  I'm sure it is simple ... can anyone help?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'CALL_BROWSER'&lt;/P&gt;&lt;P&gt;       exporting&lt;/P&gt;&lt;P&gt;            url                                  = http://iww.myweb.com/myhelpdoc.htm'&lt;/P&gt;&lt;P&gt;       exceptions&lt;/P&gt;&lt;P&gt;            frontend_not_supported   = 1&lt;/P&gt;&lt;P&gt;            frontend_error                 = 2&lt;/P&gt;&lt;P&gt;            prog_not_found              = 3&lt;/P&gt;&lt;P&gt;            no_batch                       = 4&lt;/P&gt;&lt;P&gt;            unspecified_error            = 5&lt;/P&gt;&lt;P&gt;            others                           = 6.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Apr 2007 21:54:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-program-documentation-calling-web-document/m-p/2229412#M479486</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-24T21:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Program documentation -- calling web document</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-program-documentation-calling-web-document/m-p/2229413#M479487</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;write a program with your call and link it to your document:&lt;/P&gt;&lt;P&gt;in doumentation - insert - link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2007 06:19:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-program-documentation-calling-web-document/m-p/2229413#M479487</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2007-04-25T06:19:41Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Program documentation -- calling web document</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-program-documentation-calling-web-document/m-p/2229414#M479488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I found the answer to my question ...&lt;/P&gt;&lt;P&gt;- Create a New Gui Status called main with Icons for help any whatever else.  Call Help one INST&lt;/P&gt;&lt;P&gt;- In the Initialization section of your program code - set pf-status 'MAIN.&lt;/P&gt;&lt;P&gt;- In at selection screen section &lt;/P&gt;&lt;P&gt;case sscrfields-ucomm.&lt;/P&gt;&lt;P&gt;    when 'INST'. "User instructions&lt;/P&gt;&lt;P&gt;      call function 'CALL_BROWSER'&lt;/P&gt;&lt;P&gt;      exporting&lt;/P&gt;&lt;P&gt;      url = http://iww.myweb.com/myhelpdoc.htm'&lt;/P&gt;&lt;P&gt;      exceptions&lt;/P&gt;&lt;P&gt;      frontend_not_supported = 1&lt;/P&gt;&lt;P&gt;      frontend_error = 2&lt;/P&gt;&lt;P&gt;      prog_not_found = 3&lt;/P&gt;&lt;P&gt;      no_batch = 4&lt;/P&gt;&lt;P&gt;      unspecified_error = 5&lt;/P&gt;&lt;P&gt;      others = 6. &lt;/P&gt;&lt;P&gt;      clear sscrfields-ucomm.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2007 14:19:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-program-documentation-calling-web-document/m-p/2229414#M479488</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-25T14:19:09Z</dc:date>
    </item>
  </channel>
</rss>

