<?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: Hyperlink on module pool screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hyperlink-on-module-pool-screen/m-p/7214859#M1523090</link>
    <description>&lt;P&gt;Hi Srini, was checking your post on hyper link in module pool and trying to achieve the same but in spite of following the same steps i am unable to achieve the correct result.&lt;/P&gt;&lt;P&gt;I have done exactly the same as mentioned above.&lt;/P&gt;&lt;P&gt;Can you let me know if i am missing something.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Fri, 20 Sep 2019 12:58:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2019-09-20T12:58:04Z</dc:date>
    <item>
      <title>Hyperlink on module pool screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hyperlink-on-module-pool-screen/m-p/7214857#M1523088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We want a hyperlink on a module pool screen. We tried putting a button and then callign the url through an FM. But we dont want a button. We want a typical hyperlink to be displayed on the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please provide your solutions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Tirth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Aug 2010 11:38:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hyperlink-on-module-pool-screen/m-p/7214857#M1523088</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-24T11:38:30Z</dc:date>
    </item>
    <item>
      <title>Re: Hyperlink on module pool screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hyperlink-on-module-pool-screen/m-p/7214858#M1523089</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;      Try to create a "Text field" on your screen(Say TEXT) . Check the "Responds to double click" on Display Tab.&lt;/P&gt;&lt;P&gt;      In the element list , for the field you just now created (TEXT) , click on properties , and for Hyperlink click the Attributes&lt;/P&gt;&lt;P&gt;      Push button. Give the URL here , say "WWW.SDN.SAP.COM" in value direct radio button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     Now write the coding in PAI ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'TEXT'.&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                          = 'WWW.SDN.SAP.COM'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    WINDOW_NAME                  = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    NEW_WINDOW                   = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    BROWSER_TYPE                 = BROWSER_TYPE&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    CONTEXTSTRING                = CONTEXTSTRING&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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;            .&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when OTHERS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srini.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Aug 2010 12:24:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hyperlink-on-module-pool-screen/m-p/7214858#M1523089</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-24T12:24:41Z</dc:date>
    </item>
    <item>
      <title>Re: Hyperlink on module pool screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hyperlink-on-module-pool-screen/m-p/7214859#M1523090</link>
      <description>&lt;P&gt;Hi Srini, was checking your post on hyper link in module pool and trying to achieve the same but in spite of following the same steps i am unable to achieve the correct result.&lt;/P&gt;&lt;P&gt;I have done exactly the same as mentioned above.&lt;/P&gt;&lt;P&gt;Can you let me know if i am missing something.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 20 Sep 2019 12:58:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hyperlink-on-module-pool-screen/m-p/7214859#M1523090</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-09-20T12:58:04Z</dc:date>
    </item>
  </channel>
</rss>

