<?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 Native SQL - Insert syntax in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/native-sql-insert-syntax/m-p/2181645#M464011</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;Can any body give me syntax for Native SQL command 'INSERT' with example.&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Seshagiri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Apr 2007 11:30:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-30T11:30:04Z</dc:date>
    <item>
      <title>Native SQL - Insert syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/native-sql-insert-syntax/m-p/2181645#M464011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;Can any body give me syntax for Native SQL command 'INSERT' with example.&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Seshagiri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 11:30:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/native-sql-insert-syntax/m-p/2181645#M464011</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T11:30:04Z</dc:date>
    </item>
    <item>
      <title>Re: Native SQL - Insert syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/native-sql-insert-syntax/m-p/2181646#M464012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai sheshgiri,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the complete code( with syntax).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go through it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  Z_NATIVE_SQL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS p_carrid TYPE spfli-carrid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;  carrid   TYPE spfli-carrid,&lt;/P&gt;&lt;P&gt;  connid   TYPE spfli-connid,&lt;/P&gt;&lt;P&gt;  cityfrom TYPE spfli-cityfrom,&lt;/P&gt;&lt;P&gt;  cityto   TYPE spfli-cityto.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXEC SQL.&lt;/P&gt;&lt;P&gt;  OPEN dbcur FOR&lt;/P&gt;&lt;P&gt;    SELECT distinct carrid,connid,cityfrom, cityto&lt;/P&gt;&lt;P&gt;           FROM spfli&lt;/P&gt;&lt;P&gt;           WHERE carrid = :p_carrid&lt;/P&gt;&lt;P&gt;ENDEXEC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO.&lt;/P&gt;&lt;P&gt;  EXEC SQL.&lt;/P&gt;&lt;P&gt;    FETCH NEXT dbcur INTO :carrid, :connid, :cityfrom, :cityto&lt;/P&gt;&lt;P&gt;  ENDEXEC.&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    EXIT.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WRITE:&lt;/P&gt;&lt;P&gt;    / carrid,connid, cityfrom, cityto.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXEC SQL.&lt;/P&gt;&lt;P&gt;  CLOSE dbcur&lt;/P&gt;&lt;P&gt;ENDEXEC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds,&lt;/P&gt;&lt;P&gt;Ram chary.Pammi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 12:41:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/native-sql-insert-syntax/m-p/2181646#M464012</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T12:41:01Z</dc:date>
    </item>
    <item>
      <title>Re: Native SQL - Insert syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/native-sql-insert-syntax/m-p/2181647#M464013</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;Please check this sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*Create new HWID
        EXEC SQL.
          INSERT INTO CTXTB_PACKDATA
                 (HWID, CODE, SRS, AM, UCID, STOPLEVEL)
          VALUES (:LWA_HWID, :LWA_CODE, :LWA_SRS, :LWA_AM, '0', '0')
        ENDEXEC.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 13:50:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/native-sql-insert-syntax/m-p/2181647#M464013</guid>
      <dc:creator>ferry_lianto</dc:creator>
      <dc:date>2007-04-30T13:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: Native SQL - Insert syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/native-sql-insert-syntax/m-p/2181648#M464014</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Native SQL syntax depends on your database system. So, what database do you use?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 14:57:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/native-sql-insert-syntax/m-p/2181648#M464014</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T14:57:48Z</dc:date>
    </item>
    <item>
      <title>Re: Native SQL - Insert syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/native-sql-insert-syntax/m-p/2181649#M464015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The databse is MS-SQL.&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Seshagiri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 15:34:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/native-sql-insert-syntax/m-p/2181649#M464015</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T15:34:09Z</dc:date>
    </item>
    <item>
      <title>Re: Native SQL - Insert syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/native-sql-insert-syntax/m-p/2181650#M464016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for your quick info.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i couldn't find any INSERT command in the example code.&lt;/P&gt;&lt;P&gt;I am working in ECC 6.0 version.&lt;/P&gt;&lt;P&gt;I have fetched data using OPEN-SQL statements into my internal table,which is 5 records.&lt;/P&gt;&lt;P&gt;Actually i need to insert the data into a database table of another server of MS-SQL(with VB as front end).&lt;/P&gt;&lt;P&gt;Can you please show me the INSERT command for this scenario?&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Seshagiri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 15:46:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/native-sql-insert-syntax/m-p/2181650#M464016</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T15:46:31Z</dc:date>
    </item>
    <item>
      <title>Re: Native SQL - Insert syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/native-sql-insert-syntax/m-p/2181651#M464017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for quick info.&lt;/P&gt;&lt;P&gt;Can you please give me source code with Native SQL commands for following ABAP program:&lt;/P&gt;&lt;P&gt;******************************************************************************************&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;My task is to transfer some data from SAP(ECC 6.0) to another NON-SAP server (MS-SQL database system).I have the limitation that I should not write code in MS-SQL system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My code in ABAP is as shown below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;********************************************************&lt;/P&gt;&lt;P&gt;REPORT ZDATA_TEST_GIRI4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of it_customer occurs 0,&lt;/P&gt;&lt;P&gt;kunnr like kna1-kunnr, &amp;#147; CHAR - 10&lt;/P&gt;&lt;P&gt;name1 like kna1-name1, &amp;#147; CHAR - 35&lt;/P&gt;&lt;P&gt;end of it_customer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select kunnr&lt;/P&gt;&lt;P&gt;name1&lt;/P&gt;&lt;P&gt;up to 5 rows into table it_customer&lt;/P&gt;&lt;P&gt;from kna1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--Code for data transfer using Native SQL statements&lt;/P&gt;&lt;P&gt;*--(Yet to be written...)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(Some information):&lt;/P&gt;&lt;P&gt;In the MS-SQL system,the &lt;/P&gt;&lt;P&gt;target table name is : customers&lt;/P&gt;&lt;P&gt;Fields are:&lt;/P&gt;&lt;P&gt;CustomerNo - Data type - LONG&lt;/P&gt;&lt;P&gt;CustomerEName - Data type - TEXT(35)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(1)Can you please,give me the Native SQL statements(preferably the source code),like data declarations,insert commands for data transfer from it_customer to target table &amp;#145;customers&amp;#146;.&lt;/P&gt;&lt;P&gt;(2)And data retrieval statements to cross check whether data is inserted sucessfully or not?&lt;/P&gt;&lt;P&gt;Note: Also please tell me how to cross check that the connection is correctly established between SAP and MS-SQL servers?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Seshagiri.M. &lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="86" type="ul"&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 15:55:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/native-sql-insert-syntax/m-p/2181651#M464017</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T15:55:59Z</dc:date>
    </item>
    <item>
      <title>Re: Native SQL - Insert syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/native-sql-insert-syntax/m-p/2181652#M464018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;P&gt;The scenario i was telling you is as follows:&lt;/P&gt;&lt;P&gt;===================================&lt;/P&gt;&lt;P&gt;My requirement is to transfer some data from SAP(ECC 6.0) to another NON-SAP server (MS-SQL database system) using Native SQL commands.I have the limitation that I should not write code in MS-SQL system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My code in ABAP is as shown below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;********************************************************&lt;/P&gt;&lt;P&gt;REPORT ZDATA_TEST_GIRI4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of it_customer occurs 0,&lt;/P&gt;&lt;P&gt;kunnr like kna1-kunnr, &amp;#147; CHAR - 10&lt;/P&gt;&lt;P&gt;name1 like kna1-name1, &amp;#147; CHAR - 35&lt;/P&gt;&lt;P&gt;end of it_customer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select kunnr&lt;/P&gt;&lt;P&gt;name1&lt;/P&gt;&lt;P&gt;up to 5 rows into table it_customer&lt;/P&gt;&lt;P&gt;from kna1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--Code for data transfer using Native SQL statements&lt;/P&gt;&lt;P&gt;*--(Yet to be written...)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(Some information):&lt;/P&gt;&lt;P&gt;In the MS-SQL system,the &lt;/P&gt;&lt;P&gt;target table name is : customers&lt;/P&gt;&lt;P&gt;Fields are:&lt;/P&gt;&lt;P&gt;CustomerNo - Data type - LONG&lt;/P&gt;&lt;P&gt;CustomerEName - Data type - TEXT(35)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(1)Can you please,give me the Native SQL statements(preferably the source code),like data declarations,insert commands for data transfer from it_customer to target table &amp;#145;customers&amp;#146;.&lt;/P&gt;&lt;P&gt;(2)And data retrieval statements to cross check whether data is inserted sucessfully or not?&lt;/P&gt;&lt;P&gt;Note: Also please tell me how to cross check that the connection is correctly established between SAP and MS-SQL servers?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Seshagiri.M.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 16:14:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/native-sql-insert-syntax/m-p/2181652#M464018</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T16:14:14Z</dc:date>
    </item>
    <item>
      <title>Re: Native SQL - Insert syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/native-sql-insert-syntax/m-p/2181653#M464019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi seshagiri,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. If you sap server is UNIX/AIX operating system,&lt;/P&gt;&lt;P&gt;   then probably this kind of secondary database connection&lt;/P&gt;&lt;P&gt;  to MSSQL Server (Microsoft OS)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. is not possible at present.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Bcos the dll/system files required,&lt;/P&gt;&lt;P&gt;    are not provided by SAP for such connection.&lt;/P&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;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 16:43:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/native-sql-insert-syntax/m-p/2181653#M464019</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T16:43:58Z</dc:date>
    </item>
    <item>
      <title>Re: Native SQL - Insert syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/native-sql-insert-syntax/m-p/2181654#M464020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have to insert some 100 records from SAP ECC 6.0 to another legacy system whose database is oracle.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am able to insert one record, but i am not sure of inserting all the 100 records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do i loop etc in between exec sql and endexec.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: I have the data in sap in internal table and custom table as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT INTO KM.CIP_AGREEMENT_DETAILS&lt;/P&gt;&lt;P&gt;     ( SLC_ID, AGREEMENT_ID, AGREEMENT_TYPE_ID, AGREEMENT_START_DATE, AGREEMENT_END_DATE )&lt;/P&gt;&lt;P&gt;    VALUES ( 0000000000955, 0000000033555, 005, '01-JAN-2007', '02-03-2008' )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Sep 2007 23:59:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/native-sql-insert-syntax/m-p/2181654#M464020</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-11T23:59:58Z</dc:date>
    </item>
  </channel>
</rss>

