<?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 Custom button in quotation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-button-in-quotation/m-p/8801910#M1680224</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I add a custom push button (name &lt;STRONG&gt;URL&lt;/STRONG&gt;) in the dynpro "Additional data B" of transaction VA21/22/23 (Quotation). The button only needs to open the browser of internet. &lt;/P&gt;&lt;P&gt;I modified dynpro 8309, and I have inserted the module user_commnad in include MV45AIZZ.&lt;/P&gt;&lt;P&gt;When I push the button the standard program give me the message error "Requested function &lt;STRONG&gt;URL&lt;/STRONG&gt; is not available here" (Message no. V0104).&lt;/P&gt;&lt;P&gt;I think is necessary maintain table T185 and T185F, but i don't know how.&lt;/P&gt;&lt;P&gt;Does anybody can't help me?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;George&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 May 2012 08:06:00 GMT</pubDate>
    <dc:creator>Quark_G</dc:creator>
    <dc:date>2012-05-22T08:06:00Z</dc:date>
    <item>
      <title>Custom button in quotation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-button-in-quotation/m-p/8801910#M1680224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I add a custom push button (name &lt;STRONG&gt;URL&lt;/STRONG&gt;) in the dynpro "Additional data B" of transaction VA21/22/23 (Quotation). The button only needs to open the browser of internet. &lt;/P&gt;&lt;P&gt;I modified dynpro 8309, and I have inserted the module user_commnad in include MV45AIZZ.&lt;/P&gt;&lt;P&gt;When I push the button the standard program give me the message error "Requested function &lt;STRONG&gt;URL&lt;/STRONG&gt; is not available here" (Message no. V0104).&lt;/P&gt;&lt;P&gt;I think is necessary maintain table T185 and T185F, but i don't know how.&lt;/P&gt;&lt;P&gt;Does anybody can't help me?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;George&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2012 08:06:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/custom-button-in-quotation/m-p/8801910#M1680224</guid>
      <dc:creator>Quark_G</dc:creator>
      <dc:date>2012-05-22T08:06:00Z</dc:date>
    </item>
    <item>
      <title>Re: Custom button in quotation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-button-in-quotation/m-p/8801911#M1680225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi i think that include is not triggering &amp;amp; debug it then u can understand its triggering or not&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2012 10:33:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/custom-button-in-quotation/m-p/8801911#M1680225</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-05-24T10:33:08Z</dc:date>
    </item>
    <item>
      <title>Re: Custom button in quotation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-button-in-quotation/m-p/8801912#M1680226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Quark,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use function module PRGN_GENER_EXECUTE_URL or CALL_BROWSER in your progarm (PAI where you trigger )and call it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call method cl_gui_frontend_services=&amp;gt;execute&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;document = '&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.sdn.sap.com"&gt;http://www.sdn.sap.com&lt;/A&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;exceptions&lt;/P&gt;&lt;P&gt;others = 1.&lt;/P&gt;&lt;P&gt;&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;&lt;SPAN&gt;URL = '&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.sdn.sap.com"&gt;http://www.sdn.sap.com&lt;/A&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;WINDOW_NAME = 'New'&lt;/P&gt;&lt;P&gt;NEW_WINDOW = 'X'&lt;/P&gt;&lt;P&gt;* BROWSER_TYPE =&lt;/P&gt;&lt;P&gt;* CONTEXTSTRING =&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;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;* WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;removed by moderator&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Regards,&lt;/P&gt;&lt;P&gt;Sudhir S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2012 10:45:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/custom-button-in-quotation/m-p/8801912#M1680226</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-05-24T10:45:24Z</dc:date>
    </item>
  </channel>
</rss>

