<?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: System commands in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-commands/m-p/6144952#M1367604</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think system commands are  handled by kernel of sap. please check thru google you can find few link related to docu of these.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 28 Aug 2009 05:41:15 GMT</pubDate>
    <dc:creator>former_member194669</dc:creator>
    <dc:date>2009-08-28T05:41:15Z</dc:date>
    <item>
      <title>System commands</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-commands/m-p/6144949#M1367601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;Where can I look at all existing SAP system commands like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
/n
/$sync
/$tab
/i
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;etc. ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Aug 2009 05:26:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-commands/m-p/6144949#M1367601</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-28T05:26:36Z</dc:date>
    </item>
    <item>
      <title>Re: System commands</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-commands/m-p/6144950#M1367602</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;Check the table &lt;STRONG&gt;RSMPTEXTS&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Aug 2009 05:36:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-commands/m-p/6144950#M1367602</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-28T05:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: System commands</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-commands/m-p/6144951#M1367603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I not certain about all but about some you can read here:&lt;/P&gt;&lt;P&gt;&lt;A href="http://abap4.tripod.com/OK_Code_Values.html" target="test_blank"&gt;http://abap4.tripod.com/OK_Code_Values.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Aug 2009 05:40:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-commands/m-p/6144951#M1367603</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-28T05:40:42Z</dc:date>
    </item>
    <item>
      <title>Re: System commands</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-commands/m-p/6144952#M1367604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think system commands are  handled by kernel of sap. please check thru google you can find few link related to docu of these.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Aug 2009 05:41:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-commands/m-p/6144952#M1367604</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2009-08-28T05:41:15Z</dc:date>
    </item>
    <item>
      <title>Re: System commands</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-commands/m-p/6144953#M1367605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;System commands is implemented in VB SCRIPT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is a tool named "Script Recording and Playback" in the right side of the SAP GUI menu bar. when you run this tool and then input the '/n' command and save the script recording, you will get a '.vbs' file including the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;If Not IsObject(application) Then
   Set SapGuiAuto  = GetObject("SAPGUI")
   Set application = SapGuiAuto.GetScriptingEngine
End If
If Not IsObject(connection) Then
   Set connection = application.Children(0)
End If
If Not IsObject(session) Then
   Set session    = connection.Children(0)
End If
If IsObject(WScript) Then
   WScript.ConnectObject session,     "on"
   WScript.ConnectObject application, "on"
End If
session.findById("wnd[0]").maximize
session.findById("wnd[0]/tbar[0]/okcd").text = "/n"
session.findById("wnd[0]").sendVKey 0&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Aug 2009 06:51:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-commands/m-p/6144953#M1367605</guid>
      <dc:creator>daixiong_jiang3</dc:creator>
      <dc:date>2009-08-28T06:51:04Z</dc:date>
    </item>
    <item>
      <title>Re: System commands</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-commands/m-p/6144954#M1367606</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;&lt;/P&gt;&lt;P&gt; Use this table &lt;/P&gt;&lt;P&gt;               &lt;/P&gt;&lt;P&gt;                    &lt;STRONG&gt;RSMPTEXTS&lt;/STRONG&gt;&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; Shankar GJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Aug 2009 07:06:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-commands/m-p/6144954#M1367606</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-28T07:06:55Z</dc:date>
    </item>
  </channel>
</rss>

