<?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: Find SAPGui patch level from Appl Server in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-sapgui-patch-level-from-appl-server/m-p/1977957#M400453</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you got a solution for your problem.  We are planning for insallation sever setup thereby we can distribute GUI via SMS server to n number of pc and the same way could upgrade patches.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Any experince on the installation server is appreciated.&lt;/P&gt;&lt;P&gt;2) How about the getting new patches to end user pc when the GUI installation server updated with new patches, pros &amp;amp; cons are appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;P&gt;Selva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 09 Aug 2007 16:06:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-09T16:06:48Z</dc:date>
    <item>
      <title>Find SAPGui patch level from Appl Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-sapgui-patch-level-from-appl-server/m-p/1977954#M400450</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;I have requirement to write a program to find what will be patch level applied in the each presentation server that login into server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will be my requirement. We have around 6000 terminals, some of terminals giving short  dump in server due to non applying of latest GUI patch in the presentation server, requirement is to find what will be patch level of presentation server from application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I like to know whether it is possible to find what will be patch level applied in the&lt;/P&gt;&lt;P&gt;presentation server from Application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;aRs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Feb 2007 19:15:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/find-sapgui-patch-level-from-appl-server/m-p/1977954#M400450</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-02-07T19:15:07Z</dc:date>
    </item>
    <item>
      <title>Re: Find SAPGui patch level from Appl Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-sapgui-patch-level-from-appl-server/m-p/1977955#M400451</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;The class CL_GUI_FRONTEND_SERVICES has the method GET_GUI_VERSION..which would be good for your requirement..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Deepu Venugopal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Feb 2007 19:18:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/find-sapgui-patch-level-from-appl-server/m-p/1977955#M400451</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-07T19:18:38Z</dc:date>
    </item>
    <item>
      <title>Re: Find SAPGui patch level from Appl Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-sapgui-patch-level-from-appl-server/m-p/1977956#M400452</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;Please try this FM RFC_GET_SYSTEM_INFO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also you can use class CL_GUI_FRONTEND_SERVICES=&amp;gt;GET_GUI_VERSION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data: v_tab type  filetable,
      v_info type file_table,
      rc type i.
 
call method cl_gui_frontend_services=&amp;gt;get_gui_version
  changing
    version_table            = v_tab
    rc                       = rc
  exceptions
    get_gui_version_failed   = 1
    cant_write_version_table = 2
    gui_no_version           = 3
    cntl_error               = 4
    error_no_gui             = 5
    not_supported_by_gui     = 6
    others                   = 7.
if sy-subrc &amp;lt;&amp;gt; 0.
  message id sy-msgid type sy-msgty number sy-msgno
             with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
else.
  read table v_tab into v_info index 3.
  write:/ 'Patch level:', v_info(2).
endif.
&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;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Feb 2007 19:19:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/find-sapgui-patch-level-from-appl-server/m-p/1977956#M400452</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-07T19:19:53Z</dc:date>
    </item>
    <item>
      <title>Re: Find SAPGui patch level from Appl Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-sapgui-patch-level-from-appl-server/m-p/1977957#M400453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you got a solution for your problem.  We are planning for insallation sever setup thereby we can distribute GUI via SMS server to n number of pc and the same way could upgrade patches.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Any experince on the installation server is appreciated.&lt;/P&gt;&lt;P&gt;2) How about the getting new patches to end user pc when the GUI installation server updated with new patches, pros &amp;amp; cons are appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;P&gt;Selva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2007 16:06:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/find-sapgui-patch-level-from-appl-server/m-p/1977957#M400453</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-09T16:06:48Z</dc:date>
    </item>
  </channel>
</rss>

