<?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: ERROR IN ORACLE DATABASE LINK WHEN READING DATA in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-oracle-database-link-when-reading-data/m-p/1935618#M386983</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Look at the below link&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.s001.org/ABAP-Hlp/abapexec.htm" target="test_blank"&gt;http://www.s001.org/ABAP-Hlp/abapexec.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 Feb 2007 16:08:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-13T16:08:19Z</dc:date>
    <item>
      <title>ERROR IN ORACLE DATABASE LINK WHEN READING DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-oracle-database-link-when-reading-data/m-p/1935616#M386981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Masters!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using database link in order to connect SAP with an external database. I set up the connection correctly through DBCO transaction and the program is connecting fine. The error arises when using the select statement, it's giving a ORA-00919: invalid function# error. Here is the code that I'm currently using, please help me find the issue if there is a syntax problem. Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  EXEC SQL.&lt;/P&gt;&lt;P&gt;    CONNECT TO 'S2M'&lt;/P&gt;&lt;P&gt;  ENDEXEC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;      EXEC SQL.&lt;/P&gt;&lt;P&gt;        SELECT  parent_part,&lt;/P&gt;&lt;P&gt;                component_part,&lt;/P&gt;&lt;P&gt;                ref_designator,&lt;/P&gt;&lt;P&gt;                component_type,&lt;/P&gt;&lt;P&gt;                component_quantity&lt;/P&gt;&lt;P&gt;        FROM material_list@MTSIIQA_PRMO.US.ORACLE.COM&lt;/P&gt;&lt;P&gt;        INTO :t_material_list&lt;/P&gt;&lt;P&gt;        WHERE parent_part = :p_matnr.&lt;/P&gt;&lt;P&gt;      ENDEXEC.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Feb 2007 15:11:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-oracle-database-link-when-reading-data/m-p/1935616#M386981</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-12T15:11:31Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR IN ORACLE DATABASE LINK WHEN READING DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-oracle-database-link-when-reading-data/m-p/1935617#M386982</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 used quotations in my sql code like this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  EXEC SQL PERFORMING append_line_tab_dmimemmodule.

    select
        "EMP1"."MEMMODULE"."ID",
        "EMP1"."MEMMODULE"."CLIENT_ID"
        into :lin_dmimemmodule
        from "EMP1"."DMIMEMMODULE"@"EMP1"
  ENDEXEC.
where EMP1 is the name of db link, MEMMODULE is name of table and ID is the name of the table field. I dont know if solves, but may be you try this.

Regards,

Christian
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 16:02:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-oracle-database-link-when-reading-data/m-p/1935617#M386982</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T16:02:54Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR IN ORACLE DATABASE LINK WHEN READING DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-oracle-database-link-when-reading-data/m-p/1935618#M386983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Look at the below link&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.s001.org/ABAP-Hlp/abapexec.htm" target="test_blank"&gt;http://www.s001.org/ABAP-Hlp/abapexec.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 16:08:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-oracle-database-link-when-reading-data/m-p/1935618#M386983</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T16:08:19Z</dc:date>
    </item>
  </channel>
</rss>

