<?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: Execute Procedure with input parameters as table from ABAP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886676#M1790620</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi YS,&lt;BR /&gt;side car approach still means there's an AS ABAP which can connect to the HANA DB via secondary DB connection. In this case proxy creation is still feasible but not via the ADT approach (the nice and easy one) but still there is the possiblility to do this programatically. I'll reply to Jitin with a solution how.&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Jasmin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Nov 2013 07:06:37 GMT</pubDate>
    <dc:creator>jasmin_gruschke</dc:creator>
    <dc:date>2013-11-28T07:06:37Z</dc:date>
    <item>
      <title>Execute Procedure with input parameters as table from ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886655#M1790599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to get the data from HANA stored procedure through ABAP but one of the input parameter is a table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly suggest how can we pass an internal table as input parameter to a procedure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, how to execute this procedure on HANA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Nov 2013 12:17:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886655#M1790599</guid>
      <dc:creator>jitin_kharbanda</dc:creator>
      <dc:date>2013-11-13T12:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: Execute Procedure with input parameters as table from ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886656#M1790600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jatin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If HANA is a primary database then you can create "DATABASE PROCEDURE PROXY" at the ABAP side from the corresponding &lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;HANA stored procedure at the backend.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Then call the same database proxy at ABAP as following &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL DATABASE PROCEDURE&amp;nbsp; DB_PROXY( EXPORTING input_table = lt_in_table&amp;nbsp; importing output_table = lt_out_table).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where DB_PROXY is the name of DATABASE PROCEDURE PROXY&lt;/P&gt;&lt;P&gt;lt_in_table is an ABAP internal table, in your case, probably you can fill this ABAP internal table with your input parameters . &lt;/P&gt;&lt;P&gt;lt_out_table&amp;nbsp; is an ABAP internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Vaibhav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Nov 2013 12:45:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886656#M1790600</guid>
      <dc:creator>vairma</dc:creator>
      <dc:date>2013-11-13T12:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: Execute Procedure with input parameters as table from ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886657#M1790601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jatin,&lt;/P&gt;&lt;P&gt;You can also refer this link for more info on "DATABASE PROCEDURE PROXY"&lt;/P&gt;&lt;P&gt; [&lt;A _jive_internal="true" class="active_link" href="https://answers.sap.com/community/abap/eclipse/blog/2013/05/12/consuming-existing-hana-artifacts-in-abap-is-easy"&gt;http://scn.sap.com/community/abap/eclipse/blog/2013/05/12/consuming-existing-hana-artifacts-in-abap-is-easy]&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Vaibhav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Nov 2013 13:02:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886657#M1790601</guid>
      <dc:creator>vairma</dc:creator>
      <dc:date>2013-11-13T13:02:39Z</dc:date>
    </item>
    <item>
      <title>Re: Execute Procedure with input parameters as table from ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886658#M1790602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Vaibhav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are using HANA as secondary DB, thus database procedure proxy will not work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly suggest.&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, 14 Nov 2013 03:23:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886658#M1790602</guid>
      <dc:creator>jitin_kharbanda</dc:creator>
      <dc:date>2013-11-14T03:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: Execute Procedure with input parameters as table from ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886659#M1790603</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;The simpliest workaround (not sure if efficient) will be create global temporary column table to store the ABAP internal table data. This temporary table will be used to hand data into your procedure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you always need to perform the following order:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. truncate data in your global temporary table in HANA;&lt;/P&gt;&lt;P&gt;2. insert ABAP internal table data into the temporary table in HANA;&lt;/P&gt;&lt;P&gt;3. call your procedure using the global temporary table as input table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;YS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Nov 2013 07:49:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886659#M1790603</guid>
      <dc:creator>yeushengteo</dc:creator>
      <dc:date>2013-11-14T07:49:00Z</dc:date>
    </item>
    <item>
      <title>Re: Execute Procedure with input parameters as table from ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886660#M1790604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Yeu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please explain in detail with an example or code, how to achieve this?&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, 14 Nov 2013 08:03:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886660#M1790604</guid>
      <dc:creator>jitin_kharbanda</dc:creator>
      <dc:date>2013-11-14T08:03:57Z</dc:date>
    </item>
    <item>
      <title>Re: Execute Procedure with input parameters as table from ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886661#M1790605</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;something like this (syntax wise you adjust it accordingly):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;* HANA temporary table is already created and flushing out table record&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;lo_sql-&amp;gt;execute_ddl( 'TRUNCATE TABLE "HANA_INPUT_TABLE"' ).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;lo_sql-&amp;gt;execute_ddl( 'TRUNCATE TABLE "HANA_OUTPUT_TABLE"' ).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;* bring abap internal table record into temporary table&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;LOOP AT abap_it_table INTO lv_tab_content&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; lo_sql-&amp;gt;execute_update( 'INSERT INTO "HANA_INPUT_TABLE" VALUES(''' &amp;amp;&amp;amp; lv_tab_content &amp;amp;&amp;amp;''')').&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 8pt;"&gt;ENDLOOP.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;* call your own procedure which processed your business logic&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;lo_result = lo_sql-&amp;gt;execute_query( 'CALL "your.procedure"( "HANA_INPUT_TABLE", "HANA_OUTPUT_TABLE" ) WITH OVERVIEW ' ).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;lo_result-&amp;gt;close( ).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;* Get the data from output table (optional depending on your requirement)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;lo_result = lo_sql-&amp;gt;execute_query( 'SELECT * from "HANA_OUTPUT_TABLE"' ).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Regards.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;YS&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Nov 2013 09:26:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886661#M1790605</guid>
      <dc:creator>yeushengteo</dc:creator>
      <dc:date>2013-11-14T09:26:09Z</dc:date>
    </item>
    <item>
      <title>Re: Execute Procedure with input parameters as table from ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886662#M1790606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Yeu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This solution will work but it doesn't seems too efficient.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does it mean that whenever we have to execute a procedure with table as input, we have to first create a DB table in HANA, populate it with the required input data and then pass it as input parameter to the HANA Procedure?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, if multiple users try to call the procedures at the same time, then HANA_INPUT_TABLE will be truncated each time. This may result in data loss for other users.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly suggest.&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, 14 Nov 2013 09:58:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886662#M1790606</guid>
      <dc:creator>jitin_kharbanda</dc:creator>
      <dc:date>2013-11-14T09:58:39Z</dc:date>
    </item>
    <item>
      <title>Re: Execute Procedure with input parameters as table from ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886663#M1790607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jitin,&lt;BR /&gt;short comment on your reply to Vaibhavs message. Depending on the NetWeaver version you are working with (i.e. with a minimum release 7.40 SP2) you can access DB Procedure Proxies via a Secondary DB Connection. Just have a look at the ABAP documentation of the statement "&lt;SPAN class="qtext"&gt;CALL DATABASE PROCEDURE &amp;lt;proxy&amp;gt;" with the optional statement "CONNECTION &amp;lt;con&amp;gt;".&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="qtext"&gt;Cheers,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="qtext"&gt;&amp;nbsp; Jasmin&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Nov 2013 14:52:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886663#M1790607</guid>
      <dc:creator>jasmin_gruschke</dc:creator>
      <dc:date>2013-11-26T14:52:52Z</dc:date>
    </item>
    <item>
      <title>Re: Execute Procedure with input parameters as table from ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886664#M1790608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jitin,&lt;BR /&gt;which NW release are you working with? Maybe the new ABAP managed DB procedures are useful for your needs? However, in the end the AMDPs are doing exactly the same job (but transparent for the user). &lt;/P&gt;&lt;P&gt;There is afaik right now no possiblity to use a tabular input parameter for a DB Procedure in HANA. &lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Jasmin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Nov 2013 14:58:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886664#M1790608</guid>
      <dc:creator>jasmin_gruschke</dc:creator>
      <dc:date>2013-11-26T14:58:53Z</dc:date>
    </item>
    <item>
      <title>Re: Execute Procedure with input parameters as table from ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886665#M1790609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Jasmin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply. I'm working with NW 7.40 release.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;CALL DATABASE PROCEDURE &amp;lt;proxy&amp;gt;&lt;/SPAN&gt; will not work for me as I'm not able to create DB Proxy in HANA.&lt;/P&gt;&lt;P&gt;Whenever I try to create one, it gives me an error message &lt;/P&gt;&lt;P&gt;"Database Procedure Proxies can only be created on ABAP systems running on a NewDB"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I understand from this message is to create DB proxy in HANA, it should be primary database. Whereas in my case, primary DB is ORACLE and we are using HANA as secondary DB by creating connection in DBCON and using native SQL to retreive data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Though, I'm now able to pass table as input parameter but I still want to know how can I use database procedure proxies?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly suggest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Jitin Kharbanda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Nov 2013 05:30:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886665#M1790609</guid>
      <dc:creator>jitin_kharbanda</dc:creator>
      <dc:date>2013-11-27T05:30:39Z</dc:date>
    </item>
    <item>
      <title>Re: Execute Procedure with input parameters as table from ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886666#M1790610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jitin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use global temporary table, this table data is private to the connecting session only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;YS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Nov 2013 05:50:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886666#M1790610</guid>
      <dc:creator>yeushengteo</dc:creator>
      <dc:date>2013-11-27T05:50:00Z</dc:date>
    </item>
    <item>
      <title>Re: Execute Procedure with input parameters as table from ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886667#M1790611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jitin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to use SAP HANA as the primary database to create the Database Procedure Proxy. No other way round it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;YS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Nov 2013 06:41:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886667#M1790611</guid>
      <dc:creator>yeushengteo</dc:creator>
      <dc:date>2013-11-27T06:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: Execute Procedure with input parameters as table from ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886668#M1790612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Yeu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I understand that but how to do this?&lt;/P&gt;&lt;P&gt;Any note, document or blog that you can refer please?&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;Jitin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Nov 2013 06:47:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886668#M1790612</guid>
      <dc:creator>jitin_kharbanda</dc:creator>
      <dc:date>2013-11-27T06:47:01Z</dc:date>
    </item>
    <item>
      <title>Re: Execute Procedure with input parameters as table from ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886669#M1790613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this document link &lt;A _jive_internal="true" href="https://answers.sap.com/docs/DOC-41604"&gt;http://scn.sap.com/docs/DOC-41604&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;YS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Nov 2013 06:54:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886669#M1790613</guid>
      <dc:creator>yeushengteo</dc:creator>
      <dc:date>2013-11-27T06:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: Execute Procedure with input parameters as table from ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886670#M1790614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeu, This document explains how to execute HANA procedures from ABAP through database procedure proxy. For this DB Proxy first must be created through HANA but I'm not able to do so as I'm not able to create Database Procedure Proxy through HANA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/332481" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm able to retrieve from HANA using DB connections, but can I use DB proxy at all?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;** we are using HANA as side car approach, SAP NW 7.40.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Nov 2013 07:11:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886670#M1790614</guid>
      <dc:creator>jitin_kharbanda</dc:creator>
      <dc:date>2013-11-27T07:11:08Z</dc:date>
    </item>
    <item>
      <title>Re: Execute Procedure with input parameters as table from ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886671#M1790615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As mentioned earlier in all previous replies.. no other way round it without having a HANA database as primary database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Side car approach is not considered for database procedure proxy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;YS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Nov 2013 07:39:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886671#M1790615</guid>
      <dc:creator>yeushengteo</dc:creator>
      <dc:date>2013-11-27T07:39:51Z</dc:date>
    </item>
    <item>
      <title>Re: Execute Procedure with input parameters as table from ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886672#M1790616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for clarification Yeu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Nov 2013 08:07:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886672#M1790616</guid>
      <dc:creator>jitin_kharbanda</dc:creator>
      <dc:date>2013-11-27T08:07:10Z</dc:date>
    </item>
    <item>
      <title>Re: Execute Procedure with input parameters as table from ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886673#M1790617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi YS,&lt;BR /&gt;not entirely true. You cannot create the DB procedure proxy via the the "standard tools", i.e. the ADT in the eclipse. In order to create the DB procedure proxy if HANA is not the primary DB but a secondary DB you need to create the proxy programatically. Once this is done, you can use the CALL DATABASE PROCEDURE.&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Jasmin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Nov 2013 10:38:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886673#M1790617</guid>
      <dc:creator>jasmin_gruschke</dc:creator>
      <dc:date>2013-11-27T10:38:20Z</dc:date>
    </item>
    <item>
      <title>Re: Execute Procedure with input parameters as table from ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886674#M1790618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Jasmin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please elaborate.&lt;/P&gt;&lt;P&gt;how to create DB proxy &lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;programatically&lt;/SPAN&gt; when using HANA as secondary database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Nov 2013 12:02:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-procedure-with-input-parameters-as-table-from-abap/m-p/9886674#M1790618</guid>
      <dc:creator>jitin_kharbanda</dc:creator>
      <dc:date>2013-11-27T12:02:22Z</dc:date>
    </item>
  </channel>
</rss>

