ORA-06550/PLS-00201 error while configuring data source

Hi,
My development platform is Visual Studio 2005, ODAC11g Release 1 (11.1.0.6.20), and Oracle 10g Release 2 database.
I tried to setup a sqlDatasource in my web page using drag and drop features
When I configure the sqlDatasource to use a stored procedure inside a package,
I notice that odp.net uses #0# as separator (instead of .) between package name and procedure name in Configure Data Source dialog box. Then when I clcik the Test Query button, I got following error.
There was an error executing the query. Please check the syntax of the command and if present, the types and values of the parameters and ensure they are correct.
ORA-06550: line 1, column 7:
PLS-00201: identifier 'PK_LOOKUP_TABLE#0#P_LIST' must be declared
ORA-06550: line 1, column 7
PL/SQL: Statement ignored
It looks like odp.net cannot locate PK_LOOKUP_TABLE#0#P_LIST.
Is there any workaround ?
Below is the stored procedure code. It compiles and runs without problem.
PACKAGE BODY pk_lookup_table
AS
/* Get a list of lookup table name */
PROCEDURE P_LIST (
O_CURSOR OUT sys_refcursor )
IS
l_cur sys_refcursor;
BEGIN -- executable part starts here
OPEN l_cur FOR
SELECT table_name
FROM all_tab_comments u
WHERE u.comments LIKE '%Lookup Table%'
ORDER BY 1;
o_cursor := l_cur;
END P_LIST;
END "PK_LOOKUP_TABLE";
On the sqlDataSource property sheet, if I click the Select Query property, the Command and Parameter Editor will open, then I can change the select command name to PK_LOOKUP_TABLE.P_LIST. Then if I run the application, I get another error.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: Oracle.DataAccess.Client.OracleException: ORA-06550: line 1, column 7:
PLS-00306: wrong number or types of arguments in call to 'P_LIST'
ORA-06550: line 1, column 7:
PL/SQL: Statement ignored
Seems that it can locate the procedure.
In the Command and Parameter Editor dialog, I can add output parameter, but data type is restricted. There is no REF CURSOR datatype in the dropdown list.
How can I add output parameter with REF CURSOR type via IDE ?
Thanks for the time looking into this issue.
Mansion

Hi
Even I faced this problem while connecting to RMAN . But I feel your problem is different .
My issue was like this
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-00554: initialization of internal recovery manager package failed
RMAN-04005: error from target database:
ORA-06550: line 1, column 7:
PLS-00201: identifier 'DBMS_BACKUP_RESTORE.SET_CHARSET' must be declared
ORA-06550: line 1, column 7:
PL/SQL: Statement ignored
RMAN-04015: error setting target database character set to WE8MSWIN1252
Solution :
execute catproc.sql;

Similar Messages

  • Help on ORA-06550 & PLS-00363 Error while running a procedure from a packag

    Greeting All,
    I ran the following procedure from a package on a command line in sqlplus:
    SQL> exec QUALITY_ASSURANCE.COPY_SW_RESOURCES(2009,2010,9508);Where '2009' is the old fiscal year, '2010' is the new fiscal year and '9508' is the error code passed from the calling program. But, I received the following error messages:
    ERROR at line 1:
    ORA-06550: line 1, column 53:
    PLS-00363: expression '9508' cannot be used as an assignment target
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    Any thoughts, suggestions and/or advice to resolve these errors.
    Thanks in advance.

    Orchid wrote:
    Justin,
    Thanks for your response and information. Yes, Theoa was correct the 3rd parameter is an OUT variable, and it is a numeric field. The procedure was called by a form as follows:
    QUALITY_ASSURANCE.COPY_SW_RESOURCES(:BLK_CONTROL.FROMFY,:BLK_CONTROL.TOFY,V_ERR);But the form does not work so I am trying to isolate the problem by running the procedure by itself in sqlplus to make sure there is no problem with the procedure.
    Yesterday, I was able to run the procedure in Toad for Oracle to a successful completion by providing the 3 parameters: (2009, 2010, null). Just wonder why I cannot run the same procedure with the same parameters on a command line in sqlplus as follows:
    exec QUALITY_ASSURANCE.COPY_SW_RESOURCES(2009,2010,null);So, if I understand your suggestion correctly, in order to run the procedure with the 3 parameter successfully in sqlplus,
    I have to declare the 3rd parameter in PL/SQL. That is to create a PL/SQL file as suggested and run the file, correct? CORRECT!

  • Error while activating Data source

    Hi,
    I hit an error while activating data source with adapter 'WEB_PUSH web service'.
    The error message is 'Generation of conversion exists and PSA update ...' with details 'Error generating Web service /BIC/CZZZ_0010000100 ...' and 'Error when activating DataSource ZZZ_001'.
    I can't find much detail on this error.
    Has anyone hit this error before and if you did can you please let me know what to check?
    Thks & Regards,
    Bbee

    Hi,
    I am having the same problem.  Have you been able to solve the issue since you posted this last year? 
    Thanks,
    TCT

  • Error while activating data source in BI

    Hello Team
                     I am facing issues while activating data source. I followed following steps .
    a)First i created my target
    b)Then i made my Primary key as info provider
    c)Then i created one source system under file.
    d)Then i went to data source and created one application component
    e)In this application component i created my data source
    f)In this data source i imported my file and all the settings. Now when i am checking then it is not giving any error . But when i am trying to activate it it is giving error . Please find the supporting screesnhots . Can anyone please suggest me as to what is going wrong .

    Hi,
    Check the gateway settings for
    Gateway Host
    Gateway service
    Also check the UDC connection information.
    Check these links:
    1 - http://help.sap.com/saphelp_nw04/helpdata/en/78/ef1441a509064abee6ffd6f38278fd/content.htm
    2 - http://help.sap.com/saphelp_srm40/helpdata/es/54/ddfb3ff778ed28e10000000a1550b0/content.htm
    3 - https://encrypted.google.com/url?sa=t&source=web&cd=7&ved=0CCwQFjAG&url=http%3A%2F%2Fwww.bi-  
    expertonline.com%2Fdownloads%2FSchroeder0604.doc&rct=j&q=ud%20connection%20in%20sap%20bi&ei=WMDnTdm_E4ruvQOEzZWcDg&usg=AFQjCNGvqKuoTq9kypNMNGhis8WrZ-gFCg&cad=rja
    Let us know in case the issue still persists.
    Debanshu

  • Not enough memory for Data Provider-Error while creating Data Source

    Hi,
    I am loading data into Master Data_Attribute InfoObject I am getting following error message while creating Data Source under "Proposal" Tab
    "Not enough memory for Data Provider"
    My Master Data InfoObject having 65 attributes
    My CSV file having 15,00000 records
    I am using BI 7.0 version
    If anybody faced this problem. Please share with me
    Thanks.

    Hi
    Here the problem with the space so plz contact ur BASIS people to increase the spae for particular object.

  • Error while deleting data source : Message RSO414

    Hello Guys,
    We have activated data source 2LIS_04_PKKANBAN and entire standard BI content . When i tried to extract data, i got 0 records initially and after that i came to know that some functions needs to be activated in ECC to extract KANBAN data.
    We activated some function and deleted & filled setup tables for KANBAN and i can see data in RSA3 (368 Records). Then i tried to extract data into SAP BI. it took  me 20 minutes but ended with error. "Data Source needs to be activated again as it was changed (We just activated one function only) nothing changed to data source" I activated data source again in ECC and replicate on SAP BI side but i am not able to get it in activated mode.
    I tried to activate it manually and it takes 20-25 minutes but i am not able to activate it and getting error "Error when activating DataSource : MESSAGE NO  RSO414 " "Error when resetting DataSource 2LIS_04_PKKANBAN to the active version". i also can't delete data source as when i try to delete it, i get the error "ERROR WHEN DELETING DATA SOURCE : MESSAGE NO RSO414" .  What to do in this situation ?
    Regards,
    Komik Shah

    Hi Rahul,
    I tried it but it didn't help me.
    Also there is no FM in SAP BI called RS_DATASOURCE_ACTIVATE_ALL. I have activated  data source in my ERP system  and replicated same on BI side as we don't have standard Transfer Rules or Transformation, i can't use RS_TRANSTRU_ACTIVATE_ALL .
    Regards,
    Komik Shah

  • Error while creating data source in bi for uc connect

    Hi Experts,
    we have using ud connect to pull the data from ms sql server using jdbc,we have maintained all the settings in the j2ee engine and also we performed the smoke test which showed the tables content in the ms sql data base.
    and also we have maintained the rfc connection between the j2ee and sap bi,and performed the test connection which excecuted great.
    but while creating the data source in sap bi administration work bench(rsa1)>sourcesytem>udconnect>create
    we have maintained the following parameters
    rfc destination----
    we have maintained the rfc destination,which we could see in sm59 for the sap bi client
    logical system name----
    we have mentioned a generic logical system name(here we are not sure)
    type of connector----
    jdbc
    name of the connector------ sdk_jdbc
    sourcesystemname----
    it has taken the logical system name description when we enter the logical system name.
    once after maintaining the setting.when we performed the check.
    it showed us the error
    check failed rfc connection:check destination

    Hi,
    Check the gateway settings for
    Gateway Host
    Gateway service
    Also check the UDC connection information.
    Check these links:
    1 - http://help.sap.com/saphelp_nw04/helpdata/en/78/ef1441a509064abee6ffd6f38278fd/content.htm
    2 - http://help.sap.com/saphelp_srm40/helpdata/es/54/ddfb3ff778ed28e10000000a1550b0/content.htm
    3 - https://encrypted.google.com/url?sa=t&source=web&cd=7&ved=0CCwQFjAG&url=http%3A%2F%2Fwww.bi-  
    expertonline.com%2Fdownloads%2FSchroeder0604.doc&rct=j&q=ud%20connection%20in%20sap%20bi&ei=WMDnTdm_E4ruvQOEzZWcDg&usg=AFQjCNGvqKuoTq9kypNMNGhis8WrZ-gFCg&cad=rja
    Let us know in case the issue still persists.
    Debanshu

  • Error while creating data source using Oracle Enterprise Manager 10g

    Hi,
    I have deployed my web application developed on OC4J 9.0.4 stand alone (Win2K) to an integrated OC4J version(Solaris) using Oracle Enterprise Manager 10g.
    However, I get an error when I try to create a data source.
    The data source I want to create would have the following parameters (as seen in data-sources.xml on the stand alone version):
         <data-source
              class="com.evermind.sql.DriverManagerDataSource"
              name="TestDS"
              location="jdbc/OracleCoreDS"
              xa-location="jdbc/xa/OracleXADS"
              ejb-location="jdbc/TestDS"
              connection-driver="oracle.jdbc.driver.OracleDriver"
              url="jdbc:oracle:thin:@hostName:1521:test"
              username="user"
              password="password"
              min-connections="5"
              max-connections="20"          
              inactivity-timeout="30"
         />
    When I entered the above data on the Enterprise Manager Data Sources page, I got the following error:
    quote:
    Error saving Data Source Properties. - Entity et="system";ei="0",et="application";ei="48",et="data-sources";ei="167":child:data-sourcechild key:location:jdbc/OracleCoreDS; class:com.evermind.sql.DriverManagerDataSource; already exists in the repository. Resolution: Please check the code base.
    unquote:
    Could somebody tell me what I'm doing wrong ?
    I tried to manually edit the data-sources.xml file but the data source didn't show up on the Enterprise Manager.
    I'm using a new OC4J instance (on the Solaris machine) for my applications. Is the data source error related to this?
    Any help will be greatly appreciated.
    Thanks,
    Shyam

    Thanks for your reply , Steve.
    I noticed that there is a default datasouce on the EM with the following parameters:
    <data-source
              class="com.evermind.sql.DriverManagerDataSource"
              name="OracleDS"
              location="jdbc/OracleCoreDS"
              xa-location="jdbc/xa/OracleXADS"
              ejb-location="jdbc/OracleDS"
              connection-driver="oracle.jdbc.driver.OracleDriver"
              username="scott"
              password="->pwForScott"
              url="jdbc:oracle:thin:@localhost:1521:oracle"
              inactivity-timeout="30"
         />
    The location and xa-location attributes that I use for my "test" data source are the same as the default one. So, could this be the issue?
    What should be the values for location and xa-location attributes from my "test" data source?
    Any help will be greatly appreciated.
    Thanks,
    Shyam

  • Error while creating data source using table KONP

    Hi Frnds,
       I am creating  a data source (RSo2) from Extraction from view, using the Table KONP , then i getting an error saying that
    Field KBETR with reference field KONWA: ZOXPTS0031 is to replace reference table RV13A
    Message no. R8390
    Field MXWRT with reference field KONWA: ZOXPTS0031 is to replace reference table RV13A
    Message no. R8390
    Field GKWRT with reference field KONWA: ZOXPTS0031 is to replace reference table RV13A
    Message no. R8390
    Regards
    rakesh

    You have to include reference fields also in the extract structure.

  • Error while transporting data source

    Hello Gurus,
    I am trying to transport a DSO, Data source, Transf, DTP in the same request but i am getting error code 8.
    Here is the error log.
    *Start of the after-import method RSRSDS_AFTER_IMPORT for object type(s) RSDS (Activation Mod
    InfoSource ZBIU_OTCSO_TR_VMI_ORDDEL is not available in source system PW2CLNT501
    Error when activating DataSource ZBIU_OTCSO_TR_VMI_ORDDEL PW2CLNT501*_
    Source system is BI source system and data source is based on a function module which have logic to get data from other DSO's and IO's with BI system.
    Why its giving me an error saying Infosource no available in SS when i am transporting.
    Did anyone came across similar issue? Any suggestions?
    Thank you.

    1)Check this infosource ZBIU_OTCSO_TR_VMI_ORDDEL flow in Dev system, where it is been used.. and also check the code in the FM.
    2) IF you are trasnporting entirely a new data flow then goto transport connection and check.
    3)If you are trasporting the existing flow(may not be entire flow, but like Datasource enhacment ..) cross check with PRD system for the earlier version and chek what are the changes which you are tying to do now.
    2)check your Trasport request once again(collected objects)..Activate the FM, DS and then transport.
    Hello YJV,
    Its a new data flow from DEV to QA and i checked for that infosource in transport connection and there are no hits for that infosource. I found it only in the case of Datasource.
    I doubt on the conversion of SS names. Can anyone tell me how I can validate the conversion of Source Systems.
    Any suggetions?
    Thx.

  • Error while transporting data source from Dev to QA

    Hi , I am transporting 0glaccext hier data source. I created the transport with the the transfer rules and the corresponding Infopackage. when I collect the transfer rules I have 4 transfer structures present in the transfer rules which are
    " 0GLACCEXT_T011_HIER_BA1" BA2 , BA3 and BA4. when I am importing the data source, I am getting the following error messages
    "Mapping between data source 0GLACCEXT_T011_HIER and source system QASCLNT400 is inconsistent"
    and then
    "Reference to transfer structure 0GLACCEXT_T011_HIER_BA1 not available. No activation possible.
    Message no. RSAR436
    Diagnosis
    Transfer structure 0GLACCEXT_T011_HIER_BA1 should be transported into this system.
    However, no DataSource mapping refers to this transfer structure.
    System Response
    The transfer structure was not activated or deleted.
    Procedure
    Ensure that DataSource mapping, with a reference to the transfer
    structure 0GLACCEXT_T011_HIER_BA1 is on the same transport request. Use the transport connection to create a consistent request."
    Any suggestions on how I need to handle this issue.
    I am able to load the data succesfully in Dev and I am not have

    HI tanu,
    could you let me know how you have solved this issue.
    which object not active.
    i am having the same issue now.
    kris

  • Crystal Report runtime error while changing Data Source Location

    Dear All
    We are using "Crystal reports for SAP Business one".The Crystal reports version is 12.1.
    We built a report in another database with another server.
    As we are importing the report in another database of another server,
    I am not able to change the Data Source location.
    When I am trying to change it,it gives Runtime error and closed automatically.
    How can i resolve and change the data source location?

    hi kambadasan,
    is your CR version the same from which you design the report and to the another server? also did you import your report directly to SBO without changing the data source first? in the case you should update first your Data Source in Crystal Report IDE before importing it to SBO.
    regards,
    Fidel

  • Error while transporting Data sources from DEV to Qual

    System :  SCM 5.0 (SP 8),  BI 7.0  (SP 12)
    1) We are trying to transport Data source objects from Development server to Quality server.
    2) Data sources of Type R/3 and Web Service.
    3) We are able to transport the objects from Dev.
    4) Once we import the objects to Quality server, the objects are becoming into INACTIVE stage.
    Please help... Thanx in advance..
    Regards
    Manoj

    HI tanu,
    could you let me know how you have solved this issue.
    which object not active.
    i am having the same issue now.
    kris

  • Error while creating Data Source for master data attributes

    Hi BI Experts,
    Well its been some time for me that I have been part of Extraction in BI.I primarily handled reporting in my last assignments.
    I was trying extraction with flat files in SAP BI 7(new to sap bi 7 but very much familiar with BW3.5) but failed in the activity during master data attributes and text upload in infoobject (say IOSP_Mat).
    Here is the procedure that I did after creation of characteristic IOSP_Mat.I created a source system for flat file followed by data source for Master data attributes, i selected all the parameters correctly.i.e. csv file format, data seperator as   ,
    and other settings, now when i am trying to look at the proposed data in the next tab using Load example data.its not showing the desired result.The columns that I have maintained in Flat File is  MAT_NUMBER and MAT_NAME (with say 100 data in the file)
    same is the result when I am trying to load the text data too columns maintained are
    (LANGUAGE MAT_NUMBER Short Description)(same 100 data).
    now i used to rsa1old transaction  to upload the file using 3.5 version.i created info source for master data/text/hierarchies for  IOSP_Mat
    now when trying to upload it using info package for master and text data,I observe its(the data) not maintained in the characteristic IOSP_Mat.
    When I monitored ,I figured the data has not been even uploaded to the PSA level.
    Can you BI experts tell me the answer for this.
    Thanks,
    Srijith

    apologies to all of you for late response,
    was busy with some other activities.
    I don't remember the exact message,but I remember it was not loaded to even the PSA level.I will try it again and post the exact message.
    Thanks again for your quick response.
    Once again sorry to all of you for my late response
    Thanks,
    Sri

  • Error in generating data source from planning area

    Hi experts! I have an error while making data source from planning area:
    after the screen when i fill in the data source name (Window name: Generate export data source) i have the SYNTAX_ERROR Message:
    Syntax error in program /sapapo/cl_im_extract_ex======cp
    the main reason: the type /BI0/9A0IVWKNDGD is unknown
    what you can suggest to solve this problem?
    Thanks.

    Dear Andrey Kudriavzev,
    The reason is the program is trying to use the datatype '/BI0/9A0IVWKNDGD' which does not exist in the system.
    Go SE11 to cross check if it exists. Check dataelement radiobutton -> enter /BI0/9A0IVWKNDGD -> Choose display option. You would need to create this datatype in the system. I feel there must some OSS Note related to this.
    Search for an OSS Note. Raise one if you cannot find the relevant notes.
    Regards,
    Naveen.

Maybe you are looking for