<?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: SAP screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-screen/m-p/1558216#M252619</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, but you will have to concatenate the 'http://www.' on to the url field before calling the method.&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>Fri, 08 Sep 2006 15:20:49 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2006-09-08T15:20:49Z</dc:date>
    <item>
      <title>SAP screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-screen/m-p/1558206#M252609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how to add url to screen?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2006 00:05:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-screen/m-p/1558206#M252609</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-08T00:05:43Z</dc:date>
    </item>
    <item>
      <title>Re: SAP screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-screen/m-p/1558207#M252610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In a dynpro, you would setup a output only field in the screen which would respond to double click(check the check box), you can then use the EXECUTE method of the class CL_GUI_FRONTEND_SERVICES to fire IE with your url.  That's it.&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>Fri, 08 Sep 2006 00:25:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-screen/m-p/1558207#M252610</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-09-08T00:25:02Z</dc:date>
    </item>
    <item>
      <title>Re: SAP screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-screen/m-p/1558208#M252611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;to expand on Rich's suggestion.. this is how you call the URL on double click..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;call method cl_gui_frontend_services=&amp;gt;execute
  exporting
    document = 'http://www.sap.com'
  exceptions
    others   = 1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S. Pl ignore my post as Rich has given the complete solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Suresh Datti&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Suresh Datti&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2006 00:28:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-screen/m-p/1558208#M252611</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-09-08T00:28:27Z</dc:date>
    </item>
    <item>
      <title>Re: SAP screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-screen/m-p/1558209#M252612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this sample program.  Here i have created an input field called URL on the screen and made it output only.  I also checked the "Responds to double click" checkbox.  I create the gui status 100 and assign the fcode "PICK" to the F2 function.  Now when you click on that field on the screen it will fire the PAI with the sy-ucomm = 'PICK',  there you can fire the method call.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report  zrich_0003.

&amp;lt;b&amp;gt;data: url type string.

url = 'http://www.sap.com'.&amp;lt;/b&amp;gt;

call screen 100.
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Module  STATUS_0100  OUTPUT
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
module status_0100 output.
  set pf-status '0100'.
*  SET TITLEBAR 'xxx'.

endmodule.                 " STATUS_0100  OUTPUT
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Module  USER_COMMAND_0100  INPUT
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
module user_command_0100 input.

  case sy-ucomm.

    when 'PICK'.

&amp;lt;b&amp;gt;    call method cl_gui_frontend_services=&amp;gt;execute
      exporting
        document = url.&amp;lt;/b&amp;gt;


    when 'BACK'.

    leave program.

  endcase.


endmodule.                 " USER_COMMAND_0100  INPUT

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&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>Fri, 08 Sep 2006 00:32:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-screen/m-p/1558209#M252612</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-09-08T00:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: SAP screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-screen/m-p/1558210#M252613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh,  that's for the backup, Suresh, I was in the middle of doing a sample.    &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&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>Fri, 08 Sep 2006 00:33:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-screen/m-p/1558210#M252613</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-09-08T00:33:18Z</dc:date>
    </item>
    <item>
      <title>Re: SAP screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-screen/m-p/1558211#M252614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;BTW, Venu, Welcome to SDN!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh, see you vegas?&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>Fri, 08 Sep 2006 00:37:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-screen/m-p/1558211#M252614</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-09-08T00:37:14Z</dc:date>
    </item>
    <item>
      <title>Re: SAP screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-screen/m-p/1558212#M252615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes Rich I will be there all 5 days.. hope I get a chance to meet you during your Next Gen session..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2006 00:41:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-screen/m-p/1558212#M252615</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-09-08T00:41:21Z</dc:date>
    </item>
    <item>
      <title>Re: SAP screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-screen/m-p/1558213#M252616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'll be there.... we got some really cool stuff to show, but we are counting on the group to drive the session, so bring your questions, comments, ideas, suggestions, etc. Should be a good session. &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&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>Fri, 08 Sep 2006 01:16:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-screen/m-p/1558213#M252616</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-09-08T01:16:17Z</dc:date>
    </item>
    <item>
      <title>Re: SAP screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-screen/m-p/1558214#M252617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Venu, if your problem is solved, please make sure to award points for helpful answers and mark as solved.  Thanks and welcome to SDN&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>Fri, 08 Sep 2006 12:31:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-screen/m-p/1558214#M252617</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-09-08T12:31:13Z</dc:date>
    </item>
    <item>
      <title>Re: SAP screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-screen/m-p/1558215#M252618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hallo suresh,&lt;/P&gt;&lt;P&gt;thanx for your answer,but the url on screen look like &amp;lt;u&amp;gt;sdn.sap.com&amp;lt;/u&amp;gt;.by clicking once it should open the site.&lt;/P&gt;&lt;P&gt;is it possible?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2006 15:17:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-screen/m-p/1558215#M252618</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-08T15:17:25Z</dc:date>
    </item>
    <item>
      <title>Re: SAP screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-screen/m-p/1558216#M252619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, but you will have to concatenate the 'http://www.' on to the url field before calling the method.&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>Fri, 08 Sep 2006 15:20:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-screen/m-p/1558216#M252619</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-09-08T15:20:49Z</dc:date>
    </item>
  </channel>
</rss>

