<?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 SAP Connector: Calling multiple fields with the same name using Join in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/SAP-Connector-Calling-multiple-fields-with-the-same-name-using/m-p/191824#M1231553</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, well. Now I think we're getting somewhere. You mention "unique alias for every field". Since my original question was if there was a way to set unique aliases to fields that originally has the same name - perhaps you can try to answer my question? Or at least point me in the general direction?&lt;/P&gt;&lt;P&gt;Cheers!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Aug 2009 14:22:26 GMT</pubDate>
    <dc:creator>jesper_bagge</dc:creator>
    <dc:date>2009-08-18T14:22:26Z</dc:date>
    <item>
      <title>SAP Connector: Calling multiple fields with the same name using Join</title>
      <link>https://community.qlik.com/t5/QlikView/SAP-Connector-Calling-multiple-fields-with-the-same-name-using/m-p/191821#M1231548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;As stated in the topic, I'm trying to call multiple fields with the same name from two tables in SAP using a JOIN statement. However, I get a errormessage saying i have already stated the fieldname once in my query. Would this have been an ordinary MS SQL query i would have used alias to differentiate the two fields. Is there a similar technique I can use when querying SAP using the SAP Connector?&lt;/P&gt;&lt;P&gt;Example as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE ___default_attr="plain" class="jive_text_macro jive_macro_code" jivemacro="code"&gt;&lt;BR /&gt;SQL SELECT&lt;BR /&gt; EKBE~EBELN&lt;BR /&gt; EKBE~EBELP&lt;BR /&gt; EKBE~EINDT&lt;BR /&gt; EKES~EINDT&lt;BR /&gt;FROM EKBE&lt;BR /&gt; JOIN EKES ON EKBE~EBELN = EKES~EBELN AND EKBE~EBELP = EKES~EBELP;&lt;BR /&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;The fields EINDT from the tables EKBE and EKES contain different dates, both of great use to my client. However, I cannot seem to load the both in the same query. I know i can join them in the QV part of my script, but these two tables contain a lot of rows and loadtime is an issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 21:26:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SAP-Connector-Calling-multiple-fields-with-the-same-name-using/m-p/191821#M1231548</guid>
      <dc:creator>jesper_bagge</dc:creator>
      <dc:date>2026-01-26T21:26:37Z</dc:date>
    </item>
    <item>
      <title>SAP Connector: Calling multiple fields with the same name using Join</title>
      <link>https://community.qlik.com/t5/QlikView/SAP-Connector-Calling-multiple-fields-with-the-same-name-using/m-p/191822#M1231550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I never had success joining SAP tables in QV like these. I think it's not supported by connector.&lt;/P&gt;&lt;P&gt;You would be better off create DB View in SAP, say Z_EKBE_EKES and using that view in QV to download data from.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2009 07:20:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SAP-Connector-Calling-multiple-fields-with-the-same-name-using/m-p/191822#M1231550</guid>
      <dc:creator>disqr_rm</dc:creator>
      <dc:date>2009-08-18T07:20:24Z</dc:date>
    </item>
    <item>
      <title>SAP Connector: Calling multiple fields with the same name using Join</title>
      <link>https://community.qlik.com/t5/QlikView/SAP-Connector-Calling-multiple-fields-with-the-same-name-using/m-p/191823#M1231552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The SAP connector is able to execute joins, as it simply executes OPENSQL-statements (http://help.sap.com/saphelp_470/helpdata/de/fc/eb3b8b358411d1829f0000e829fbfe/content.htm) against the SAP-system!&lt;/P&gt;&lt;P&gt;1) ensure that you have a valid openSql-statement&lt;/P&gt;&lt;P&gt;2) ensure that you have a unique alias for every field in your statement. QlikView complains if the (Open-)SQL-Statement returns multiple fields with the same name.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2009 14:02:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SAP-Connector-Calling-multiple-fields-with-the-same-name-using/m-p/191823#M1231552</guid>
      <dc:creator />
      <dc:date>2009-08-18T14:02:46Z</dc:date>
    </item>
    <item>
      <title>SAP Connector: Calling multiple fields with the same name using Join</title>
      <link>https://community.qlik.com/t5/QlikView/SAP-Connector-Calling-multiple-fields-with-the-same-name-using/m-p/191824#M1231553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, well. Now I think we're getting somewhere. You mention "unique alias for every field". Since my original question was if there was a way to set unique aliases to fields that originally has the same name - perhaps you can try to answer my question? Or at least point me in the general direction?&lt;/P&gt;&lt;P&gt;Cheers!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2009 14:22:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SAP-Connector-Calling-multiple-fields-with-the-same-name-using/m-p/191824#M1231553</guid>
      <dc:creator>jesper_bagge</dc:creator>
      <dc:date>2009-08-18T14:22:26Z</dc:date>
    </item>
    <item>
      <title>SAP Connector: Calling multiple fields with the same name using Join</title>
      <link>https://community.qlik.com/t5/QlikView/SAP-Connector-Calling-multiple-fields-with-the-same-name-using/m-p/191825#M1231555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are right; SAPConnector seems to ignore aliasing at all;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have been playing around with QV functions FieldName() in the LOAD-Statement, but they don't worked for me as expected. I don't really have any more ideas how this could be done, beside joining the data in QV...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2009 16:31:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SAP-Connector-Calling-multiple-fields-with-the-same-name-using/m-p/191825#M1231555</guid>
      <dc:creator />
      <dc:date>2009-08-18T16:31:57Z</dc:date>
    </item>
    <item>
      <title>SAP Connector: Calling multiple fields with the same name using Join</title>
      <link>https://community.qlik.com/t5/QlikView/SAP-Connector-Calling-multiple-fields-with-the-same-name-using/m-p/191826#M1231557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So its the SAPConnector that refuses to accept aliasing?&lt;/P&gt;&lt;P&gt;I took some time reading trough the OPEN SQL documentation you linked in your previous reply and found the following: &lt;A href="http://help.sap.com/erp2005_ehp_04/helpdata/DE/62/10a423384746e8bf5f15ccdd36e8b1/content.htm"&gt;http://help.sap.com/erp2005_ehp_04/helpdata/DE/62/10a423384746e8bf5f15ccdd36e8b1/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;This would imply that you can use the AS keyword when retrieving data from SAP - but not by using the SAPConnector?&lt;/P&gt;&lt;P&gt;If that is the case, maybe its time for a feature request? &lt;IMG alt="Smile" src="http://community.qlik.com/emoticons/emotion-1.gif" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Aug 2009 15:59:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SAP-Connector-Calling-multiple-fields-with-the-same-name-using/m-p/191826#M1231557</guid>
      <dc:creator>jesper_bagge</dc:creator>
      <dc:date>2009-08-19T15:59:04Z</dc:date>
    </item>
    <item>
      <title>SAP Connector: Calling multiple fields with the same name using Join</title>
      <link>https://community.qlik.com/t5/QlikView/SAP-Connector-Calling-multiple-fields-with-the-same-name-using/m-p/191827#M1231559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; I have SAP Connector version 16.0.0.400 and it still does not allow aliasing however it will allow a join from tables with fields with the same name. It automatically appends 01 to the end of the second field. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Oct 2011 21:40:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SAP-Connector-Calling-multiple-fields-with-the-same-name-using/m-p/191827#M1231559</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-10-22T21:40:30Z</dc:date>
    </item>
  </channel>
</rss>

