Call a plsql package in odi

Hi Experts
i would like to know how a plsql package called inside odi.i have plsql package in the back end.i just need to run the same via odi by giving some parameters
in back end i am running the same as below
DECLARE
ERRBUF VARCHAR2(200);
RETCODE NUMBER;
BEGIN
abc.lea (ERRBUF,RETCODE,'abc',2011,12);
END;
how i will replicate the same odi

Hi Guru
I have refered the same .here its mentioned for calling a procedure and running the same.in my case i have a plsql package in the back end which is having so many procedures.so i just need to call.but while directly calling the package.procdure in odi its throwing error like package should be declared.
Regards
Sree

Similar Messages

  • Help: How to call a plsql Package on click of a button in ADF

    Hi Guru's
    Please provide your suggestions, how to go ahead in ADF to call a plsql package when a button i clicked.
    I do have a knowledge of oracle callable statment to call the plsql package but not having any idea how to relate button click event in ADF.
    Thanks,
    SPC

    Create a service method in your Application Module to [url http://download.oracle.com/docs/cd/E14571_01/web.1111/b31974/bcadvgen.htm#sm0297]call the stored package, expose that service method on the client interface, and then drag the service method from the data control palette on to your page as a button.
    John

  • Calling a PLSQL package from java

    Hi All
    I have a problem calling a package from java. I have to pass a Date to the package which is a String in java.
    How can I typecast it to the PLSQL Date from a java String.
    Here is my below code for reference. The below code does not works because of typecasting problem.I tried to_date() also in java, but it is not working.
    cstmt=connDbConn.prepareCall("{call pkage.PACK1(?)}"); cstmt.setString(1,"01-JAN-2009");

    keyanwb wrote:
    How can I typecast it to the PLSQL Date from a java String.That datatype in Oracle contains a date and time component.
    Thus you should consider exactly what storing the date only component means in terms of the timezone that the Oracle server is using.

  • Calling a plSQL Procedure from ODI gives an error

    Hi,
    I created a procedure in oracle db using sql developer
    CREATE OR REPLACE
    PROCEDURE GET_EMP_NAME
    ( emp_number IN NUMBER
    , emp_name OUT VARCHAR2
    ) AS
    BEGIN
    SELECT ename into emp_name from emp
    where empno = emp_number;
    dbms_output.put_line(emp_name);
    EXCEPTION
    when no_data_found then
    dbms_output.put_line('no such employee exists');
    END GET_EMP_NAME;
    and then i created a procedure in ODI to call that procedure under 'Command on Source'.
    Technology : Oracle
    Schema: Scott_Local (thats where i created the procedure in db)
    DECALRE
    EMP_NAME VARCHAR2(10);
    begin
    SCOTT_LOCAL.GET_EMP_NAME(7369, EMP_NAME);
    end;
    but when i execute this procedure in odi, it gives me the following error:
    Caused By: java.sql.SQLException: Missing IN or OUT parameter at index :: 1
    any help would bbe much appreciated, m new to odi

    Hi,
    Try this,
    DECLARE
    EMP_NUMBER NUMBER;
    EMP_NAME VARCHAR2(200);
    BEGIN
    EMP_NUMBER := 7369;
    GET_EMP_NAME(
    EMP_NUMBER => EMP_NUMBER,
    EMP_NAME => EMP_NAME
    +);+
    DBMS_OUTPUT.PUT_LINE('EMP_NAME = ' || EMP_NAME);
    END;
    Thanks,
    Guru

  • Urgent - Error calling web service generated from plsql package

    Hi,
    I am using Jdeveloper 10.1.3 production release.
    I am trying to publish a plsql packaged procedure as a web service.
    My first question is -
    When I am publishing the plsql API as a WS, should I choose the style Document/Wrapped or RPC Literal? Document Wrapped is the default in the wizard.
    My second question - Depending on whether I choose Document/Wrapped or RPC Literal style, I get 2 different errors when I try to run the client java file (generated by Jdeveloper) that calls the web service. The client java compiles successfully but when I run I get these messages:
    Document/Wrapped error -
    D:\jdev1013\jdk\bin\javaw.exe -ojvm -classpath H:\jdevhome\jdev\mywork\Genesis\Test\classes;D:\jdev1013\sqlj\lib\runtime12.jar;D:\jdev1013\jdbc\lib\ojdbc14dms.jar;D:\jdev1013\jdbc\lib\orai18n.jar;D:\jdev1013\jdbc\lib\ocrs12.jar;D:\jdev1013\diagnostics\lib\ojdl.jar;D:\jdev1013\lib\dms.jar;D:\jdev1013\jdev\lib\jdev-rt.jar;D:\jdev1013\webservices\lib\soap.jar;D:\jdev1013\webservices\lib\saaj-api.jar;D:\jdev1013\lib\xmlparserv2.jar;D:\jdev1013\jlib\javax-ssl-1_1.jar;D:\jdev1013\jlib\jssl-1_1.jar;D:\jdev1013\j2ee\home\lib\activation.jar;D:\jdev1013\j2ee\home\lib\mail.jar;D:\jdev1013\j2ee\home\lib\http_client.jar;D:\jdev1013\webservices\lib\jaxrpc-api.jar;D:\jdev1013\webservices\lib\wsclient.jar;D:\jdev1013\webservices\lib\wsserver.jar;D:\jdev1013\webservices\lib\wssecurity.jar;D:\jdev1013\webservices\lib\wsdl.jar;D:\jdev1013\webservices\lib\orasaaj.jar;D:\jdev1013\webservices\lib\orawsdl.jar;D:\jdev1013\webservices\lib\orawsrm.jar;D:\jdev1013\webservices\lib\jaxr_api.jar;D:\jdev1013\webservices\lib\orajaxr.jar;D:\jdev1013\webservices\lib\relaxngDatatype.jar;D:\jdev1013\webservices\lib\jaxb-impl.jar;D:\jdev1013\webservices\lib\jaxb-libs.jar;D:\jdev1013\webservices\lib\xsdlib.jar;D:\jdev1013\webservices\lib\mdds.jar;D:\jdev1013\jlib\jaxen.jar;D:\jdev1013\jlib\oraclepki.jar;D:\jdev1013\jlib\ojpse.jar;D:\jdev1013\jlib\osdt_core.jar;D:\jdev1013\jlib\osdt_cert.jar;D:\jdev1013\jlib\osdt_xmlsec.jar;D:\jdev1013\jlib\osdt_wss.jar;D:\jdev1013\jlib\osdt_saml.jar;D:\jdev1013\jlib\repository.jar;D:\jdev1013\jlib\ojmisc.jar;D:\jdev1013\j2ee\home\jazncore.jar;D:\jdev1013\j2ee\home\oc4jclient.jar;D:\jdev1013\rdbms\jlib\xdb.jar;D:\jdev1013\diagnostics\lib\ojdl2.jar;D:\jdev1013\lib\xsu12.jar;D:\jdev1013\lib\xml.jar;D:\jdev1013\j2ee\home\lib\ejb.jar;D:\jdev1013\j2ee\home\lib\jms.jar;D:\jdev1013\j2ee\home\lib\jta.jar;D:\jdev1013\j2ee\home\lib\servlet.jar;D:\jdev1013\jakarta-taglibs\commons-logging-1.0.3\commons-logging-api.jar;D:\jdev1013\jakarta-taglibs\commons-logging-1.0.3\commons-logging.jar;D:\jdev1013\j2ee\home\lib\ojsp.jar;D:\jdev1013\j2ee\home\jsp\lib\taglib\ojsputil.jar;D:\jdev1013\j2ee\home\oc4j.jar;D:\jdev1013\j2ee\home\lib\oc4j-internal.jar;D:\jdev1013\jdev\lib\ojc.jar genc2dv1.TestWebServiceSoapHttpPortClient
    calling http://rchellam-PC1:8888/Genesis-Test-context-root/TestWebServiceSoapHttpPort
    java.rmi.RemoteException: Error parsing envelope: (1, 1) Start of root element expected.; nested exception is:
         javax.xml.soap.SOAPException: Error parsing envelope: (1, 1) Start of root element expected.
         at test.proxy.runtime.TestWebServiceSoapHttp_Stub.getAttributes(TestWebServiceSoapHttp_Stub.java:157)
         at genc2dv1.TestWebServiceSoapHttpPortClient.getAttributes(TestWebServiceSoapHttpPortClient.java:46)
         at genc2dv1.TestWebServiceSoapHttpPortClient.main(TestWebServiceSoapHttpPortClient.java:29)
    Caused by: javax.xml.soap.SOAPException: Error parsing envelope: (1, 1) Start of root element expected.
         at oracle.j2ee.ws.saaj.soap.soap11.SOAPImplementation11.createEnvelope(SOAPImplementation11.java:104)
         at oracle.j2ee.ws.saaj.soap.SOAPPartImpl.getEnvelope(SOAPPartImpl.java:76)
         at oracle.j2ee.ws.saaj.soap.MessageImpl.getSOAPBody(MessageImpl.java:713)
         at oracle.j2ee.ws.client.StreamingSender._preHandlingHook(StreamingSender.java:673)
         at oracle.j2ee.ws.client.StubBase._preHandlingHook(StubBase.java:664)
         at oracle.j2ee.ws.client.StreamingSender._sendImpl(StreamingSender.java:201)
         at oracle.j2ee.ws.client.StreamingSender._send(StreamingSender.java:111)
         at test.proxy.runtime.TestWebServiceSoapHttp_Stub.getAttributes(TestWebServiceSoapHttp_Stub.java:134)
         ... 2 more
    Caused by: oracle.xml.parser.v2.XMLParseException: Start of root element expected.
         at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:320)
         at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:333)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:295)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:201)
         at oracle.j2ee.ws.saaj.soap.soap11.SOAPImplementation11.createEnvelope(SOAPImplementation11.java:78)
         ... 9 more
    Process exited with exit code 0.
    RPC Literal error -
    D:\jdev1013\jdk\bin\javaw.exe -ojvm -classpath H:\jdevhome\jdev\mywork\Genesis\Test\classes;D:\jdev1013\sqlj\lib\runtime12.jar;D:\jdev1013\jdbc\lib\ojdbc14dms.jar;D:\jdev1013\jdbc\lib\orai18n.jar;D:\jdev1013\jdbc\lib\ocrs12.jar;D:\jdev1013\diagnostics\lib\ojdl.jar;D:\jdev1013\lib\dms.jar;D:\jdev1013\jdev\lib\jdev-rt.jar;D:\jdev1013\webservices\lib\soap.jar;D:\jdev1013\webservices\lib\saaj-api.jar;D:\jdev1013\lib\xmlparserv2.jar;D:\jdev1013\jlib\javax-ssl-1_1.jar;D:\jdev1013\jlib\jssl-1_1.jar;D:\jdev1013\j2ee\home\lib\activation.jar;D:\jdev1013\j2ee\home\lib\mail.jar;D:\jdev1013\j2ee\home\lib\http_client.jar;D:\jdev1013\webservices\lib\jaxrpc-api.jar;D:\jdev1013\webservices\lib\wsclient.jar;D:\jdev1013\webservices\lib\wsserver.jar;D:\jdev1013\webservices\lib\wssecurity.jar;D:\jdev1013\webservices\lib\wsdl.jar;D:\jdev1013\webservices\lib\orasaaj.jar;D:\jdev1013\webservices\lib\orawsdl.jar;D:\jdev1013\webservices\lib\orawsrm.jar;D:\jdev1013\webservices\lib\jaxr_api.jar;D:\jdev1013\webservices\lib\orajaxr.jar;D:\jdev1013\webservices\lib\relaxngDatatype.jar;D:\jdev1013\webservices\lib\jaxb-impl.jar;D:\jdev1013\webservices\lib\jaxb-libs.jar;D:\jdev1013\webservices\lib\xsdlib.jar;D:\jdev1013\webservices\lib\mdds.jar;D:\jdev1013\jlib\jaxen.jar;D:\jdev1013\jlib\oraclepki.jar;D:\jdev1013\jlib\ojpse.jar;D:\jdev1013\jlib\osdt_core.jar;D:\jdev1013\jlib\osdt_cert.jar;D:\jdev1013\jlib\osdt_xmlsec.jar;D:\jdev1013\jlib\osdt_wss.jar;D:\jdev1013\jlib\osdt_saml.jar;D:\jdev1013\jlib\repository.jar;D:\jdev1013\jlib\ojmisc.jar;D:\jdev1013\j2ee\home\jazncore.jar;D:\jdev1013\j2ee\home\oc4jclient.jar;D:\jdev1013\rdbms\jlib\xdb.jar;D:\jdev1013\diagnostics\lib\ojdl2.jar;D:\jdev1013\lib\xsu12.jar;D:\jdev1013\lib\xml.jar;D:\jdev1013\j2ee\home\lib\ejb.jar;D:\jdev1013\j2ee\home\lib\jms.jar;D:\jdev1013\j2ee\home\lib\jta.jar;D:\jdev1013\j2ee\home\lib\servlet.jar;D:\jdev1013\jakarta-taglibs\commons-logging-1.0.3\commons-logging-api.jar;D:\jdev1013\jakarta-taglibs\commons-logging-1.0.3\commons-logging.jar;D:\jdev1013\j2ee\home\lib\ojsp.jar;D:\jdev1013\j2ee\home\jsp\lib\taglib\ojsputil.jar;D:\jdev1013\j2ee\home\oc4j.jar;D:\jdev1013\j2ee\home\lib\oc4j-internal.jar;D:\jdev1013\jdev\lib\ojc.jar genc2dv1.TestWebService2SoapHttpPortClient
    calling http://rchellam-PC1:8888/Genesis-Test-context-root/TestWebService2SoapHttpPort
    unexpected null value for literal data
         at oracle.j2ee.ws.common.util.exception.JAXRPCExceptionBase.<init>(JAXRPCExceptionBase.java:52)
         at oracle.j2ee.ws.common.encoding.SerializationException.<init>(SerializationException.java:26)
         at oracle.j2ee.ws.common.encoding.literal.LiteralObjectSerializerBase.internalSerialize(LiteralObjectSerializerBase.java:191)
         at oracle.j2ee.ws.common.encoding.literal.LiteralObjectSerializerBase.serialize(LiteralObjectSerializerBase.java:137)
         at test.proxy.runtime.TestWebService2SoapHttp_getAttributes_ReqS_LiteralSerializer.doSerialize(TestWebService2SoapHttp_getAttributes_ReqS_LiteralSerializer.java:154)
         at oracle.j2ee.ws.common.encoding.literal.LiteralObjectSerializerBase.internalSerialize(LiteralObjectSerializerBase.java:199)
         at oracle.j2ee.ws.common.encoding.literal.LiteralObjectSerializerBase.serialize(LiteralObjectSerializerBase.java:137)
         at oracle.j2ee.ws.client.StreamingSender._writeRequest(StreamingSender.java:625)
         at oracle.j2ee.ws.client.StreamingSender._sendImpl(StreamingSender.java:137)
         at oracle.j2ee.ws.client.StreamingSender._send(StreamingSender.java:111)
         at test.proxy.runtime.TestWebService2SoapHttp_Stub.getAttributes(TestWebService2SoapHttp_Stub.java:89)
         at genc2dv1.TestWebService2SoapHttpPortClient.getAttributes(TestWebService2SoapHttpPortClient.java:57)
         at genc2dv1.TestWebService2SoapHttpPortClient.main(TestWebService2SoapHttpPortClient.java:32)
    Process exited with exit code 0.
    Now all the classes are generated by JDeveloper automatically from the plsql API. So I am not sure why the errors occur and how to fix these.
    Also, these errors are occurring on plsql APIs that have input or output parameters of plsql record type or pslql table of record type. These errors don't occur if the api is simple with scalar input or output parameters only.
    I would appreciate any help on how to resolve these errors.
    Thanks,
    Raji

    Hi,
    I'm wondering if the problem is actually that the client is failing to connect to the server correctly. Can I suggest that you switch on the HTTP Analyzer and see what comes back there.
    Is it possible it is a proxy problem? If you are working locally then I first suggest that you ensure that the Web Browser Proxy is off (see Tools -> Preferences -> Web Browser Proxy) - and that there are no exceptions listed (either with the proxy on or off) before you start the HTTP Analyzer.
    As to Doc/Wrapped or RPC. see this blog entry for a little more explanation:
    http://susanduncan.blogspot.com/2006/05/rpc-document-bare-wrapped-literal-get.html
    regards
    Susan

  • Calling UNIX shell script from ODI package?

    Hi,
    How Can we call UNIX shell script from ODI package?
    I have a ftp_ss.sh script which which ftps a file from remote server to local server, archives the last file and renames new file to the standard (ie file data store)name.
    I want to run the above script and interfaces from a package.
    Any help is greately appreciated.
    Thanks,
    RD

    In the package window, put "OS Command" from the toolbox.
    Provide the command parameters to this tool in form of "/path/to/script/ftp_ss.sh"

  • Calling DB Objects (packages- Pl/SQL procedures) from the ADF

    Hi,
    1.How can we call DB Procedures/Packages using ADF ?
    2. Are there some scenarios which depicts when to use which Layout? & Also any introduction to Layouts in ADF.
    Thanks.

    Hi,
    You can expose your PL/SQL package as web services as well and use it on your layout. check this blog entry about calling PL/SQL from ADF you may find it helpful
    http://baigsorcl.blogspot.com/2010/05/calling-plsql-procedure-and-function-in.html
    This presentation would help to understand layouts http://blogs.oracle.com/shay/2010/05/adf_faces_layouts_demo_-ahid.html
    also you can refer to web user interface guide.

  • The PLSQL Package version is not honored in Jdeveloper

    Hello,
    I have launched following PLSQL procedure and successfully compiled in the database. Then, I am calling this procdure using application connections window in Jdeveloper. This plsql api is the integral component of the webservice written using jdeveloper.
    Below is the interface of the plsql. Note that parameter p_streetaddress3 is commented. When I compile the package and java wrapper in jdeveloper everything gets compiled just fine. However, when the web service is deployed it still shows the parameter p_streetaddress3.
    Why, this already commented out parameter should continue to show up on webservice even when it is commented at database level?
    In other words, changes made in plsql package, for a jdeveloper webservice are not getting reflacted.
    Any idea?
    Thanks,
    Ruchir
    PROCEDURE xxfa_ap_supplier (
    p_err_buf OUT VARCHAR2,
    p_retcode OUT NUMBER,
    p_lastupdateddate DATE,
    p_vendorflag VARCHAR2, --p_new_ven_flag
    p_partyid VARCHAR2,
    p_partyname VARCHAR2, --p_vendor_name
    --p_vendor_type_lookup_code         VARCHAR2,
    -- p_payment_terms VARCHAR2,
    --p_start_active_date            DATE,
    -- p_client NUMBER,
    -- p_legacyno VARCHAR2,
    p_streetaddress1 VARCHAR2,
    p_streetaddress2 VARCHAR2,
    -- p_streetaddress3 VARCHAR2,
    -- p_streetaddress4 VARCHAR2,
    p_city VARCHAR2,

    Hi Ruchir,
    in 10.1.3 we had problems re-generating web services as the WSDL was not always refreshed, only the Java sources. Maybe the same is happening to you. Try deleting the WSDL before re-generating the web service and see if it helps.
    HTH,
    Patrik

  • Odi os call with option parameter from odi procedure

    Hi.
    I am calling a shell script from ODI as below inside an ODI procedure P1. The os command below is in 'Command on Target' side.I have defined v_in_param as an 'option' inside procedure P1
    OdiOSCommand sample.sh v_in_param
    i am getting error as 'OS command returned 1'.
    Is it the right syntax to pass an 'option' parameter to an OS call?
    thanks

    you can try OdiOSCommand sh sample.sh <%=odiRef.getOption("v_in_param")%> or even call OS Command in ODI Package and paste the above code.

  • How to call unix script/command in ODI

    Hello Gurus,
    Please let me know how to call unix script/command in ODI?
    Thanks
    Shridhar

    you can call shell script using the OS command found in Package.
    Step 1. Drag the OS Command in the Packgae
    Step 2. In the Text mentiond call the script say for ex sh /opt/path/script.sh
    Step 3. Execute.
    Note : Make sure the User through which ODI is triggering does have the required permission to execute shellscript , also always provide the full path , since scripts are execute from the oracldi/bin folder so its necessary to provide the complete path of the script location.
    Hope this helps.

  • PlSql Package in Jdeveloper

    I want to use Plsql packages for insert/update/delete in Jdeveloper Jsp forms . Can anyone help me regarding this . Thanks in Advance
    Thanks
    N.Nagarajan

    Or you could create an EntityObject based on a view, and have your Pl/SQL package called by "instead of" triggers on this view. This way, you keep a consistent interface between various applications (for instance, a BC4J application and something built with PHP).

  • PtG SQL-Adapter using PLSQL Package

    Hi,
    I'm using a PLSQL Package instead of a single procedure to build a service.
    If I call my personal error procedure after a no_data_found Exception, I get an Errormsg in the Webbrowser: oracle.panama.PanamaException: Expected 'EOF'.
    Does anybody has some ideas?
    Thanks.
    Kind regards
    Claus

    Problem was that the exception occured in a subblock and the rest of the procedure was worked of after the exception handling. So I resolved two <SimpleResult> Blocks in one XML Page.
    Sorry for stealing your time this time.
    Thx.

  • PLSQL Package Error

    Hello,
    I am executing a PLSQL package named DSA_PRE_FILTER_VDI which is being called from a Unix shell script.
    When parameters are passed to the PLSQL package, I get an error as shown below, what could be the reason for this error ?
    BEGIN
    ERROR at line 1:
    ORA-00936: missing expression
    ORA-06512: at "TMC_SOVAR.DSA_PRE_FILTER_VDI", line 154
    ORA-06512: at line 2

    IQ wrote:
    I will repharse my question
    The package has the following lines, where p_prod_group_name is the parameter being passed from a Unix shell script.
    If I comment out the last line with the parameter , the package gets executed without any error but if I keep the parameter which I need to then I get an error which states "ORA-00936: missing expression ORA-06512: at "TMC_SOVAR.DSA_PRE_FILTER_VDI", line 154 ORA-06512: at line 7"
    v_meta_query_prod_reject :=
    ' SELECT RPAD(WHSE_CD||PROD_CD,23)'
    || CHR(10) || ' || RPAD(UNVRSL_PROD_CD,39)'
    || CHR(10) || ' || PROD_DESC'
    || CHR(10) || 'FROM x_dsa_sovar_prod'
    || CHR(10) || 'WHERE UNVRSL_PROD_CD <> ''' || p_prod_group_name || '''' ;
    Line 154 is ,
    EXCEPTION
    WHEN OTHERS THEN
    tmc_util.dbg_trace_exception;
    RAISE;
    dbms_output.put_line(sqlerrm||sqlcode);
    set serveroutput on
    declare
    v_meta_query_prod_reject varchar2(2000);
    p_prod_group_name VARCHAR2(200):='test';
    begin
    v_meta_query_prod_reject :=
    ' SELECT RPAD(WHSE_CD||PROD_CD,23)'
    || CHR(10) || ' || RPAD(UNVRSL_PROD_CD,39)'
    || CHR(10) || ' || PROD_DESC'
    || CHR(10) || 'FROM x_dsa_sovar_prod'
    || CHR(10) || 'WHERE UNVRSL_PROD_CD ''' || p_prod_group_name || '''' ;
    dbms_output.put_line(v_meta_query_prod_reject);
    end;
    SELECT RPAD(WHSE_CD||PROD_CD,23)
    || RPAD(UNVRSL_PROD_CD,39)
    || PROD_DESC
    FROM x_dsa_sovar_prod
    WHERE UNVRSL_PROD_CD 'test'test in your db i'm getting this select stmt

  • PLSQL Package Question

    I have a PLSQL Package which needs to be called from a Unix file. How can I do this ?
    The PLSQL Package needs to be defined in such a way that it accepts parameters and passes it back to the Unix call.
    How Can I do this ?
    If my question is not clear please let me know , I will clarify again.
    Thanks
    fm

    Hello,
    I have a PLSQL Package which needed to be code reviewed and cleaned. It is basically 3 procedures within one package. These Packages are being called from Unix (Excel file) by automation.
    My Question is , how do I pass the variables from Unix to PLSQL without any hardcoding.
    For example Product A has many sub products B,C,D etc. How can I Pass the variables from the program so all run properly and everything ties in place.
    If my question is not clear , please let me know.I will provide more information.
    Regards
    fm

  • Corrupted PLSQL package bodies

    On creating a Link the package wwv_builder is called. The package I have although valid has a corrupted body (I've included an extract below)
    I was going to re-build the package from the plb in the ...\admin\plsql\wwv directory but I noticed that this file is corrupt as well(along with many other .plb, all the headers are OK)
    Can anyone tell me how to re-create the plsql for the package bodies and will I loose anything that I've already done?
    Thanks in advance
    Extract from wwv__builder.plb
    /* @Copyright (c) 2000, Oracle Corporation. All rights reserved. */
    create or replace package body wwv_builder wrapped
    0
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    1
    b
    8106000
    1
    4
    0
    2f0
    2 :e:
    1PACKAGE:
    1BODY:
    1WWV_BUILDER:
    1SPACE:
    1VARCHAR2:
    11:
    1 :
    1L_LONG_COUNT:
    1NUMBER:
    1LONGPREFIX:
    15:
    1p_al:
    1L_MC_COUNT:
    1MCPREFIX:
    1p_mc:
    1L_CB_COUNT:
    10:
    1CBPREFIX:
    1p_cb:
    1G_SHOW_NULL:
    1BOOLEAN:
    1G_DISPLAY:
    132767:
    1G_VALUE:
    1G_PARSE_AS:
    1255:
    end of extract

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Mike Thompson ([email protected]):
    BY the way I installed the HLW demo last night!<HR></BLOCKQUOTE>
    But does it work? I just installed it as well, but if I try to go into any of the components like a form or report, it complains about missing tables. Very frustrating.
    null

Maybe you are looking for

  • Cannot get all rows from cfProcResult

    We upgraded one of our servers (A) from CF 6 to 7.02. Another server (B) has CF 7.01. On server B (CF 7.01) the code works (below), all rows of each dataset are returned. Now on server A (CF 7.02) all of the resulting datasets have only the first rec

  • Web service call with v3 client cert in CF8

    I'm trying to call an external web service which requires a v3 client certificate be installed on our end. Our code platform is CF8, which I understand supports v3 certs. I've imported the external party's client cert into the CF server's cert store

  • Indirect Role Assignment with HR-ORG in a system landscaper with CUA

    Hi all, we have 2 SAP systems: 1) SAP ECC6 (with composite roles) 2) SAP HR with PA and OM We would like to assign SAP ECC6 roles through HR-OM. Since HR-OM is not on the same ECC6 system, we would like to try the logic: HR-OM -> CUA -> ECC6 There ar

  • Sync to PC and Mac?

    Alright, I have a bit of a situation here. I'm wanting to get an iPhone to manage everything. All of my music, photos and videos are on my MacBook Pro at home. I also have email there as well. At work, we use Windows XP, Office 2004 and 2007. Is it p

  • How to control Internet used by Apps?

    Hello. I've been having this problem lately. For some reason, my Internet connection on my MacBook es going really slow. I suspected it was due to some configuration I couldn't figure out, so I created a Parental Control account, and the conection th