<?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: Extract Table using VB in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/extract-table-using-vb/m-p/6897611#M1480883</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IT WORKED !!!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANK YOU...I CHANGED THE IP ADDRESS EARLIER TOO, BUT THIS TIME I ENTERED En instead of EN for language (by mistake)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anyhooo.it worked...thank you everyone !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 May 2010 20:22:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-05-20T20:22:13Z</dc:date>
    <item>
      <title>Extract Table using VB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extract-table-using-vb/m-p/6897599#M1480871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Option Compare Database&lt;/P&gt;&lt;P&gt;Option Explicit&lt;/P&gt;&lt;P&gt;Dim attachpath1, headers, attachpath2 As String&lt;/P&gt;&lt;P&gt;Dim sFileName As String&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Dim R3, MyFunc, App, objFileSystemObject, filOutput, objmessage As Object&lt;/P&gt;&lt;P&gt;Dim nTotalRecords As Long&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dim QUERY_TABLE As Object&lt;/P&gt;&lt;P&gt;Dim DELIMITER   As Object&lt;/P&gt;&lt;P&gt;Dim NO_DATA     As Object&lt;/P&gt;&lt;P&gt;Dim ROWSKIPS    As Object&lt;/P&gt;&lt;P&gt;Dim ROWCOUNT    As Object&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dim OPTIONS As Object&lt;/P&gt;&lt;P&gt;Dim FIELDS  As Object&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dim tDATA    As Object&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dim ROW As Object&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dim Result As Boolean&lt;/P&gt;&lt;P&gt;Dim iRow, iColumn, iStart, iStartRow, iField, iLength As Integer&lt;/P&gt;&lt;P&gt;Dim var_return As String&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Public Function RFC_READ_TABLE_MLEA()&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'**********************************************&lt;/P&gt;&lt;P&gt;'Create Server object and Setup the connection&lt;/P&gt;&lt;P&gt;'**********************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set objFileSystemObject = CreateObject("Scripting.FileSystemObject")&lt;/P&gt;&lt;P&gt;attachpath1 = "C:\MLEA.rtf"&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Set R3 = CreateObject("SAP.Functions")&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;R3.Connection.system = "***"&lt;/P&gt;&lt;P&gt;R3.Connection.client = "***"&lt;/P&gt;&lt;P&gt;R3.Connection.User = "my username"&lt;/P&gt;&lt;P&gt;R3.Connection.Password = "my password"&lt;/P&gt;&lt;P&gt;R3.Connection.language = "EN"&lt;/P&gt;&lt;P&gt;R3.Connection.applicationserver = "******"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If R3.Connection.logon(0, True) &amp;lt;&amp;gt; True Then&lt;/P&gt;&lt;P&gt;MsgBox "No connection to R3!"&lt;/P&gt;&lt;P&gt;   var_return = " has Failed"&lt;/P&gt;&lt;P&gt;   sendmessage (var_return)&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;      Exit Function&lt;/P&gt;&lt;P&gt;End If&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**&lt;STRONG&gt;Can anyone please advise why this would not work ?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I recieve the error dialog box "No connection to R3". Anyone know what I am missing ?&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 May 2010 14:25:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extract-table-using-vb/m-p/6897599#M1480871</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-19T14:25:50Z</dc:date>
    </item>
    <item>
      <title>Re: Extract Table using VB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extract-table-using-vb/m-p/6897600#M1480872</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 use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;R3.Connection.SystemNumber = 0
R3.Connection.ApplicationServer = '172.16.7.1'&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;If don´t work, try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;R3.Connection.LogOn(0,false)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;... only to see if you can connect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also make a test with: &lt;A href="http://www.mengue.com.br/files/QuerySap.zip" target="test_blank"&gt;http://www.mengue.com.br/files/QuerySap.zip&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Leandro Mengue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 May 2010 18:08:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extract-table-using-vb/m-p/6897600#M1480872</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-19T18:08:23Z</dc:date>
    </item>
    <item>
      <title>Re: Extract Table using VB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extract-table-using-vb/m-p/6897601#M1480873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;'R3.Connection.SystemNumber = "0"&lt;/P&gt;&lt;P&gt;That didnt work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and I'm using R3.Connection.Logon ! that's how I know that it's connecting to SAP, because the argument returns false, and I get my dialog box.&lt;/P&gt;&lt;P&gt;&lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 May 2010 13:56:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extract-table-using-vb/m-p/6897601#M1480873</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-20T13:56:05Z</dc:date>
    </item>
    <item>
      <title>Re: Extract Table using VB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extract-table-using-vb/m-p/6897602#M1480874</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Aren't you missing the &lt;STRONG&gt;not equal&lt;/STRONG&gt; operator in the following line?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If R3.Connection.logon(0, True) True Then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Ana-Luisa Sixtos on May 20, 2010 4:41 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 May 2010 14:37:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extract-table-using-vb/m-p/6897602#M1480874</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-20T14:37:29Z</dc:date>
    </item>
    <item>
      <title>Re: Extract Table using VB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extract-table-using-vb/m-p/6897603#M1480875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good catch, but that was just a typo in this message. My actual code has it:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If R3.Connection.LogOn(0, True) not equal True Then&lt;/P&gt;&lt;P&gt;MsgBox "No connection to R3!"&lt;/P&gt;&lt;P&gt;   var_return = " has Failed"&lt;/P&gt;&lt;P&gt;   sendmessage (var_return)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I keep getting the "dialog box", which means my connection is not successful. not sure where im going. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i've tried this at another company and it worked.. &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 May 2010 18:02:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extract-table-using-vb/m-p/6897603#M1480875</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-20T18:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: Extract Table using VB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extract-table-using-vb/m-p/6897604#M1480876</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:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Analyse the file "dev_rfc.trc" that is created in the current directory where you are running the executable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Check if the username is a "RFC" user (if has rights to connect via RFC).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Leandro Mengue&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 May 2010 18:08:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extract-table-using-vb/m-p/6897604#M1480876</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-20T18:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: Extract Table using VB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extract-table-using-vb/m-p/6897605#M1480877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks guys, but no i dont have that dev file. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It got created when I ran your exe program, so I deleted the file, and then re ran my VB, but no dev file now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Couple of times it failed at hte other company was when I used the wrong connection server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a sure shot way of finding which is the correct r3.connection server ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;R3.Connection.applicationserver = "*****"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Currently I found the above through Status (then i take the value in host Data, and add .mycompanyname.com to it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 May 2010 18:22:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extract-table-using-vb/m-p/6897605#M1480877</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-20T18:22:19Z</dc:date>
    </item>
    <item>
      <title>Re: Extract Table using VB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extract-table-using-vb/m-p/6897606#M1480878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;and if it helps, i did run your querysap.exe, AND was able to download the MLEA TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so then i took the server used above, and pasted that in my vb program, but no luck yet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 May 2010 18:31:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extract-table-using-vb/m-p/6897606#M1480878</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-20T18:31:39Z</dc:date>
    </item>
    <item>
      <title>Re: Extract Table using VB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extract-table-using-vb/m-p/6897607#M1480879</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;You try to connect with servername with IP address? (like 192.168.0.0 , ...)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Follow my code. Is not VB. Is Delphi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Connection:=SAPLogonControl1.NewConnection;
     Connection.User:=Ini.ReadString('Conexao','Usuario','');
     Connection.Password:=Ini.ReadString('Conexao','Senha','');
     Connection.Language:='PT';
     Connection.Client:=Ini.ReadString('Conexao','Cliente','');
     Connection.System:=Ini.ReadString('Conexao','Sistema','');
     Connection.SystemNumber:=0;
     Connection.ApplicationServer:=Ini.ReadString('Conexao','IP','');

     if Connection.LogOn(0,True) then begin
        SAPFunctions1.Connection:=Connection;
        SAPFunctions1.RemoveAll;
        Funct:=SAPFunctions1.Add('ZANDON');
        opt4:=Funct.Tables.Item('PI_ZEVTANDON');
        opt1:=Funct.Tables.Item('PI_ZINTFCEAND1');
        opt2:=Funct.Tables.Item('PI_ZINTFCEAND2C');
        opt3:=Funct.Tables.Item('PI_ZINTFCEAND3C');
        opt1.FreeTable;
        opt2.FreeTable;
        opt3.FreeTable;
        opt4.FreeTable;
      endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Leandro Mengue&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 May 2010 18:49:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extract-table-using-vb/m-p/6897607#M1480879</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-20T18:49:36Z</dc:date>
    </item>
    <item>
      <title>Re: Extract Table using VB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extract-table-using-vb/m-p/6897608#M1480880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;right, i understand that, but what i'm really asking is how can i verify i'm using the correct APPLICATION SERVER ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there a way to find out wht my applicationserver should be ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 May 2010 19:23:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extract-table-using-vb/m-p/6897608#M1480880</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-20T19:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: Extract Table using VB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extract-table-using-vb/m-p/6897609#M1480881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I checked the dev_rfc.trc file, and this is what's in it:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="4" type="ul"&gt;&lt;P&gt;ERROR file opened at 20100520 155843 Eastern Daylig, SAP-REL 640,0,117 RFC-VER 3 815402 MT-SL&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;T:4544 Error in program 'MSACCESS': ======&amp;gt; Connect to SAP gateway failed&lt;/P&gt;&lt;P&gt;Connect_PM  GWHOST=*********&lt;STRONG&gt;, GWSERV=sapgw11, ASHOST=&lt;/STRONG&gt;********, SYSNR=11&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOCATION    CPIC (TCP/IP) on local host&lt;/P&gt;&lt;P&gt;ERROR       partner not reached (host *****, service&lt;/P&gt;&lt;P&gt;            3311)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TIME        Thu May 20 15:58:43 2010&lt;/P&gt;&lt;P&gt;RELEASE     640&lt;/P&gt;&lt;P&gt;COMPONENT   NI (network interface)&lt;/P&gt;&lt;P&gt;VERSION     37&lt;/P&gt;&lt;P&gt;RC          -10&lt;/P&gt;&lt;P&gt;MODULE      nixxi_r.cpp&lt;/P&gt;&lt;P&gt;LINE        8688&lt;/P&gt;&lt;P&gt;DETAIL      NiPConnect2&lt;/P&gt;&lt;P&gt;SYSTEM CALL SiPeekPendConn&lt;/P&gt;&lt;P&gt;ERRNO       10061&lt;/P&gt;&lt;P&gt;ERRNO TEXT  WSAECONNREFUSED: Connection refused&lt;/P&gt;&lt;P&gt;COUNTER     1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so i know that the connection failed...any idea how I can resolve this now ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks !!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 May 2010 20:01:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extract-table-using-vb/m-p/6897609#M1480881</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-20T20:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: Extract Table using VB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extract-table-using-vb/m-p/6897610#M1480882</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;In SAP , go to menu "System" / "Status" , on the status screen click on the button "Other kernel info" and look to IP address.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Leandro Mengue&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 May 2010 20:02:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extract-table-using-vb/m-p/6897610#M1480882</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-20T20:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: Extract Table using VB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extract-table-using-vb/m-p/6897611#M1480883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IT WORKED !!!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANK YOU...I CHANGED THE IP ADDRESS EARLIER TOO, BUT THIS TIME I ENTERED En instead of EN for language (by mistake)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anyhooo.it worked...thank you everyone !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 May 2010 20:22:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extract-table-using-vb/m-p/6897611#M1480883</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-20T20:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: Extract Table using VB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extract-table-using-vb/m-p/6897612#M1480884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; 'R3.Connection.SystemNumber = "0"&lt;/P&gt;&lt;P&gt;&amp;gt; That didnt work&lt;/P&gt;&lt;P&gt;Did you use the system number which corresponds to your SAP system? Otherwise it won't work. You'll find it in the SAP logon properties.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 May 2010 20:22:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extract-table-using-vb/m-p/6897612#M1480884</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2010-05-20T20:22:24Z</dc:date>
    </item>
  </channel>
</rss>

