Missing Commissions?

Has anyone else have missing commissions? My account has not tracked any commissions since June 20th, no matter what filter I choose.
Thanks, Teejay

I thought mine was not showing as well. Click on "Invoice Date", you may need to click more than once.

Similar Messages

  • ORA-00917: missing comma when using NVL

    Hi All,
    I have a INSERT statement which works fine and looks something like:
    EXECUTE IMMEDIATE
    'insert into MYTABLE(ID,TASK_ROLE, PROGRESS,SALES_PERSON) values ...
    However if I change the above piece to use NVL function like this:
    EXECUTE IMMEDIATE
    'insert into MYTABLE(ID,TASK_ROLE, NVL(PROGRESS,''0''),SALES_PERSON) values ...
    I am getting the following error:
    ORA-00917: missing comma
    Where should I enter the extra comman needed?
    Regards,
    Pawel.

    Hi these are in fact two simple quotes '. If I use only one simple quote I get an error:
    1 error has occurred
    ORA-06550: line 48, column 239: PLS-00103: Encountered the symbol "0" when expecting one of the following: * & = - + ; < / > at in is mod remainder not rem return returning <> or != or ~= >= <= <> and or like LIKE2_ LIKE4_ LIKEC_ between into using || multiset bulk member SUBMULTISET_ The symbol "* was inserted before "0" to continue.
    Same thing happens if I ommit the quotes at all and leave it like NVL(PROGRESS,0)
    Edited by: padmocho on Sep 20, 2010 11:37 AM

  • Kindly help ORA-00917: missing comma" ERR-1101 Unable to process function

    HI Experts,
    Since yesterday every thing was fine, i do not know what happened in the evening, we are facing some issue with our production.
    I'm getting the following error ,when i running the report
    ORA-00917: missing comma
         Error      ERR-1101 Unable to process function body returning query.
    Since long time we have even not touched the code , i'm wondering about this error...the same code was working fine just 2 days back.
    Kindly help me with this...
    Code
    DECLARE
       date_from DATE:=:P46_TRANS_DATEFROM;
       date_to DATE:=:P46_TRANS_DATETO;
       --date_from DATE :=TO_DATE('22-Nov-2007','DD-Mon-yyyy');
       --date_to DATE :=TO_DATE('23-Nov-2007','DD-Mon-yyyy');
       date_counter DATE:=date_from;
       v_city varchar2(32):=:P46_CITY;
       str_month1 VARCHAR2(3):=SUBSTR(TO_CHAR(date_from,'DD-MON-YYYY'),4,3);
       str_year1 VARCHAR2(4):=SUBSTR(TO_CHAR(date_from,'DD-MON-YYYY'),8,4);
       str_month2 VARCHAR2(3):=SUBSTR(TO_CHAR(date_to,'DD-MON-YYYY'),4,3);
       str_year2 VARCHAR2(4):=SUBSTR(TO_CHAR(date_to,'DD-MON-YYYY'),8,4);
       day_from VARCHAR2(2):=SUBSTR(date_from,1,2);
       day_to VARCHAR2(2):=SUBSTR(date_to,1,2);
       CURSOR trans_alloc(m VARCHAR2,y NUMBER,email VARCHAR2) IS SELECT * FROM EFT_TRANS_ALLOCATION WHERE LOWER(MONTH)=LOWER(m) AND YEAR=y AND LOWER(email_id)=LOWER(email);
       CURSOR trans_schedules(m1 VARCHAR2,y1 NUMBER,m2 VARCHAR2,y2 NUMBER) IS SELECT * FROM OD_SHIFT_SCHEDULE WHERE (UPPER(MONTH)=m1 OR UPPER(MONTH)=m2) AND (YEAR=y1 OR YEAR=y2);
       CURSOR get_res_id(email VARCHAR2) IS SELECT resource_id,first_name,last_name FROM EFT_RESOURCES WHERE LOWER(email_id)=LOWER(email);
       rec OD_SHIFT_SCHEDULE%ROWTYPE;
       CURSOR get_shifts(id VARCHAR2) IS SELECT * FROM OD_SHIFTS WHERE shift_id=id;
       ta EFT_TRANS_ALLOCATION%ROWTYPE;
       sd OD_SHIFTS%ROWTYPE;
       sql_str VARCHAR2(4000);
       v_res_id NUMBER;
       v_fname VARCHAR2(50);
       v_lname VARCHAR2(50);
       v_shift_id VARCHAR2(32);
       s VARCHAR2(1000);
       d VARCHAR2(32);
       final_sql VARCHAR2(4000);
       v_consent VARCHAR2(3);
       s2 VARCHAR2(1000);
       dn DATE;
    BEGIN
       DELETE FROM EFT_SHIFT_SCHEDULES_RPT;
       OPEN trans_schedules(UPPER(str_month1),TO_NUMBER(str_year1),UPPER(str_month2),TO_NUMBER(str_year2));
       LOOP
          FETCH trans_schedules INTO rec;
           EXIT WHEN trans_schedules%NOTFOUND;
           OPEN get_res_id(rec.name);
           FETCH get_res_id INTO v_res_id,v_fname,v_lname;
              OPEN trans_alloc(TO_CHAR(date_counter,'MON'),TO_NUMBER(TO_CHAR(date_counter,'YYYY')),rec.name);
               FETCH trans_alloc INTO ta;
               IF trans_alloc%FOUND THEN
               dbms_output.put_line (date_counter||'----'||date_to||'Res_id:----'||v_res_id||'-'||ta.slno);
               dbms_output.put_line ('Found Alloc');
               WHILE date_counter<=date_to
               LOOP
                    --d:=d||'-'||str_month||'-'||str_year;
                    d:=SUBSTR(TO_CHAR(date_counter,'DD-MON-YYYY'),1,2);     
                    s:='INSERT INTO temp_2 SELECT "'||d||'" from OD_SHIFT_SCHEDULE where slno='||rec.slno;
                    --dbms_output.put_line (d||'-'||s);
                    DELETE FROM temp_2;
                    EXECUTE IMMEDIATE s;
                    SELECT substr(trim(VAL),1,1) INTO v_shift_id FROM temp_2;
                    s2:='INSERT INTO temp_3 SELECT "'||d||'" from EFT_TRANS_ALLOCATION where slno='||ta.slno;
                    DELETE FROM temp_3;
                    EXECUTE IMMEDIATE s2;
                    SELECT VAL INTO v_consent FROM temp_3;
                    --dbms_output.put_line (v_shift_id||'-'||v_consent);
                    --dbms_output.put_line (date_counter||'-'||date_to);
                    IF v_consent='Y' THEN
                    --dbms_output.put_line ('Im inside consent'||v_consent);
                    IF v_shift_id IS NOT NULL THEN
                    --dbms_output.put_line ('Im inside shift not null'||v_shift_id);
                       OPEN get_shifts(v_shift_id);
                       FETCH get_shifts INTO sd;
                        IF sd.night_shift_indicator='Y' THEN
                           dn:=date_counter+1;
                        sql_str:='INSERT INTO eft_shift_schedules_rpt VALUES ('||v_res_id||','''||v_fname||''','''||v_lname||''','''||rec.name||''','''||sd.shift_name||''','''||date_counter||''','''||sd.start_from||''','''||sd.start_to||''','''||''','''||sd.active_yn||''','''||dn||''')';
                        ELSE
                           sql_str:='INSERT INTO eft_shift_schedules_rpt VALUES ('||v_res_id||','''||v_fname||''','''||v_lname||''','''||rec.name||''','''||sd.shift_name||''','''||date_counter||''','''||sd.start_from||''','''||sd.start_to||''','''||''','''||sd.active_yn||''','''||date_counter||''')';
                        END IF;
                       EXECUTE IMMEDIATE sql_str;
                       CLOSE get_shifts;
                        --dbms_output.put_line (sql_str);
                    END IF;
                    END IF;
                    COMMIT;
                    date_counter:=date_counter+1;     
              END LOOP;
               END IF;
          CLOSE trans_alloc;
           CLOSE get_res_id;
           --dbms_output.put_line (rec.name);
           date_counter:=date_from;
       END LOOP;
       COMMIT;
       CLOSE trans_schedules;
    final_sql:='select a.first_name,a.last_name,a.email_id,a.shift_details,a.arrange_date,a.slot_from,a.slot_to,a.trans_arranged,a.active_yn,b.address1,b.address2,b.city,b.state,b.pin,b.worknumber,b.homenumber,b.mobilenumber,a.to_date from eft_shift_schedules_rpt a,eft_locations b where a.resource_id=b.resource_id and b.city =:P46_CITY';
    --dbms_output.put_line (final_sql);
    RETURN final_sql;
    END;

    Hi Basva,
    my best advice is find out where the error happens, e.g. using DBMS_UTILITY.FORMAT_ERROR_BACKTRACE .
    In the next step you can fix the error and rework the code so that it looks nice and has some comments in it so everyone knows what it SHOULD do.
    brgds,
    Peter
    Blog: http://www.oracle-and-apex.com
    ApexLib: http://apexlib.oracleapex.info
    BuilderPlugin: http://builderplugin.oracleapex.info
    Work: http://www.click-click.at and http://www.wirsindapex.at

  • ORA-00917: missing comma

    Hello again,
    I am here because I know I am missing something. I see I have a comma after every column name in the INSERT clause, and in the VALUES clause I put commas after the values for the corresponding columns.
    Even if you don't tell me the exact reason, I'd appreciate any guidance to find out where my syntax is wrong.
    Here is my code:
    INSERT INTO appeals (appeal_id, crime_id, status, TO_CHAR(filing_date, 'MONTH DD YYYY')"Filing_Date",
    TO_CHAR(hearing_date, 'MONTH DD YYYY')"Hearing_Date")
    VALUES(APPEALS_ID_SEQ.NEXTVAL, :crime_id, '', :filing_date, :hearing_date);
    Thanks!

    Your syntax is wrong - it goes:
    insert into <table>[(columnlist)]
    values([valuelist])You are putting the to_char in the wrong spot. You can't put it in the column list - it needs to go in the values list. And to enter data into a date column, you want to_date. You want to convert a character string into its date representation.
    Like
    insert into table (co1, col2, col3)
    values('ABC', to_date(:someval, 'DD/MM/YYYY'), to_date(:otherval, 'DD/MM/YYYY'))

  • Error: [Microsoft][ODBC driver for Oracle][Oracle]ORA-00917: missing comma

    hi
    i dont no why this error is coming. error may b while storing chaacter array in database
    program is
    //TCPClient.java
    import java.io.*;
    import java.net.*;
    import java.util.Calendar;
    import java.text.SimpleDateFormat;
    import java.sql.*;
    import javax.swing.*;
    class Client
         protected DataInputStream in;
    protected DataOutputStream out;
    //Jframe frame;
    public static final String DATE_FORMAT_NOW = "yyyy/MM/dd HH:mm:ss";
    public static String now() {
    Calendar cal = Calendar.getInstance();
    SimpleDateFormat sdf = new SimpleDateFormat(DATE_FORMAT_NOW);
    return sdf.format(cal.getTime());
    public static void main(String argv[]) throws Exception
    String FromServer;
    String ToServer;
    int i=0;
    // frame = new JFrame("Show Message Dialog");
    Socket clientSocket = new Socket("localhost", 5000);
    BufferedReader inFromUser =
    new BufferedReader(new InputStreamReader(System.in));
    PrintWriter outToServer = new PrintWriter(
    clientSocket.getOutputStream(),true);
    BufferedReader inFromServer = new BufferedReader(new InputStreamReader(
    clientSocket.getInputStream()));
    String d=(Client.now());
    try{
    String cmd = "reg query \"HKEY_LOCAL_MACHINE\\SOFTWARE\"";
         Process p = Runtime.getRuntime().exec(cmd);
    Thread.sleep(200l); //terrible, the right way is p.waitFor
    InputStream in = p.getInputStream();
    byte[] bytes = new byte[16384];
    StringBuffer buf = new StringBuffer();
    while(true) {
    int num = in.read(bytes);
    if(num == -1) break;
    buf.append(new String(bytes,0,num,"UTF-8"));
    //output stored in a string
    System.out.println(buf.toString());
    String str=new String();
    str=(buf.toString());
    //formating output
    String newtext=str.replaceAll("HKEY_LOCAL_MACHINE","");
    String newtext1=newtext.replaceAll("SOFTWARE","*");
    System.out.println(newtext1);
    //getting local ip
    InetAddress thisIp =InetAddress.getLocalHost();
    String ip=(thisIp.getHostAddress());
    System.out.println("IP:"+thisIp.getHostAddress());
    // printing date and time
    System.out.println(d);
    // connection
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection conn=DriverManager.getConnection("jdbc:odbc:cat","system","root");     
              PreparedStatement ps=conn.prepareStatement("select ip,dates,software from ipdet");
    ResultSet r=ps.executeQuery();
    char softlist[]=newtext1.toCharArray();
         for(i=0;i<softlist.length;i++)
    if(softlist=='*')
    System.out.println("\n");
         System.out.print(softlist[i]);
              Statement s=conn.createStatement();
              String ins="insert into ipdet(ip,dates,software) values(ip,d,softlist[i])";
              s.executeUpdate(ins);
    // s.setString(1,ip);
              //s.setString(2,d);
                   // s.setString(3,softlist[i]);
                   // s.executeUpdate();
    System.out.println("record inserted succcessfully") ;
              r.close();
              conn.close();
              clientSocket.close();
    catch (Exception e)
    System.err.println("Error: " + e.getMessage());

    i don't think its your connection. You must be hitting the DB otherwise you would not be getting an ORA error returned wrapped in an SQLException. I think its your pseudo-SQL, it simply says that you are missing a comma in an update string. Realistically, it could be that it is being misled into looking for a comma, probably because you have put a ';' at the end of your update string...

  • RFC Adapter and BAPI Commit

    Hi everybody!
    In my scenario I post an RFC call to a BAPI (BAPI_GOODSMVT_CREATE). The call succeeds (empty RETURN parameter, material document numer is returned). However, the resulting material document is not available in MB03 - I assume this is due to a missing COMMIT after the RFC call.
    However, our system has SP 18 - and I have read that the RFC adapter is able to add a COMMIT after a successful call automatically starting from SP 14. What confuses me is the fact that the descriptions in the online sources state that I should check the "Extended Mode" checkbox in the RFC adapter config screen and then I should check the "Commit..." option. However, when I set the checkbox for extended parameters, I only get a simple table where I can enter property/value pairs.
    Has something gone wrong with the upgrade and my RFC adapter doesn't have SP 18 yet? Or am I doing something wrong?
    Regards, Joerg

    Hi Joerg,
    Check in your Repository if you imported the newest adapter metadata.
    Check Software Component SAP BASIS - > SAP BASIS 6.40 -> http://sap.com/xi/XI/System
    There Adapterobjects -> Adaptermetadata -> RFC
    search after the attribute  ..<b>singelBapiCommit</b>
    Because you dont see a SP version there.
    Maybe its better to search afer the label:
    <b>Commit handling for singel BAPI-calls</b>
    When you dont find the attribute .. try to reimport your BASIS 6.40 Software Componenent.
    Regards,
    Robin

  • Export data without commas

    Hi!
    I've got Oracle 10.2.0.3 and SQLDeveloper 1.5.1.54.40
    NLS_LANG = RUSSIAN_CIS.CL8MSWIN1251;
    What I did:
    CREATE TABLE B
    (     ID NUMBER,
         CNT NUMBER
    Insert into B (ID,CNT) values (1,1);
    Insert into B (ID,CNT) values (1,3);
    After that I've made export data (from pop-up menu) ->inserts -> to clipboard.
    Paste to SQLDeveloper:
    REM INSERTING into B
    Insert into B (ID,CNT) values (1 1);
    Insert into B (ID,CNT) values (1 3);
    Execute statement (F9) ->
    ORA-00917 - missing comma.
    Thanks for reading

    Have a look at Export problem - SQL Developer 1.5.1 BUG!! for what I would guess to be your problem (using NLS settings instead of hard-coding ,).
    theFurryOne

  • Missing items in the IDoc for the delivery

    Hi to all,
    Sorry if not posting in the right forum.
    In my customer's scenario, an IDoc is created against a delivery (via the delivery output), and sent via ALE to a distant warehouse system, for picking and GI posting (basic type SHPMNT03).
    For some times, the IDoc created against deliveries including BOMs is missing the main item of the BOM (though the BOM main item is in the delivery).
    Consequently, the integration in the distant system is failing, because the higher-level item referenced in the BOM sub-items is missing.
    Surprisingly, re-triggering the delivery output does re-generate a complete IDoc, where the segment for the main item is back.
    I looked almost everywhere, did many searches in OSS (on SHPMNT03, on HIPOS, on E1ELD24 - segment name in the IDoc -, on "Missing items in the IDoc for the delivery", etc...), I even simply googled the web, but I can't even figure out what is the cause for this (I imagined it could be caused by a missing commit in the program generating the IDoc, but don't know whether this make sense).
    Any help would be highly appreciated.
    Thanks in advance and best regards
    Yan
    Edited by: Yan Loiseau on Jul 8, 2010 12:52 PM
    Edited by: Yan Loiseau on Jul 8, 2010 12:56 PM

    Hello Yan
    Jelena is right, you are better off taking it up with SAP. I also did not find any relevant OSS notes.
    However the issue, according to my reading, is in the following areas:
    1) LV56KF05: INCLUDE LV56KF62 .  " FILL_E1EDL24"
    This fills the EIEDL24 segment, may be the main item is filled  initially and overwritten later.
    2) Function Module: IDOC_OUTPUT_DELVRY
    You can look at the following OSS notes (though not fully relevant)  for some clues:
    810981 - Reference data missing in DESADV IDoc from decentralized WMS
    537470 - BOM + batch split in decentralized WMS, confirmation fails
    752921 - VL563: Higher-level item does not exist
    705086 - Higher-level item does not refer to existing item
    Hope this helps. Good luck.

  • Insert comma within string

    I have an insert statement which contains two string ,
    INSERT INTO hip.ref_hip_specialties VALUES('NP-WOMEN'S HEALTH','NP-WOMEN'S HEALTH');
    But getting error
    ERROR at line 1:
    ORA-00917: missing comma
    I know its because of 'S in the strings.How can i include it while inserting ?Please help

    Hello,
    Assuming you're on 10g or greater, then this will work, using Q Notation:
    INSERT INTO hip.ref_hip_specialties VALUES(Q'[NP-WOMEN'S HEALTH]',Q'[NP-WOMEN'S HEALTH]');

  • Comma problem

    I created a textarea form among other forms
    <tr bgcolor="#c8d8f8">
    <td valign=top>
    <b>Comment</b>
    <br></td>
    <td valign=top>
    <textarea rows="8" cols="53" name="comment" maxlength=120></textarea>
    then I insert the data to the form (including the textarea form)
    int rowsAffected = stmt.executeUpdate ("insert into feedback(fname,group_id,"+
    "email,response,quality,technical,lname,comment_text,escalation_id,rq_id) values ('"+e_firstname+
    "',"+e_group+",'"+e_email+"',"+e_response+","+e_quality+","+e_technical+
    ",'"+e_lastname+"','"+e_comment+"',"+e_escalationperson+","+e_rqnumber+")");
    It works great for most words.
    (e.g hello my name is abc. nice to meet you blah..blah...blah...)
    However if a person insert words like ("It's") then I will get error msg.
    500 Internal Server Error
    /feedback/entry.jsp:
    Exception thrown processing JSP page.
    java.sql.SQLException: ORA-00917: missing comma
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:114)
         at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:208)
         at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:542)
         at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1311)
         at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:738)
         at oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java:1313)
         at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java:1232)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithBatch(OracleStatement.java:1353)
         at oracle.jdbc.driver.OracleStatement.doExecute(OracleStatement.java:1760)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1805)
         at oracle.jdbc.driver.OracleStatement.executeUpdate(OracleStatement.java:531)
         at jrun__feedback__entry2ejsp13._jspService(jrun__feedback__entry2ejsp13.java:61)
         at allaire.jrun.jsp.HttpJSPServlet.service(../jsp/HttpJSPServlet.java:39)
         at allaire.jrun.jsp.JSPServlet.service(../jsp/JSPServlet.java:228)
         at allaire.jrun.jsp.JSPServlet.service(../jsp/JSPServlet.java:196)
         at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1416)
         at allaire.jrun.session.JRunSessionService.service(../session/JRunSessionService.java:1082)
         at allaire.jrun.servlet.JRunSE.runServlet(../servlet/JRunSE.java:1270)
         at allaire.jrun.servlet.JRunRequestDispatcher.forward(../servlet/JRunRequestDispatcher.java:89)
         at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1552)
         at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1542)
         at allaire.jrun.servlet.JvmContext.dispatch(../servlet/JvmContext.java:364)
         at allaire.jrun.http.WebEndpoint.run(../http/WebEndpoint.java:115)
         at allaire.jrun.ThreadPool.run(../ThreadPool.java:272)
         at allaire.jrun.WorkerThread.run(../WorkerThread.java:75)

    hi i think you hav to parse the input parameters before putting them in the sql statement.
    you will have to replace the char ' with \' because otherwise the sql statement is corrupt.

  • Intra - Partioning Query

    Hi,
    I'm trying to create an Intra Partioning Query but need a bit of help.
    What i have so far is:
    Select call_id,
    Sum(decode(start_date_time (To_Date('12-JAN-2006', 'DD-MON-YYYY')), charge, NULL)) Charge12,
    Sum(decode(start_date_time (To_Date('19-MAR-2006', 'DD-MON-YYYY')), charge, NULL)) Charge19,
    Sum(decode(start_date_time (To_Date('12-JAN-2006', 'DD-MON-YYYY')), charge, NULL)) -
    Sum(decode(start_date_time (To_Date('19-MAR-2006', 'DD-MON-YYYY')), charge, NULL)) diff
    From phone_call
    Group By call_id;
    The error i'm getting is that it doesnot recognise "start_date_time.
    I have checked the spelling and it matches up.
    Appreciate any help
    Thanks

    you are missing Comms in decode after column
    Select call_id,
    Sum(decode(start_date_time  ,  (To_Date('12-JAN-2006', 'DD-MON-YYYY')), charge, NULL)) Charge12,
    Sum(decode(start_date_time ,  (To_Date('19-MAR-2006', 'DD-MON-YYYY')), charge, NULL)) Charge19,
    Sum(decode(start_date_time ,  (To_Date('12-JAN-2006', 'DD-MON-YYYY')), charge, NULL)) -
    Sum(decode(start_date_time ,  (To_Date('19-MAR-2006', 'DD-MON-YYYY')), charge, NULL)) diff
    From phone_call
    Group By call_id;

  • T-SQL - PL/SQL conversion: insert into ... select problem

    Hi!
    If I have an insert into ... select statement in T-SQL without a 'from' clause:
    bq. insert into sometable (foo, bar) \\ select 5, case when @bar=5 then 4 else 3 end
    its translation is:
    bq. INSERT INTO sometable \\ ( foo, bar ) \\ VALUES ( 5, CASE \\ WHEN 5 = 5 THEN 4 \\ ELSE 3 \\ END col );
    and I got: ORA-00917: "missing comma" for that. I'm not sure if it's a bug in the migration code, or is there a trick so that I can use 'CASE' in an insert into .. values statement somehow?
    Zoli

    You have to remove the column name. I just simplified your test case to check and it's working:
    CREATE TABLE test(
      id NUMBER
    INSERT
      INTO test(id)
      VALUES(CASE WHEN 5=5 THEN 4 ELSE 3 END)
    SELECT *
      FROM test
    ;C.

  • EPM 11.1.2: Foundation Services config fails on Windows 2008 SP1 server.

    Hi,
    I installed EPM 11.1.2 on Windows 2008 SP1, 32-bit. The installation succeeded (no errors in logs). However, when I run EPM Configurator to configure Foundation Services, it fails.
    Environment:
    EPM Server: Windows 2008 SP1 32-bit
    RDBMS: Oracle Enterprise Edition 10.2.0.4 (running on remote AIX 5.3 TL 8 server)
    Oracle Client: 10.2.0.4 (full client install)
    The configtool.log (see below) indicates that the program cannot find the reg.properties file. I checked the server and this file does not exist. The log file also reports non-existing classpath entries (not sure if this is related). The registry.log file (see below) reports a jdbc driver error: java.sql.SQLSyntaxErrorException: ORA-00917: missing comma.
    I submitted a service request with Oracle Support, but the support engineer said that installation and configuration errors are outside the scope of technical support.
    Any ideas/suggestions would be greatly appreciated.
    Thank you.
    Configtool_Summary.log:
    ---- Product Configuration Summary.....
    ( May 9, 2010 6:55:58 AM ): ---- Hyperion Foundation Configuration......
    ( May 9, 2010 6:55:59 AM ): Pre-Configuration :: pass
    ( May 9, 2010 6:55:59 AM ): Common Settings :: fail
    ( May 9, 2010 6:56:03 AM ): Configure Database :: pass
    ( May 9, 2010 6:56:03 AM ): Deploy to Application Server :: fail
    ( May 9, 2010 6:57:03 AM ): Configure Oracle Configuration Manager :: fail
    ( May 9, 2010 6:57:08 AM ): ---- Workspace Configuration......
    ( May 9, 2010 6:57:08 AM ): Deploy to Application Server :: fail
    Configtool.log:
    [2010-05-09T06:49:19.927-06:00] [EPMCFG] [TRACE] [EPMCFG-01001] [oracle.EPMCFG] [tid: 10] [ecid: 0000IXx7D4337E65zNd9iW1BtexF000000,0] [SRC_CLASS: com.oracle.preconfig.util.EpmLoggerPreConfigReporter] trace: Running preconfig checks...[[
    Running EPM_ORACLE_HOME check...
    EPM_ORACLE_HOME environment variable value: C:\Oracle\Middleware\EPMSystem11R1
    JAVA_HOME environment variable value: C:\Oracle\Middleware\EPMSystem11R1\..\jdk160_11
    EPM_ORACLE_HOME check succeeded
    Running .oracle.products check... .oracle.products check succeeded
    Running Jars manifest check...
    Time spent for manifests parsing: 55129 ms
    Maximum jars depth achieved: 9, while restriction was: unrestricted
    Parsed 439 manifests
    Total jars and classpath entries encountered: 439
    Total not-existing referenced classpath entries count: 28
    Enumerating not-existing classpath entries:
    Missing (depth 9) file C:\oracle\Middleware\modules\com.bea.cie.comdev.it_6.1.1.0.jar referenced from C:\oracle\Middleware\modules\features\com.bea.cie.config.it_6.1.0.0.jar referenced from C:\oracle\Middleware\modules\features\com.bea.cie.config.L10N_6.1.0.0.jar referenced from C:\oracle\Middleware\modules\features\com.bea.cie.config_6.1.0.0.jar referenced from C:\oracle\Middleware\utils\config\10.3\config-launch.jar referenced from C:\oracle\Middleware\wlserver_10.3\common\lib\pdev.jar referenced from C:\oracle\Middleware\wlserver_10.3\server\lib\weblogic.jar referenced from C:\oracle\Middleware\EPMSystem11R1\common\jlib\11.1.2.0\epm_jrf.jar referenced from C:\oracle\Middleware\EPMSystem11R1\common\jlib\11.1.2.0\epm_j2se.jar referenced from C:\oracle\Middleware\EPMSystem11R1\common\config\11.1.2.0\configtool.jar
    Missing (depth 5) file C:\oracle\Middleware\wlserver_10.3\server\lib\wlw-langx-L10N.jar referenced from C:\oracle\Middleware\wlserver_10.3\server\lib\wlw-langx.jar referenced from C:\oracle\Middleware\wlserver_10.3\server\lib\weblogic.jar referenced from C:\oracle\Middleware\EPMSystem11R1\common\jlib\11.1.2.0\epm_jrf.jar referenced from C:\oracle\Middleware\EPMSystem11R1\common\jlib\11.1.2.0\epm_j2se.jar referenced from C:\oracle\Middleware\EPMSystem11R1\common\config\11.1.2.0\configtool.jar
    Total classpath elements to check: 67
    Check for C:\oracle\Middleware\EPMSystem11R1\common\config\11.1.2.0\lib\hit-common.jar existence succeeded; file depth: 1
    Check for C:\oracle\Middleware\EPMSystem11R1\common\config\11.1.2.0\lib\hit-config.jar existence succeeded; file depth: 1
    Jars manifest check succeeded
    Running Environment variables check... Environment variables check succeeded
    Running Windows system32 directory check... Windows system32 directory check succeeded
    Preconfig checks passed! Going further
    [2010-05-09T06:49:22.303-06:00] [EPMCFG] [NOTIFICATION] [EPMCFG-01731] [oracle.EPMCFG] [tid: 10] [ecid: 0000IXx7D4337E65zNd9iW1BtexF000000,0] [SRC_CLASS: com.hyperion.config.wizard.ConfigToolWizardLoader] Couldnt find proper class for wizard state: {0}, skipping...
    [2010-05-09T06:49:22.943-06:00] [EPMCFG] [WARNING] [EPMCFG-01001] [oracle.EPMCFG] [tid: 10] [ecid: 0000IXx7D4337E65zNd9iW1BtexF000000,0] [SRC_CLASS: com.hyperion.config.document.Storage] trace: {0}[[
    com.hyperion.hit.registry.exceptions.RegistryException: No database properties could be read
    [2010-05-09T06:49:22.943-06:00] [EPMCFG] [TRACE] [EPMCFG-05934] [oracle.EPMCFG] [tid: 10] [ecid: 0000IXx7D4337E65zNd9iW1BtexF000000,0] [SRC_CLASS: com.hyperion.cis.utils.StopWatch] Task [Init Storage] has been started.
    [2010-05-09T06:49:22.943-06:00] [EPMCFG] [TRACE] [EPMCFG-05934] [oracle.EPMCFG] [tid: 10] [ecid: 0000IXx7D4337E65zNd9iW1BtexF000000,0] [SRC_CLASS: com.hyperion.cis.utils.StopWatch] Task [Getting registry instance] has been started.
    [2010-05-09T06:49:22.943-06:00] [EPMCFG] [WARNING] [EPMCFG-01001] [oracle.EPMCFG] [tid: 10] [ecid: 0000IXx7D4337E65zNd9iW1BtexF000000,0] [SRC_CLASS: com.hyperion.config.document.Storage] trace: com.hyperion.hit.registry.exceptions.RegistryException: No database properties could be read
    [2010-05-09T06:49:22.943-06:00] [EPMCFG] [TRACE] [EPMCFG-05935] [oracle.EPMCFG] [tid: 10] [ecid: 0000IXx7D4337E65zNd9iW1BtexF000000,0] [SRC_CLASS: com.hyperion.cis.utils.StopWatch] Task [Getting registry instance] has been ended. Execution time [0] sec.
    [2010-05-09T06:49:22.943-06:00] [EPMCFG] [TRACE] [EPMCFG-05934] [oracle.EPMCFG] [tid: 10] [ecid: 0000IXx7D4337E65zNd9iW1BtexF000000,0] [SRC_CLASS: com.hyperion.cis.utils.StopWatch] Task [Loading CT documents] has been started.
    [2010-05-09T06:49:22.959-06:00] [EPMCFG] [NOTIFICATION] [EPMCFG-01044] [oracle.EPMCFG] [tid: 10] [ecid: 0000IXx7D4337E65zNd9iW1BtexF000000,0] [SRC_CLASS: com.hyperion.cis.config.document.ConfigToolDocumentManager] Loading product descriptor from file C:\Oracle\Middleware\EPMSystem11R1\common\config\11.1.2.0\product\aps\11.1.2.0\default_aps_1.xml...
    [2010-05-09T06:50:53.137-06:00] [EPMCFG] [TRACE] [EPMCFG-05922] [oracle.EPMCFG] [tid: 13] [ecid: 0000IXx7Zkm37E65zNd9iW1BtexF000004,0] [SRC_CLASS: com.hyperion.install.sw.SoftwareRegistry] Adding Hyperion Home entry...
    [2010-05-09T06:50:53.137-06:00] [EPMINS] [NOTIFICATION] [EPMINS-00006] [oracle.EPMINS] [tid: 13] [ecid: 0000IXx7Zkm37E65zNd9iW1BtexF000004,0] [SRC_CLASS: com.hyperion.hit.wizard.Wizard] Wizard state is: RegistryWizardState
    [2010-05-09T06:51:41.437-06:00] [EPMINS] [TRACE] [EPMINS-00015] [oracle.EPMINS] [tid: 11] [ecid: 0000IXx7Zhb37E65zNd9iW1BtexF000002,0] [SRC_CLASS: com.hyperion.hit.wizard.AbstractWizardAction] Invoked action: navigation.next
    [2010-05-09T06:51:41.453-06:00] [EPMCFG] [ERROR] [EPMCFG-01001] [oracle.EPMCFG] [tid: 14] [ecid: 0000IXx7j^D37E65zNd9iW1BtexF000005,0] [SRC_CLASS: com.hyperion.config.document.Storage] trace: {0}[[
    com.hyperion.hit.registry.exceptions.RegistryException: com.hyperion.hit.registry.exceptions.RegistryException: No database properties could be read
         at com.hyperion.hit.registry.Registry.releaseInstance(Registry.java:2039)
         at com.hyperion.config.document.Storage.resetRegistryItems(Storage.java:811)
         at com.hyperion.config.document.Storage.resetRegistry(Storage.java:798)
         at com.hyperion.config.wizard.impl.RegistryWizardState$1.validate(RegistryWizardState.java:348)
         at com.hyperion.hit.wizard.Wizard$NextClass.run(Wizard.java:504)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: com.hyperion.hit.registry.exceptions.RegistryException: No database properties could be read
         at com.hyperion.hit.registry.datasource.SharedServicesDataSourceFactory.getDataSource(SharedServicesDataSourceFactory.java:29)
         at com.hyperion.hit.registry.datasource.SharedServicesDatabaseConnectionBuilder.getConnection(SharedServicesDatabaseConnectionBuilder.java:26)
         at com.hyperion.hit.registry.RegistryUtils.createNewConnection(RegistryUtils.java:183)
         at com.hyperion.hit.registry.RegistryConnection.getInstance(RegistryConnection.java:149)
         at com.hyperion.hit.registry.Registry.releaseInstance(Registry.java:2030)
         ... 5 more
    [2010-05-09T06:51:46.891-06:00] [EPMCFG] [WARNING] [EPMCFG-01863] [oracle.EPMCFG] [tid: 14] [ecid: 0000IXx7j^D37E65zNd9iW1BtexF000005,0] [SRC_CLASS: com.hyperion.config.wizard.impl.RegistryWizardState] Unknown server type: ORACLE
    [2010-05-09T06:51:46.938-06:00] [EPMCFG] [TRACE] [EPMCFG-01864] [oracle.EPMCFG] [tid: 14] [ecid: 0000IXx7j^D37E65zNd9iW1BtexF000005,0] [SRC_CLASS: com.hyperion.config.wizard.impl.RegistryWizardState] HSS DB commit: serverType = ORACLE, host = fsdev21.jeffco.k12.co.us, port = 1521, db = EPMDMO
    [2010-05-09T06:54:20.402-06:00] [EPMCFG] [TRACE] [EPMCFG-01001] [oracle.EPMCFG] [tid: 22] [ecid: 0000IXx8MHf37E65zNd9iW1BtexF00000B,0] [SRC_CLASS: com.hyperion.cis.utils.Log4jEPMLoggerAdapter] trace: oracle.sysman.ccr.common.network.EndPoint: SSL Protocol Initialized - SSL SocketFactory initialized
    [2010-05-09T06:54:20.699-06:00] [EPMCFG] [TRACE] [EPMCFG-01001] [oracle.EPMCFG] [tid: 22] [ecid: 0000IXx8MHf37E65zNd9iW1BtexF00000B,0] [SRC_CLASS: com.hyperion.cis.utils.Log4jEPMLoggerAdapter] trace: oracle.sysman.ccr.common.network.EndPoint: Peer Certificate Chain(3):
    [2010-05-09T06:54:20.714-06:00] [EPMCFG] [TRACE] [EPMCFG-01001] [oracle.EPMCFG] [tid: 22] [ecid: 0000IXx8MHf37E65zNd9iW1BtexF00000B,0] [SRC_CLASS: com.hyperion.cis.utils.Log4jEPMLoggerAdapter] trace: oracle.sysman.ccr.common.network.EndPoint: [[[
    Version: V3
    Subject: CN=ccr.oracle.com, OU=Terms of use at www.verisign.com/rpa (c)05, OU=Global IT, O=Oracle Corporation, L=Redwood Shores, ST=California, C=US
    Signature Algorithm: SHA1withRSA, OID = 1.2.840.113549.1.1.5
    Key: Sun RSA public key, 1024 bits
    modulus: 126484617735060833031672477175673947636995798346030414463203905767325249772953279144384357766006815101034501698878511926718137275402247180206176507598520965207099036209959054153609440070358274987559344845438007585125964758282852498389487164896685302381484205088204064664382056656592869143856352689583929480807
    public exponent: 65537
    Validity: [From: Mon May 04 18:00:00 MDT 2009,
                   To: Sun Jul 04 17:59:59 MDT 2010]
    Issuer: CN=VeriSign Class 3 Secure Server CA, OU=Terms of use at https://www.verisign.com/rpa (c)05, OU=VeriSign Trust Network, O="VeriSign, Inc.", C=US
    SerialNumber: [    52b9bccd 239d7a0d 7bb16003 389848b0]
    Certificate Extensions: 8
    [1]: ObjectId: 1.3.6.1.5.5.7.1.12 Criticality=false
    Extension unknown: DER encoded OCTET string =
    0000: 04 62 30 60 A1 5E A0 5C 30 5A 30 58 30 56 16 09 .b0`.^.\0Z0X0V..
    0010: 69 6D 61 67 65 2F 67 69 66 30 21 30 1F 30 07 06 image/gif0!0.0..
    0020: 05 2B 0E 03 02 1A 04 14 4B 6B B9 28 96 06 0C BB .+......Kk.(....
    0030: D0 52 38 9B 29 AC 4B 07 8B 21 05 18 30 26 16 24 .R8.).K..!..0&.$
    0040: 68 74 74 70 3A 2F 2F 6C 6F 67 6F 2E 76 65 72 69 http://logo.veri
    0050: 73 69 67 6E 2E 63 6F 6D 2F 76 73 6C 6F 67 6F 31 sign.com/vslogo1
    0060: 2E 67 69 66 .gif
    [2]: ObjectId: 2.5.29.35 Criticality=false
    AuthorityKeyIdentifier [
    KeyIdentifier [
    0000: 6F EC AF A0 DD 8A A4 EF F5 2A 10 67 2D 3F 55 82 o........*.g-?U.
    0010: BC D7 EF 25 ...%
    [3]: ObjectId: 2.5.29.31 Criticality=false
    CRLDistributionPoints [
    [DistributionPoint:
    [URIName: http://SVRSecure-crl.verisign.com/SVRSecure2005.crl]
    [4]: ObjectId: 2.5.29.37 Criticality=false
    ExtendedKeyUsages [
    serverAuth
    clientAuth
    [5]: ObjectId: 2.5.29.32 Criticality=false
    CertificatePolicies [
    [CertificatePolicyId: [2.16.840.1.113733.1.7.23.3]
    [PolicyQualifierInfo: [
      qualifierID: 1.3.6.1.5.5.7.2.1
      qualifier: 0000: 16 1C 68 74 74 70 73 3A   2F 2F 77 77 77 2E 76 65  ..https://www.ve
    0010: 72 69 73 69 67 6E 2E 63   6F 6D 2F 72 70 61        risign.com/rpa
    [6]: ObjectId: 2.5.29.15 Criticality=false
    KeyUsage [
    DigitalSignature
    Key_Encipherment
    [7]: ObjectId: 1.3.6.1.5.5.7.1.1 Criticality=false
    AuthorityInfoAccess [
    [accessMethod: 1.3.6.1.5.5.7.48.1
       accessLocation: URIName: http://ocsp.verisign.com, accessMethod: 1.3.6.1.5.5.7.48.2
       accessLocation: URIName: http://SVRSecure-aia.verisign.com/SVRSecure2005-aia.cer]
    [8]: ObjectId: 2.5.29.19 Criticality=false
    BasicConstraints:[
    CA:false
    PathLen: undefined
    Algorithm: [SHA1withRSA]
    [2010-05-09T06:54:20.714-06:00] [EPMCFG] [TRACE] [EPMCFG-01001] [oracle.EPMCFG] [tid: 22] [ecid: 0000IXx8MHf37E65zNd9iW1BtexF00000B,0] [SRC_CLASS: com.hyperion.cis.utils.Log4jEPMLoggerAdapter] trace: oracle.sysman.ccr.common.network.EndPoint: [[[
    Version: V3
    Subject: CN=VeriSign Class 3 Secure Server CA, OU=Terms of use at https://www.verisign.com/rpa (c)05, OU=VeriSign Trust Network, O="VeriSign, Inc.", C=US
    Signature Algorithm: SHA1withRSA, OID = 1.2.840.113549.1.1.5
    Key: Sun RSA public key, 2048 bits
    modulus: 18905729229464742433949840178165285210788629616064305164260843170201977241822595607598003983710482114887504542420063531704226365322091550579034120400511694538047325464426047959412241672706076731441028369861556999479337863789783838582999151810376013650218058341794419022809268802993425241541430009002110553726612125414429934927217253337526656605550620555845061032537869588361121949241772361851996536275260212221084778605793422355009443918198903890623415507477268041766919150091887619618794603091993360637671933766441597921249204891707900552776893415739395596650548462810104696585021566385762017523199762687187467514321
    public exponent: 65537
    Validity: [From: Tue Jan 18 17:00:00 MST 2005,
                   To: Sun Jan 18 16:59:59 MST 2015]
    Issuer: OU=Class 3 Public Primary Certification Authority, O="VeriSign, Inc.", C=US
    SerialNumber: [    75337d9a b0e1233b ae2d7de4 469162d4]
    <RESPONSE><STATUS CODE="202"><MESSAGE></MESSAGE></STATUS><REQUEST_DATA><REGISTRATION_CIPHER VALUE="09944570f33deb38b7f170e09875db7e6ceb032d7b721409201e9990f06403478f4ebc88b080ac6b391b466b13abdd11056e5fc1ede4a4c3c45e377689daa321118296752b3efe0d9deaa9fc7150a1c7e6aeb26df38f35ccc96e8cb4cda148049e8b439f58c3c14fcfbc9067f2f81761803554fe79f9a7dbd2b3f79c0a040b19d941d6ab436bf2d016c36531486aa47ce430024bb51e6adfd3a82d9b8b0672935259764208f28ae626f5ab79efad45b11b058c872d6f69e328068957b6c545dea09ebcff54f920e5d0758ce0546352d03b426b7384058a0178599692be48753d7b4cfc1b98b80e68b9b3a93200679e62d62f8a837e45af992651e2eba1906ae5e892761e7005cb75b72e4d5e1a12810a5b61c6a4a670062b6f5af633f2742e93f04030552cbef91de925e8e81b2117922f4b72be9fa495bee4cc230357207fb6ae6ad77bb87f3d5d13d5f5dcd1b219adc857fc09f5d5a448aa2c79723a642d0a1839ac3a12b71159dd0ca1dc36a8eb46a7fb8ca05d86ede61b0f75640ff183efe1faf317202604f928137f7c4b58d9d8c02eb1d5997df2d6"/></REQUEST_DATA></RESPONSE>
    [2010-05-09T06:55:22.359-06:00] [EPMCFG] [WARNING] [EPMCFG-01001] [oracle.EPMCFG] [tid: 27] [ecid: 0000IXx8^W937E65zNd9iW1BtexF00000G,0] [SRC_CLASS: com.hyperion.hit.fusion.FusionComponent] trace: The component type 'Foundation' is not supported. Valid component types are: [OCM, OHS, WebCache]
    [2010-05-09T06:55:33.954-06:00] [EPMCFG] [ERROR] [EPMCFG-01001] [oracle.EPMCFG] [tid: 27] [ecid: 0000IXx8^W937E65zNd9iW1BtexF00000G,0] [SRC_CLASS: com.hyperion.config.document.Storage] trace: com.hyperion.hit.registry.exceptions.RegistryException: Unable to create registry.
    [2010-05-09T06:55:33.954-06:00] [EPMCFG] [TRACE] [EPMCFG-02015] [oracle.EPMCFG] [tid: 27] [ecid: 0000IXx8^W937E65zNd9iW1BtexF00000G,0] [SRC_CLASS: com.hyperion.config.wizard.impl.RunAllTasks] Creating product component(s) in the HIT Registry (if not created yet) for all selected product(s)...
    [2010-05-09T06:55:33.954-06:00] [EPMCFG] [TRACE] [EPMCFG-01321] [oracle.EPMCFG] [tid: 27] [ecid: 0000IXx8^W937E65zNd9iW1BtexF00000G,0] [SRC_CLASS: com.hyperion.cis.config.ConfigRegistryUtils] Creating product component: component type = SHARED_SERVICES_PRODUCT
    [2010-05-09T06:55:33.954-06:00] [EPMCFG] [TRACE] [EPMCFG-01322] [oracle.EPMCFG] [tid: 27] [ecid: 0000IXx8^W937E65zNd9iW1BtexF00000G,0] [SRC_CLASS: com.hyperion.cis.config.ConfigRegistryUtils] Product component already exists in the registry: component type = SHARED_SERVICES_PRODUCT
    [2010-05-09T06:55:33.954-06:00] [EPMCFG] [TRACE] [EPMCFG-01321] [oracle.EPMCFG] [tid: 27] [ecid: 0000IXx8^W937E65zNd9iW1BtexF00000G,0] [SRC_CLASS: com.hyperion.cis.config.ConfigRegistryUtils] Creating product component: component type = WORKSPACE
    [2010-05-09T06:55:42.970-06:00] [EPMCFG] [TRACE] [EPMCFG-05955] [oracle.EPMCFG] [tid: 27] [ecid: 0000IXx8^W937E65zNd9iW1BtexF00000G,0] [SRC_CLASS: com.hyperion.config.document.Storage] Setting link. Parent: id [b57bd794d9cd2537337158c31287d1efc497ffe], componnet type [FOUNDATION_SERVICES_PRODUCT]. Child: id [b57bd794d9cd2537337158c31287d1efc497ff1], component type [WORKSPACE]
    [2010-05-09T06:55:42.970-06:00] [EPMCFG] [TRACE] [EPMCFG-02144] [oracle.EPMCFG] [tid: 27] [ecid: 0000IXx8^W937E65zNd9iW1BtexF00000G,0] [SRC_CLASS: com.hyperion.config.document.Storage] Storage storeComponent trace : WORKSPACE:[b57bd794d9cd2537337158c31287d1efc497ff1] to be stored
    [2010-05-09T06:55:42.970-06:00] [EPMCFG] [TRACE] [EPMCFG-02144] [oracle.EPMCFG] [tid: 27] [ecid: 0000IXx8^W937E65zNd9iW1BtexF00000G,0] [SRC_CLASS: com.hyperion.config.document.Storage] Storage storeComponent trace : allRegistryComponents contains WORKSPACE:[b57bd794d9cd2537337158c31287d1efc497ff1]
    [2010-05-09T06:55:42.970-06:00] [EPMCFG] [TRACE] [EPMCFG-02144] [oracle.EPMCFG] [tid: 27] [ecid: 0000IXx8^W937E65zNd9iW1BtexF00000G,0] [SRC_CLASS: com.hyperion.config.document.Storage] Storage storeComponent trace : toUpdateComponents did not contain WORKSPACE:[b57bd794d9cd2537337158c31287d1efc497ff1]. It has been added to toUpdateComponents
    [2010-05-09T06:55:42.970-06:00] [EPMCFG] [TRACE] [EPMCFG-01426] [oracle.EPMCFG] [tid: 27] [ecid: 0000IXx8^W937E65zNd9iW1BtexF00000G,0] [SRC_CLASS: com.hyperion.cis.ant.AbstractAntConfigurator] propertiesExtractLocation : C:\Oracle\Middleware\user_projects\domains\EPMSystem\scripts
    [2010-05-09T06:55:47.986-06:00] [EPMCFG] [ERROR] [EPMCFG-01001] [oracle.EPMCFG] [tid: 27] [ecid: 0000IXx8^W937E65zNd9iW1BtexF00000G,0] [SRC_CLASS: com.hyperion.cis.utils.Shortcut] trace: shortcut out:Microsoft (R) Windows Script Host Version 5.7[[
    Copyright (C) Microsoft Corporation. All rights reserved.
    [2010-05-09T06:55:58.627-06:00] [EPMCFG] [ERROR] [EPMCFG-02151] [oracle.EPMCFG] [tid: 27] [ecid: 0000IXx8^W937E65zNd9iW1BtexF00000G,0] [SRC_CLASS: com.hyperion.hit.fusion.FusionComponent] oracleComponent is null. Component will not be provisioned.
    [2010-05-09T06:56:02.690-06:00] [EPMCFG] [WARNING] [EPMCFG-01113] [oracle.EPMCFG] [tid: 27] [ecid: 0000IXx8^W937E65zNd9iW1BtexF00000G,0] [SRC_CLASS: com.hyperion.cis.config.AbstractProductDBConfigurator] Couldn't find product component in updateRegistryEntries
    [2010-05-09T06:56:02.706-06:00] [EPMCFG] [NOTIFICATION] [EPMCFG-01107] [oracle.EPMCFG] [tid: 27] [ecid: 0000IXx8^W937E65zNd9iW1BtexF00000G,0] [SRC_CLASS: com.hyperion.cis.DBConfigurator] Running file: C:\Oracle\Middleware\EPMSystem11R1\products\Foundation\workspace\database\Oracle\create.sql
    [2010-05-09T06:56:03.503-06:00] [EPMCFG] [ERROR] [EPMCFG-01020] [oracle.EPMCFG] [tid: 27] [ecid: 0000IXx8^W937E65zNd9iW1BtexF00000G,0] [SRC_CLASS: com.hyperion.config.wizard.impl.RunAllTasks] Error: [[
    java.lang.NullPointerException
         at com.hyperion.cis.config.AppServerDeployer.isDeployAsWinService(AppServerDeployer.java:1699)
         at com.hyperion.cis.config.AppServerDeployer.initializeParameters(AppServerDeployer.java:169)
         at com.hyperion.config.wizard.impl.RunAllTasks.executeAppDeploymentTask(RunAllTasks.java:636)
         at com.hyperion.config.wizard.impl.RunAllTasks.execute(RunAllTasks.java:331)
         at com.hyperion.config.wizard.impl.RunnAllTasksState.run(RunnAllTasksState.java:89)
         at java.lang.Thread.run(Thread.java:619)
    [2010-05-09T06:57:03.804-06:00] [EPMCFG] [ERROR] [EPMCFG-01020] [oracle.EPMCFG] [tid: 27] [ecid: 0000IXx8^W937E65zNd9iW1BtexF00000G,0] [SRC_CLASS: com.hyperion.foundation.config.OCMTaskProcessor] Error: [[
    java.lang.NullPointerException
         at com.hyperion.foundation.config.OCMTaskProcessor.uploadOCMConfigurationToRegistry(OCMTaskProcessor.java:209)
         at com.hyperion.foundation.config.OCMTaskProcessor.execute(OCMTaskProcessor.java:95)
         at com.hyperion.cis.CustomTaskProcessor.execute(CustomTaskProcessor.java:94)
         at com.hyperion.config.wizard.impl.RunAllTasks.executeCustomTask(RunAllTasks.java:725)
         at com.hyperion.config.wizard.impl.RunAllTasks.execute(RunAllTasks.java:313)
         at com.hyperion.config.wizard.impl.RunnAllTasksState.run(RunnAllTasksState.java:89)
         at java.lang.Thread.run(Thread.java:619)
    [2010-05-09T06:57:07.992-06:00] [EPMCFG] [ERROR] [EPMCFG-02151] [oracle.EPMCFG] [tid: 27] [ecid: 0000IXx8^W937E65zNd9iW1BtexF00000G,0] [SRC_CLASS: com.hyperion.hit.fusion.FusionComponent] oracleComponent is null. Component will not be provisioned.
    [2010-05-09T06:57:07.992-06:00] [EPMCFG] [TRACE] [EPMCFG-01001] [oracle.EPMCFG] [tid: 27] [ecid: 0000IXx8^W937E65zNd9iW1BtexF00000G,0] [SRC_CLASS: com.hyperion.config.wizard.impl.RunAllTasks] trace: Component provisioning is done.
    [2010-05-09T06:57:07.992-06:00] [EPMCFG] [TRACE] [EPMCFG-01001] [oracle.EPMCFG] [tid: 27] [ecid: 0000IXx8^W937E65zNd9iW1BtexF00000G,0] [SRC_CLASS: com.hyperion.config.wizard.impl.RunAllTasks] trace: Done sorting tasks by priority
    [2010-05-09T06:57:07.992-06:00] [EPMCFG] [TRACE] [EPMCFG-07326] [oracle.EPMCFG] [tid: 27] [ecid: 0000IXx8^W937E65zNd9iW1BtexF00000G,0] [SRC_CLASS: com.hyperion.config.wizard.impl.RunAllTasks] Executing deployment task for ProductDescriptor [workspace]
    [2010-05-09T06:57:07.992-06:00] [EPMCFG] [TRACE] [EPMCFG-01328] [oracle.EPMCFG] [tid: 27] [ecid: 0000IXx8^W937E65zNd9iW1BtexF00000G,0] [SRC_CLASS: com.hyperion.cis.config.ConfigRegistryUtils] Looking for product component in the registry: component type = SHARED_SERVICES_PRODUCT
    [2010-05-09T06:57:08.007-06:00] [EPMCFG] [ERROR] [EPMCFG-01020] [oracle.EPMCFG] [tid: 27] [ecid: 0000IXx8^W937E65zNd9iW1BtexF00000G,0] [SRC_CLASS: com.hyperion.config.wizard.impl.RunAllTasks] Error: [[
    java.lang.NullPointerException
         at com.hyperion.cis.config.AppServerDeployer.isDeployAsWinService(AppServerDeployer.java:1699)
         at com.hyperion.cis.config.AppServerDeployer.initializeParameters(AppServerDeployer.java:169)
         at com.hyperion.config.wizard.impl.RunAllTasks.executeAppDeploymentTask(RunAllTasks.java:636)
         at com.hyperion.config.wizard.impl.RunAllTasks.execute(RunAllTasks.java:331)
         at com.hyperion.config.wizard.impl.RunnAllTasksState.run(RunnAllTasksState.java:89)
         at java.lang.Thread.run(Thread.java:619)
    Registry.log:
    [2010-05-09T06:51:46.860-06:00] [EPMREG] [NOTIFICATION] [EPMREG-51096] [oracle.EPMREG.REG] [tid: 14] [ecid: 0000IXx7j^D37E65zNd9iW1BtexF000005,0] [SRC_CLASS: com.hyperion.hit.registry.RegistryUtils] [SRC_METHOD: readDatabaseProperties] Security Key could not be read from reg.properties file.
    [2010-05-09T06:55:33.719-06:00] [EPMREG] [ERROR] [EPMREG-11054] [oracle.EPMREG.REG] [tid: 27] [ecid: 0000IXx8^W937E65zNd9iW1BtexF00000G,0] [SRC_CLASS: com.hyperion.hit.registry.RegistryConnection] [SRC_METHOD: createRegistry] [arg: C:\Oracle\Middleware\EPMSystem11R1\common\config\11.1.2.0\resources\registry\create_oracle.sql] An SQL Exception executing the registry DDL script C:\Oracle\Middleware\EPMSystem11R1\common\config\11.1.2.0\resources\registry\create_oracle.sql.
    [2010-05-09T06:55:33.735-06:00] [EPMREG] [ERROR] [EPMREG-11099] [oracle.EPMREG.REG] [tid: 27] [ecid: 0000IXx8^W937E65zNd9iW1BtexF00000G,0] [SRC_CLASS: com.hyperion.hit.registry.RegistryConnection] [SRC_METHOD: createRegistry] Exception occurred.[[
    java.sql.SQLSyntaxErrorException: ORA-00917: missing comma
         at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:91)
         at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:133)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:206)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:455)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:413)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1035)
         at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:183)
         at oracle.jdbc.driver.T4CStatement.executeForRows(T4CStatement.java:942)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1223)
         at oracle.jdbc.driver.OracleStatement.executeInternal(OracleStatement.java:1775)
         at oracle.jdbc.driver.OracleStatement.execute(OracleStatement.java:1744)
         at oracle.jdbc.driver.OracleStatementWrapper.execute(OracleStatementWrapper.java:299)
         at com.hyperion.hit.registry.RegistryConnection.createRegistry(RegistryConnection.java:241)
         at com.hyperion.hit.registry.RegistryUtils.initRegistry(RegistryUtils.java:82)
         at com.hyperion.hit.registry.Registry.createRegistry(Registry.java:2220)
         at com.hyperion.config.document.Storage.createRegProperties(Storage.java:1396)
         at com.hyperion.config.wizard.impl.RunAllTasks.execute(RunAllTasks.java:105)
         at com.hyperion.config.wizard.impl.RunnAllTasksState.run(RunnAllTasksState.java:89)
         at java.lang.Thread.run(Thread.java:619)
    [2010-05-09T06:56:03.456-06:00] [EPMREG] [ERROR] [EPMREG-11037] [oracle.EPMREG.REG] [tid: 27] [ecid: 0000IXx8^W937E65zNd9iW1BtexF00000G,0] [SRC_CLASS: com.hyperion.hit.registry.Registry] [SRC_METHOD: getConnection] An error occured when checking the status of the registry connection and reseting it.[[
    com.hyperion.hit.registry.exceptions.RegistryException: No database properties could be read
         at com.hyperion.hit.registry.datasource.SharedServicesDataSourceFactory.getDataSource(SharedServicesDataSourceFactory.java:29)
         at com.hyperion.hit.registry.datasource.SharedServicesDatabaseConnectionBuilder.getConnection(SharedServicesDatabaseConnectionBuilder.java:26)
         at com.hyperion.hit.registry.RegistryUtils.createNewConnection(RegistryUtils.java:183)
         at com.hyperion.hit.registry.Registry.getConnection(Registry.java:161)
         at com.hyperion.hit.registry.Registry.lookupComponents(Registry.java:1263)
         at com.hyperion.hit.registry.Registry.lookup(Registry.java:517)
         at com.hyperion.css.registry.RegistryManager.<init>(RegistryManager.java:70)
         at com.hyperion.css.registry.RegistryManager.populateCSSTrustedServicesKey(RegistryManager.java:140)
         at com.hyperion.foundation.config.FoundationDbConfigurator.populateCssTrustedKey(FoundationDbConfigurator.java:121)
         at com.hyperion.foundation.config.FoundationDbConfigurator.configure(FoundationDbConfigurator.java:88)
         at com.hyperion.config.wizard.impl.RunAllTasks.executeDbConfigTask(RunAllTasks.java:753)
         at com.hyperion.config.wizard.impl.RunAllTasks.execute(RunAllTasks.java:322)
         at com.hyperion.config.wizard.impl.RunnAllTasksState.run(RunnAllTasksState.java:89)
         at java.lang.Thread.run(Thread.java:619)
    [2010-05-09T06:56:03.456-06:00] [EPMREG] [ERROR] [EPMREG-11045] [oracle.EPMREG.REG] [tid: 27] [ecid: 0000IXx8^W937E65zNd9iW1BtexF00000G,0] [SRC_CLASS: com.hyperion.hit.registry.Registry] [SRC_METHOD: lookupComponents] [arg: SYSTEM9] An exception when looking up components of type SYSTEM9 matching the specified properties.
    [2010-05-09T06:56:03.456-06:00] [EPMREG] [ERROR] [EPMREG-11099] [oracle.EPMREG.REG] [tid: 27] [ecid: 0000IXx8^W937E65zNd9iW1BtexF00000G,0] [SRC_CLASS: com.hyperion.hit.registry.Registry] [SRC_METHOD: lookupComponents] Exception occurred.[[
    com.hyperion.hit.registry.exceptions.RegistryException: com.hyperion.hit.registry.exceptions.RegistryException: No database properties could be read
         at com.hyperion.hit.registry.Registry.getConnection(Registry.java:178)
         at com.hyperion.hit.registry.Registry.lookupComponents(Registry.java:1263)
         at com.hyperion.hit.registry.Registry.lookup(Registry.java:517)
         at com.hyperion.css.registry.RegistryManager.<init>(RegistryManager.java:70)
         at com.hyperion.css.registry.RegistryManager.populateCSSTrustedServicesKey(RegistryManager.java:140)
         at com.hyperion.foundation.config.FoundationDbConfigurator.populateCssTrustedKey(FoundationDbConfigurator.java:121)
         at com.hyperion.foundation.config.FoundationDbConfigurator.configure(FoundationDbConfigurator.java:88)
         at com.hyperion.config.wizard.impl.RunAllTasks.executeDbConfigTask(RunAllTasks.java:753)
         at com.hyperion.config.wizard.impl.RunAllTasks.execute(RunAllTasks.java:322)
         at com.hyperion.config.wizard.impl.RunnAllTasksState.run(RunnAllTasksState.java:89)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: com.hyperion.hit.registry.exceptions.RegistryException: No database properties could be read
         at com.hyperion.hit.registry.datasource.SharedServicesDataSourceFactory.getDataSource(SharedServicesDataSourceFactory.java:29)
         at com.hyperion.hit.registry.datasource.SharedServicesDatabaseConnectionBuilder.getConnection(SharedServicesDatabaseConnectionBuilder.java:26)
         at com.hyperion.hit.registry.RegistryUtils.createNewConnection(RegistryUtils.java:183)
         at com.hyperion.hit.registry.Registry.getConnection(Registry.java:161)
         ... 10 more

    Yes. I downloaded and extracted the additional components. I have also dropped and recreated the HSS repository. Each time I have tried to reinstall, I have uninstalled all EPM/Oracle components, removed registry keys, removed EPM environment variables and removed references to oracle in the PATH environment variable.
    I have tried installing/configuring HSS 11.1.2 on both Windows 2008 SP1 64-bit and Windows 2008 SP1 32-bit. The configuration error is the same.
    I was able to get my SR reassigned to a different support analyst, and we are working on troubleshooting now.
    If you can think of anything else to try, let me know.
    BTW...on the 32-bit server, the page file maximum is 16GB (should be enough)?
    Thanks.

  • Trouble with inserting a string containing a single quote

    Using php with Oracle
    If I do the following two lines before sending my $Query string through the parse function
    $name = "Dominick's";
    $Query = "INSERT INTO customers (name) values ('$name')";
    it gives me the following error:
    Warning: Ora_Parse failed (ORA-00917: missing comma -- while processing OCI function OPARSE)
    If I try and force the single quote to be surrounded by double quotes and therefore not be confused:
    $name = "Dominick's";
    Query = "INSERT INTO customers (name) values (\"$name\")";
    Trying that yields the following error:
    Warning: Ora_Parse failed (ORA-01741: illegal zero-length identifier -- while processing OCI function OPARSE)
    Help
    Jeff

    If it is possible (and here it is) you should use str_replace instead of ereg_replaceThanks for the reminder about str_replace().
    $Query = "INSERT INTO customers (name) values ('".addSlashes($name)."')";This gives an invalid Oracle SQL statement, which will generally fail with
      ORA-01756: quoted string not properly terminatedFor Oracle, single quotes must be doubled, not escaped with backslash.
    Of the solutions to insert the data, I'd prefer using bind variables
    since no escaping or quote doubling is needed.
    -- CJ

  • Blocking Locks

    Oracle 9.2.0.8
    Our database is used as backend for IIS Servers. Several times per week we experience Blocking locks situation when we could have around 300 – 400 session waiting. Most time when somebody fire up some Update or Delete process. Every time when I check dba_waiters table during this it gives me 10 – 20 holding session. After killing them all things go back to normal.
    My question how do I know which one out of this 10 – 20 session is first or real offender. The reason I asked that sometimes after checking SQL’s from several holding sessions they different. And I am not sure which one is the real issue. If I could find this I would be able to go back to developers and see if they missed commit or something in code.

    You can use DBA_BLOCKERS and DBA_WAITERS to generate a hierarchy-- the session at the top of the hierarchy is the real offender (assuming, of course, that the locking is not intentional).
    In DBA_WAITERS, you'll see a WAITING_SESSION and a HOLDING_SESSION. If you see entries indicating that A is waiting for B, B is waiting for C, and C is waiting for D, you see that there is a hierarchy of locks. Session D in this case is the ultimate culprit (it is blocking a session and it is not blocked by any other session). Of course, in reality, there may be multiple culprit sessions. And you'd want to run the query a couple of times to make sure that what you're seeing is consistent-- if the blockers and waiters change regularly, that's a very different situation than if things are stuck because one session has gone out to lunch.
    Justin

Maybe you are looking for

  • Suggestion and a question about iCloud

    My suggestion; I have already experienced confusion in recipents of my e-mails when Apple changed my mac account to mobileme and they started to receive mail from me.com rather than mac.com. I added the following message to my signatures NOTE: My e-m

  • Apple iOS App Store submission Errors

    I am getting several errors during submission. 1) I'm using the "correct" version of the Adobe AIR 4.0 compiler downloaded from http://labsdownload.adobe.com/pub/labs/flashruntimes/air/air4-0_sdk_win.zip as noted here: http://forums.adobe.com/message

  • When trying to send a comment to a web site I get a message, Firefox has blocked this site, how can I turn this off?

    when trying to send a comment to discussion sites I get an error message that says "Firefox has blocked this site" actions offered "allow" or "X". When I enter "allow" it ignores the command and the message disappears. A lot of wasted thought and typ

  • Is the extra VRAM worth it?

    I'm looking at getting a 20" iMac Intel Core Duo, and I'm wondering if it's really worth it to get 256MB of VRAM instead of the stock 128MB? Where would the extra VRAM get used? (ie. Will iPhoto or iMovie run faster?) My current PowerBook G4 has 64MB

  • How to omprove performance my program?

    Procedure xyz() Cursor C1 Very largequery handling some bulk data. Cursor C2 Very largequery handling some bulk data. Cursor C3 Very largequery handling some bulk data. Cursor C4 Very largequery handling some bulk data. Cursor C5 Very largequery hand