<?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: RFC_READ_TABLE In Visual Basic in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-in-visual-basic/m-p/699331#M31712</link>
    <description>&lt;P&gt;Hi  &lt;SPAN class="mention-scrubbed"&gt;matt.fraser&lt;/SPAN&gt; ,&lt;/P&gt;&lt;P&gt;I don't know what is the correct tag, but it's absolutely not EPM Add-In for Excel (Excel BPC Client)&lt;/P&gt;&lt;P&gt;Number of similar questions were asked in 
           &lt;A href="https://answers.sap.com/tags/833755570260738661924709785639136"&gt;ABAP Development&lt;/A&gt;
&lt;/P&gt;</description>
    <pubDate>Thu, 08 Nov 2018 16:32:17 GMT</pubDate>
    <dc:creator>former_member186338</dc:creator>
    <dc:date>2018-11-08T16:32:17Z</dc:date>
    <item>
      <title>RFC_READ_TABLE In Visual Basic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-in-visual-basic/m-p/699327#M31708</link>
      <description>&lt;P&gt;Hi experts, I was trying to use the RFC_READ_TABLE more than once but I couldn't&lt;/P&gt;
  &lt;P&gt;I have this code:&lt;/P&gt;
  &lt;P&gt;Set Functions = CreateObject("SAP.Functions") Functions.Connection.System = "Tenaris - TEST" 'Ambiente en SAP &lt;/P&gt;
  &lt;P&gt;Functions.Connection.client = xxxx&lt;/P&gt;
  &lt;P&gt;Functions.Connection.user = xxxx &lt;/P&gt;
  &lt;P&gt;Functions.Connection.Password = xxxx&lt;/P&gt;
  &lt;P&gt;Functions.Connection.Language = xxxx&lt;/P&gt;
  &lt;P&gt;Set RfcCallTransaction = Functions.Add("RFC_READ_TABLE") &lt;/P&gt;
  &lt;P&gt;Set strExport1 = RfcCallTransaction.exports("QUERY_TABLE") &lt;/P&gt;
  &lt;P&gt;Set strExport2 = RfcCallTransaction.exports("DELIMITER") &lt;/P&gt;
  &lt;P&gt;Set strExport3 = RfcCallTransaction.exports("NO_DATA") &lt;/P&gt;
  &lt;P&gt;Set strExport4 = RfcCallTransaction.exports("ROWSKIPS") &lt;/P&gt;
  &lt;P&gt;Set strExport5 = RfcCallTransaction.exports("ROWCOUNT") &lt;/P&gt;
  &lt;P&gt;Set tblOptions = RfcCallTransaction.Tables("OPTIONS") &lt;/P&gt;
  &lt;P&gt;Set tblFields = RfcCallTransaction.Tables("FIELDS") &lt;/P&gt;
  &lt;P&gt;Set tblData = RfcCallTransaction.Tables("DATA")&lt;/P&gt;
  &lt;P&gt;strExport1.Value = xxxx &lt;/P&gt;
  &lt;P&gt;strExport2.Value = xxxx&lt;/P&gt;
  &lt;P&gt;strExport3.Value = xxxx &lt;/P&gt;
  &lt;P&gt;strExport4.Value = xxxx &lt;/P&gt;
  &lt;P&gt;strExport5.Value = xxxx&lt;/P&gt;
  &lt;P&gt;tblOptions.AppendRow &lt;/P&gt;
  &lt;P&gt;tblOptions(1, "TEXT") = xxxx&lt;/P&gt;
  &lt;P&gt;tblFields.AppendRow &lt;/P&gt;
  &lt;P&gt;tblFields(1, "FIELDNAME") = xxx&lt;/P&gt;
  &lt;P&gt;If RfcCallTransaction.Call = True Then &lt;/P&gt;
  &lt;P&gt;If tblData.ROWCOUNT &amp;gt; 0 Then &lt;/P&gt;
  &lt;P&gt; Dim DatTxt, OutputTxt As String &lt;/P&gt;
  &lt;P&gt; For intRow = 1 To tblData.ROWCOUNT &lt;/P&gt;
  &lt;P&gt; VG = tblData(intRow, "WA") &lt;/P&gt;
  &lt;P&gt; Next &lt;/P&gt;
  &lt;P&gt; Else &lt;/P&gt;
  &lt;P&gt; MsgBox "No records returned" &lt;/P&gt;
  &lt;P&gt; End If&lt;/P&gt;
  &lt;P&gt; Else MsgBox "Error en la Query" &lt;/P&gt;
  &lt;P&gt;End If&lt;/P&gt;
  &lt;P&gt;I need to made more than one query but without logoff, do you know if there's some how to do it?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Nov 2018 12:00:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-in-visual-basic/m-p/699327#M31708</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-11-08T12:00:38Z</dc:date>
    </item>
    <item>
      <title>Re: RFC_READ_TABLE In Visual Basic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-in-visual-basic/m-p/699328#M31709</link>
      <description>&lt;P&gt;Sorry, but your question has no relation to the tag: &lt;/P&gt;&lt;P&gt;&lt;A href="https://answers.sap.com/tags/613314084077778299166571926615629"&gt;EPM Add-In for Excel&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Nov 2018 12:33:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-in-visual-basic/m-p/699328#M31709</guid>
      <dc:creator>former_member186338</dc:creator>
      <dc:date>2018-11-08T12:33:44Z</dc:date>
    </item>
    <item>
      <title>Re: RFC_READ_TABLE In Visual Basic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-in-visual-basic/m-p/699329#M31710</link>
      <description>&lt;P&gt;What do you mean by "trying to use the RFC_READ_TABLE &lt;STRONG&gt;more than once&lt;/STRONG&gt;"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Nov 2018 13:58:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-in-visual-basic/m-p/699329#M31710</guid>
      <dc:creator>former_member186338</dc:creator>
      <dc:date>2018-11-08T13:58:40Z</dc:date>
    </item>
    <item>
      <title>Re: RFC_READ_TABLE In Visual Basic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-in-visual-basic/m-p/699330#M31711</link>
      <description>&lt;P&gt;Hi Vadim,&lt;/P&gt;&lt;P&gt;What tag would you suggest for this question? I was looking for something related to .NET Connector, but that doesn't seem to exist anymore.&lt;/P&gt;&lt;P&gt;Cheers,&lt;BR /&gt;Matt&lt;/P&gt;</description>
      <pubDate>Thu, 08 Nov 2018 16:09:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-in-visual-basic/m-p/699330#M31711</guid>
      <dc:creator>Matt_Fraser</dc:creator>
      <dc:date>2018-11-08T16:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: RFC_READ_TABLE In Visual Basic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-in-visual-basic/m-p/699331#M31712</link>
      <description>&lt;P&gt;Hi  &lt;SPAN class="mention-scrubbed"&gt;matt.fraser&lt;/SPAN&gt; ,&lt;/P&gt;&lt;P&gt;I don't know what is the correct tag, but it's absolutely not EPM Add-In for Excel (Excel BPC Client)&lt;/P&gt;&lt;P&gt;Number of similar questions were asked in 
           &lt;A href="https://answers.sap.com/tags/833755570260738661924709785639136"&gt;ABAP Development&lt;/A&gt;
&lt;/P&gt;</description>
      <pubDate>Thu, 08 Nov 2018 16:32:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-in-visual-basic/m-p/699331#M31712</guid>
      <dc:creator>former_member186338</dc:creator>
      <dc:date>2018-11-08T16:32:17Z</dc:date>
    </item>
    <item>
      <title>Re: RFC_READ_TABLE In Visual Basic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-in-visual-basic/m-p/699332#M31713</link>
      <description>&lt;P&gt;I've moved it there, though I'm not convinced that's the right tag. Perhaps a moderator over there will have a better idea.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Nov 2018 16:36:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-in-visual-basic/m-p/699332#M31713</guid>
      <dc:creator>Matt_Fraser</dc:creator>
      <dc:date>2018-11-08T16:36:59Z</dc:date>
    </item>
    <item>
      <title>Re: RFC_READ_TABLE In Visual Basic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-in-visual-basic/m-p/699333#M31714</link>
      <description>&lt;P&gt;see  &lt;SPAN class="mention-scrubbed"&gt;stefan.schnell&lt;/SPAN&gt;s posts:&lt;/P&gt;&lt;P&gt;&lt;A href="https://blogs.sap.com/2017/06/05/buddies-excel-vba-and-rfc_read_table/" target="test_blank"&gt;https://blogs.sap.com/2017/06/05/buddies-excel-vba-and-rfc_read_table/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://blogs.sap.com/2017/06/10/tip-how-to-soften-rfc_read_table-length-restriction-with-excel-vba/" target="test_blank"&gt;https://blogs.sap.com/2017/06/10/tip-how-to-soften-rfc_read_table-length-restriction-with-excel-vba/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Nov 2018 15:34:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-in-visual-basic/m-p/699333#M31714</guid>
      <dc:creator>EnnoWulff</dc:creator>
      <dc:date>2018-11-16T15:34:57Z</dc:date>
    </item>
  </channel>
</rss>

