<?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: Fetching Oracle stored procedure data into QlikView FAILS in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Fetching-Oracle-stored-procedure-data-into-QlikView-FAILS/m-p/1121983#M633341</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have come to know from &lt;A href="https://docs.oracle.com/cd/E11882_01/timesten.112/e21639/overview.htm#TTPLS138" title="https://docs.oracle.com/cd/E11882_01/timesten.112/e21639/overview.htm#TTPLS138"&gt;Programming Features in PL/SQL in TimesTen&lt;/A&gt; (Using bind variables from an application) that &lt;EM&gt;&lt;STRONG&gt;p_comment&lt;/STRONG&gt;&lt;/EM&gt; has to be declared as a bind variable since bind variables in an application correspond to parameters declared in a procedure. Also with in the procedure call, I have passed &lt;EM&gt;&lt;STRONG&gt;p_comment&lt;/STRONG&gt;&lt;/EM&gt; as a bind variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;OLEDB CONNECT TO [Provider=OraOLEDB.Oracle.1;Persist Security Info=True;User ID=scuser;Data Source=********************;Extended Properties=""] (XPassword is cPWNCSJOHLbGCYEHRRMIJ);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;SQL&lt;/P&gt;
&lt;P&gt;DECLARE&lt;/P&gt;
&lt;P&gt;&amp;nbsp; :p_comment VARCHAR2(10);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Tab:&lt;/P&gt;
&lt;P&gt;Load *;&lt;/P&gt;
&lt;P&gt;sql call SCUSER.PROCEDURE5(:$(p_comment));&lt;/P&gt;

&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Now I do not see any error in QlikView script execution&lt;STRONG&gt; but not able to fetch &lt;EM&gt;p_comment&lt;/EM&gt; into QlikView as a field.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can somebody kindly help me with this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Laxmaiah Chowdary&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 04 Jun 2016 13:11:04 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-06-04T13:11:04Z</dc:date>
    <item>
      <title>Fetching Oracle stored procedure data into QlikView FAILS</title>
      <link>https://community.qlik.com/t5/QlikView/Fetching-Oracle-stored-procedure-data-into-QlikView-FAILS/m-p/1121982#M633340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to fetch Oracle stored procedure data into QlikView. Basically I want to get &lt;EM&gt;p_comment&lt;/EM&gt; in stored procedure as a QlikView field so that I can take a listbox for that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am able to execute the stored procedure through Oracle and it is giving correct results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Creating Stored Procedure:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;---------------------------------------&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;create or replace PROCEDURE PROCEDURE5(p_comment out varchar2)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;AS&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;BEGIN&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;p_comment := 'success';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;END;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Executing Stored Procedure from Oracle:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;------------------------------------------------------------&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt; font-family: arial, helvetica, sans-serif;"&gt;DECLARE&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif; font-size: 8pt;"&gt;&amp;nbsp; p_comment VARCHAR2(10);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif; font-size: 8pt;"&gt;BEGIN&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif; font-size: 8pt;"&gt;&amp;nbsp; PROCEDURE5(p_comment);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif; font-size: 8pt;"&gt;&amp;nbsp; DBMS_OUTPUT.PUT_LINE(p_comment);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt; font-family: arial, helvetica, sans-serif;"&gt;END;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Executing stored procedure through QlikView:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;------------------------------------------------------------------&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt; font-family: calibri, verdana, arial, sans-serif;"&gt;OLEDB CONNECT TO [Provider=OraOLEDB.Oracle.1;Persist Security Info=True;User ID=scuser;Data Source=*******************;Extended Properties=""] (XPassword is cPWNCSJOHLbGCYEHRRMIJ);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 8pt;"&gt;SQL&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 8pt;"&gt;DECLARE&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 8pt;"&gt;&amp;nbsp; p_comment VARCHAR2(10);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 8pt;"&gt;Tab:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 8pt;"&gt;Load *;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt; font-family: calibri, verdana, arial, sans-serif;"&gt;SQL CALL PROCEDURE5(p_comment);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture11.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/126786_Capture11.JPG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture12.JPG" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/126787_Capture12.JPG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;I had even tried to take p_comment parameter get assigned with Let and Set statements as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;OLEDB CONNECT TO [Provider=OraOLEDB.Oracle.1;Persist Security Info=True;User ID=scuser;Data Source=*******************;Extended Properties=""] (XPassword is cPWNCSJOHLbGCYEHRRMIJ);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Set p_comment='p_comment'; (or) Let p_comment='p_comment';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Tab1: &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;SQL CALL PROCEDURE5(p_comment);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it is giving below error.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture13.JPG" class="jive-image image-3" height="142" src="https://community.qlik.com/legacyfs/online/126794_Capture13.JPG" style="height: 142.247px; width: 412px;" width="412" /&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Could somebody please look into this and help me out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Laxmaiah Chowdary&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2016 12:39:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fetching-Oracle-stored-procedure-data-into-QlikView-FAILS/m-p/1121982#M633340</guid>
      <dc:creator />
      <dc:date>2016-06-03T12:39:47Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching Oracle stored procedure data into QlikView FAILS</title>
      <link>https://community.qlik.com/t5/QlikView/Fetching-Oracle-stored-procedure-data-into-QlikView-FAILS/m-p/1121983#M633341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have come to know from &lt;A href="https://docs.oracle.com/cd/E11882_01/timesten.112/e21639/overview.htm#TTPLS138" title="https://docs.oracle.com/cd/E11882_01/timesten.112/e21639/overview.htm#TTPLS138"&gt;Programming Features in PL/SQL in TimesTen&lt;/A&gt; (Using bind variables from an application) that &lt;EM&gt;&lt;STRONG&gt;p_comment&lt;/STRONG&gt;&lt;/EM&gt; has to be declared as a bind variable since bind variables in an application correspond to parameters declared in a procedure. Also with in the procedure call, I have passed &lt;EM&gt;&lt;STRONG&gt;p_comment&lt;/STRONG&gt;&lt;/EM&gt; as a bind variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;OLEDB CONNECT TO [Provider=OraOLEDB.Oracle.1;Persist Security Info=True;User ID=scuser;Data Source=********************;Extended Properties=""] (XPassword is cPWNCSJOHLbGCYEHRRMIJ);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;SQL&lt;/P&gt;
&lt;P&gt;DECLARE&lt;/P&gt;
&lt;P&gt;&amp;nbsp; :p_comment VARCHAR2(10);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Tab:&lt;/P&gt;
&lt;P&gt;Load *;&lt;/P&gt;
&lt;P&gt;sql call SCUSER.PROCEDURE5(:$(p_comment));&lt;/P&gt;

&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Now I do not see any error in QlikView script execution&lt;STRONG&gt; but not able to fetch &lt;EM&gt;p_comment&lt;/EM&gt; into QlikView as a field.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can somebody kindly help me with this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Laxmaiah Chowdary&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Jun 2016 13:11:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fetching-Oracle-stored-procedure-data-into-QlikView-FAILS/m-p/1121983#M633341</guid>
      <dc:creator />
      <dc:date>2016-06-04T13:11:04Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching Oracle stored procedure data into QlikView FAILS</title>
      <link>https://community.qlik.com/t5/QlikView/Fetching-Oracle-stored-procedure-data-into-QlikView-FAILS/m-p/1121984#M633342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I had even tried with below code. But it did not work out for me with Oracle.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OLEDB CONNECT TO [Provider=OraOLEDB.Oracle.1;Persist Security Info=True;User ID=scuser;Data Source=***********************;Extended Properties=""] (XPassword is cPWNCSJOHLbGCYEHRRMIJ);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL&lt;/P&gt;&lt;P&gt;DECLARE&lt;/P&gt;&lt;P&gt;&amp;nbsp; :(p_comment) VARCHAR2(30)&lt;/P&gt;&lt;P&gt;call SCUSER.PROCEDURE5(:(p_comment)) output&lt;/P&gt;&lt;P&gt;select :(p_comment) as p_comment from dual;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tab:&lt;/P&gt;&lt;P&gt;LOAD *;&lt;/P&gt;&lt;P&gt;SQL&lt;/P&gt;&lt;P&gt;select '$(p_comment)' AS myField&lt;/P&gt;&lt;P&gt;from dual;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had referred &lt;A href="https://community.qlik.com/thread/3032"&gt;To pass parameters from QlikView application to a stored Procedure&lt;/A&gt; link &lt;STRONG style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A href="https://community.qlik.com/people/bmw"&gt;bmw&lt;/A&gt;&amp;nbsp; response.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can some one please help me out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Laxmaiah Chowdary&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jun 2016 07:41:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fetching-Oracle-stored-procedure-data-into-QlikView-FAILS/m-p/1121984#M633342</guid>
      <dc:creator />
      <dc:date>2016-06-06T07:41:32Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching Oracle stored procedure data into QlikView FAILS</title>
      <link>https://community.qlik.com/t5/QlikView/Fetching-Oracle-stored-procedure-data-into-QlikView-FAILS/m-p/1121985#M633343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello &lt;A href="https://community.qlik.com/qlik-users/52025"&gt;vikasmahajan&lt;/A&gt;&lt;A href="https://community.qlik.com/qlik-users/107856"&gt;vsaikrishna&lt;/A&gt;@&lt;A href="https://community.qlik.com/qlik-users/107856"&gt;vsaikrishna&lt;/A&gt;‌&lt;A href="https://community.qlik.com/qlik-users/27832"&gt;chauhans85&lt;/A&gt;‌&lt;A href="https://community.qlik.com/qlik-users/155142"&gt;nagen1908&lt;/A&gt;‌&lt;A href="https://community.qlik.com/qlik-users/115636"&gt;QVKishore&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I have seen that you guys tried fetching oracle stored procedure data to QlikView.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please kindly take a look at this thread and help me out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thank you,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Laxmaiah Chowdary&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jun 2016 07:48:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fetching-Oracle-stored-procedure-data-into-QlikView-FAILS/m-p/1121985#M633343</guid>
      <dc:creator />
      <dc:date>2016-06-06T07:48:01Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching Oracle stored procedure data into QlikView FAILS</title>
      <link>https://community.qlik.com/t5/QlikView/Fetching-Oracle-stored-procedure-data-into-QlikView-FAILS/m-p/1121986#M633344</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;Finally I have found an answer to this question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="text-decoration: underline;"&gt;Limitations in QlikView integration with Oracle Stored Procedures:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;1. QlikView fetches data only through ODBC connection not OLEDB connection.&lt;/P&gt;&lt;P&gt;2. QlikView fetches data only through ref cursors not&amp;nbsp; normal procedures.&lt;/P&gt;&lt;P&gt;3. QlikView fetches data only from FUNCTION not Stored Procedures.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So below is updated ones.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FUNCTION:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;CREATE OR REPLACE FUNCTION MYFUNC&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RETURN SYS_REFCURSOR&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;IS&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lv_ret_refcursor&amp;nbsp; SYS_REFCURSOR;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;BEGIN&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; OPEN lv_ret_refcursor FOR&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SELECT 'SUCCESS' as result&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM DUAL;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RETURN lv_ret_refcursor;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;END ; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;QlikView Script:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;ODBC CONNECT TO [OracleODBC64;DBQ=dev] (XUserId is JWQfXZNMVbcKGZdT, XPassword is GaZdLSJOHLbGCYEHRRMII);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;myfuncreturn:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD *;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;SQL &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;select &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;{? = CALL MYFUNC }; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;Output&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;:&lt;IMG alt="SP_QV_Capture.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/127270_SP_QV_Capture.JPG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;Similarly for functions with input parameters, the sample QlikView is code as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set v_Data=value; //Based on function parameter return type&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;EM&gt;myfuncreturn:&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;EM&gt;LOAD *;&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;EM&gt;SQL &lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;EM&gt;select &lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;EM&gt;{? = CALL my_&lt;EM style="font-size: 13.3333px;"&gt;MYFUNC &lt;/EM&gt;($(v_Data))};&amp;nbsp; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Laxmaiah Chowdary&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2016 14:31:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fetching-Oracle-stored-procedure-data-into-QlikView-FAILS/m-p/1121986#M633344</guid>
      <dc:creator />
      <dc:date>2016-06-08T14:31:32Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching Oracle stored procedure data into QlikView FAILS</title>
      <link>https://community.qlik.com/t5/QlikView/Fetching-Oracle-stored-procedure-data-into-QlikView-FAILS/m-p/1121987#M633345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Laxman for sharing the details.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2016 14:48:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fetching-Oracle-stored-procedure-data-into-QlikView-FAILS/m-p/1121987#M633345</guid>
      <dc:creator>krishnacbe</dc:creator>
      <dc:date>2016-06-08T14:48:27Z</dc:date>
    </item>
  </channel>
</rss>

