Compliling error

ALTER PROCEDURE SP_MM_REVERSE_UPLD COMPILE;
Error starting at line 50 in command:
ALTER PROCEDURE SP_MM_REVERSE_UPLD COMPILE
Error report:
SQL Error: ORA-00604: error occurred at recursive SQL level 1
ORA-01653: unable to extend table SYS.PLSCOPE_ACTION$ by 1024 in tablespace SYSAUX
00604. 00000 -  "error occurred at recursive SQL level %s"
*Cause:    An error occurred while processing a recursive SQL statement
           (a statement applying to internal dictionary tables).
*Action:   If the situation described in the next error on the stack
           can be corrected, do so; otherwise contact Oracle Support.
i am above error while i am compiling the above statement.
I am not getting any error while i am open the procedure edit and compile.
what is difference.

The SYSAUX tablespace is used for auxiliary data structures (tables and indexes) for the database - the SYSTEM tablespace is used for the primary data structures (e.g. data dictionary).
SYSAUX is for example used for storing performance statistics. As data is continually collected, the SYSAUX tablespace is usually running close to capacity. There are system processes that will automatically clear old data from the tablespace to increase free space.
However, compiling PL/SQL code where the compiler/parser uses SYSAUX for storing debugging symbols and the like, will not (AFAIK) trigger a cleanup to free some space when SYSAUX free space is exhausted.
So you need to request the DBA to free up SYSAUX space, or allocate some more free space. Alternatively, you need to compile PL/SQL code without the compiler having to store debug data in SYSAUX.

Similar Messages

  • Complilation error

    dear sir,
    My java software gives complilation error for some String classes and for StringTokenizer() , even though the same program works well in other pc's.
    it gives an so called error as incompatable types. here the copy of one such error
    DemoVinay.java:15: incompatible types
    found : java.lang.String
    required: String
    str=br.readLine();
    ^
    kindly consider my request and send me the alternative.
    vinay gadiraju

    It seems you have created a String class of your own, why did you do that?
    The problem is that br.readLine() returns an instance of the standard String class, "java.lang.String," but you are trying to assign the value to a variable that has been declared as your own "String." Since your own "String" class and the standard "java.lang.String" classes are not compatible, you can't make this assignment.

  • PL/SQL Procedure Complilation Error

    Can any one advise on the following PL/SQL Compilation errors I am receiving:<br><br>
    LINE/COL ERROR<br>
    -------- -----------------------------------------------------------------<br>
    22/1 PL/SQL: SQL Statement ignored<br>
    24/51 PL/SQL: ORA-00942: table or view does not exist<br>
    32/1 PL/SQL: SQL Statement ignored<br>
    34/30 PL/SQL: ORA-00942: table or view does not exist<br>
    40/1 PL/SQL: SQL Statement ignored<br>
    42/6 PL/SQL: ORA-00942: table or view does not exist<br><br>
    I know the tables exists and if I run the SELECT statements through SQLPLUS (without the INTO statements) they return the values as expected.<br><br>
    Procedure as below:<br><br>
    SQL> CREATE OR REPLACE PROCEDURE BS_TDF_EXTRACT AS<br>
    2 <br>
    3 v_file UTL_FILE.FILE_TYPE;<br>
    4 <br>
    5 EXTRACT_YEAR number;<br>
    6 <br>
    7 --Indicator 23 autogeneration<br>
    8 Q1_VALUE_23 number;<br>
    9 Q1_VALUE_23_PASSED_TOTAL number;<br>
    10 Q1_VALUE_23_FAILED_TOTAL number;<br>
    11 Q1_VALUE_23_TOTAL_JOBS number;<br>
    12 <br>
    13 <br>
    14 BEGIN<br>
    15 <br>
    16 --Initialise current Extract Year<br>
    17 SELECT EXTRACT(YEAR FROM SYSDATE) <br>
    18 INTO EXTRACT_YEAR<br>
    19 FROM DUAL;<br>
    20 <br>
    21 --Initialise PASSED TOTAL<br>
    22 SELECT COUNT(*) <br>
    23 INTO Q1_VALUE_23_PASSED_TOTAL<br>
    24 FROM REP_POSTINSP_OUT_GU A1, REP_JOB_INVOICED A2, REP_JOB_INDICATORS A3<br>
    25 WHERE UPPER(A1.POSTINSP_SUCC_IND) = 'P' <br>
    26 AND A1.JOB_NUMBER = A2.JOB_NUMBER<br>
    27 AND A2.JOB_NUMBER = A3.JOB_NUMBER<br>
    28 AND A2.COMPLETION_DATE BETWEEN TO_DATE('01-APR-2006') AND TO_DATE('30-JUN-2006') <br>
    29 AND A3.POST_INSPECTION_NOT_DONE IS NULL;<br>
    30 <br>
    31 --Initialise FAILED TOTAL<br>
    32 SELECT COUNT(*) <br>
    33 INTO Q1_VALUE_23_FAILED_TOTAL<br>
    34 FROM REP_POSTINSP_OUT_GU A1, REP_JOB_INVOICED A2<br>
    35 WHERE UPPER(A1.POSTINSP_SUCC_IND) = 'F' <br>
    36 AND A1.JOB_NUMBER = A2.JOB_NUMBER <br>
    37 AND A2.COMPLETION_DATE BETWEEN TO_DATE('01-APR-2006') AND TO_DATE('30-JUN-2006');<br>
    38 <br>
    39 --Initialise TOTAL JOBS<br>
    40 SELECT COUNT(DISTINCT JOB_NUMBER)<br>
    41 INTO Q1_VALUE_23_TOTAL_JOBS<br>
    42 FROM REP_JOB_INVOICED;<br>
    43 <br>
    44 --Initialise Indicator Value<br>
    45 Q1_VALUE_23:= (Q1_VALUE_23_PASSED_TOTAL + Q1_VALUE_23_FAILED_TOTAL)/Q1_VALUE_23_TOTAL_JOBS;<br>
    46 <br>
    47 v_file := UTL_FILE.FOPEN(location => '/tmp',<br>
    48 filename => 'bs_imported_values.txt',<br>
    49 open_mode => 'W',<br>
    50 max_linesize => 32767);<br>
    51 <br>
    52 UTL_FILE.PUT_LINE(v_file, 'Q1' || EXTRACT_YEAR || '23' || Q1_VALUE_23 || '\r\n');<br>
    53 <br>
    54 UTL_FILE.FCLOSE(v_file);<br>
    55 <br>
    56 END BS_TDF_EXTRACT;<br>
    57 /<br><br>
    Warning: Procedure created with compilation errors.<br><br>
    SQL> show errors;<br>
    Errors for PROCEDURE BS_TDF_EXTRACT:<br><br>
    LINE/COL ERROR<br>
    <br>22/1 PL/SQL: SQL Statement ignored<br>
    24/51 PL/SQL: ORA-00942: table or view does not exist<br>
    32/1 PL/SQL: SQL Statement ignored<br>
    34/30 PL/SQL: ORA-00942: table or view does not exist<br>
    40/1 PL/SQL: SQL Statement ignored<br>
    42/6 PL/SQL: ORA-00942: table or view does not exist<br>

    go to sql prompt and look for desc of these and if they are not available get permissions,DB link what ever may be required to access it can be the only possibility REP_POSTINSP_OUT_GU A1, REP_JOB_INVOICED A2, REP_JOB_INDICATORS A3

  • Servlet Complile Error (DataException)

    I have set class paths to servlet-api.jar but am recieving an error when trying to compile my servlet
    catch (DataException unexpected) -- cannot find symbol
    It is taking exception to the DataException class.My research on this class has proved fruitless. I am NOT recieving "package.http servlet does not exist" message so this is not case of jar files not available.Can anyone help? Feedback appreciated :)

    these are my declarations
    package com.football;
    import java.io.IOException;
    import java.sql.SQLException;
    import java.util.List;
    import javax.naming.NamingException;
    import javax.servlet.RequestDispatcher;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    I know this is a case of me not importing something but i dont know what.Please help!!

  • Error in compiling Flex fields

    Hi,
    I am facing flex field complilation errors.
    Deleting existing compiled flexfield information.
    Compiling all application flexfields.
    /backup/backups/db/SILP15/apps/apps_st/appl/fnd/12.0.0/bin/fdfcmp APPS/***** 0 Y
    An error occurred while compiling application flexfields.
    Continue as if it were successful [No] :
    Backing up restart files, if any......Done.
    You should check the file
    /backup/backups/db/SILP15/apps/apps_st/appl/admin/SILP15/log/adadmin.log
    for errors.
    [oracle@erpapps bin]$
    Application Id: 702
    Short Name: BOM
    Name: Bills of Material
    Flexfield Name: $SRS$.CSTJELINESRPT
    Title: $SRS$.CSTJELINESRPT
    Compilation aborted for current descriptive flexfield...
    APP-FND-00798: Invalid reference XLA_SRS_SUBLEDGERS in value set attached to segment Ledger/Ledger Set
    Please check the WHERE clauses of your table validated value sets.
    Continuing...
    Application Id: 7003
    Short Name: JG
    Name: Regional Localizations
    Flexfield Name: $SRS$.JGSLADJNL
    Title: $SRS$.JGSLADJNL
    Compilation aborted for current descriptive flexfield...
    APP-FND-00798: Invalid reference XLA_SRS_SUBLEDGERS in value set attached to segment Journal Entry Source
    Please check the WHERE clauses of your table validated value sets.
    Continuing...
    Application Id: 7003
    Short Name: JG
    Name: Regional Localizations
    Flexfield Name: $SRS$.JGSLAJNLLG
    Title: $SRS$.JGSLAJNLLG
    Compilation aborted for current descriptive flexfield...
    APP-FND-00798: Invalid reference XLA_SRS_SUBLEDGERS in value set attached to segment Journal Entry Source
    Please check the WHERE clauses of your table validated value sets.
    Continuing...
    Application Id: 7003
    Short Name: JG
    Name: Regional Localizations
    Flexfield Name: $SRS$.JGSLAJNLTP
    Title: $SRS$.JGSLAJNLTP
    Compilation aborted for current descriptive flexfield...
    APP-FND-00798: Invalid reference XLA_SRS_SUBLEDGERS in value set attached to segment Journal Entry Source
    Please check the WHERE clauses of your table validated value sets.
    Continuing...
    Application Id: 7003
    Short Name: JG
    Name: Regional Localizations
    Flexfield Name: $SRS$.JGSLASDJNL
    Title: $SRS$.JGSLASDJNL
    Compilation aborted for current descriptive flexfield...
    APP-FND-00798: Invalid reference XLA_SRS_SUBLEDGERS in value set attached to segment Journal Entry Source
    Please check the WHERE clauses of your table validated value sets.
    Continuing...
    Application Id: 7003
    Short Name: JG
    Name: Regional Localizations
    Flexfield Name: $SRS$.JGSLATPABL
    Title: $SRS$.JGSLATPABL
    Compilation aborted for current descriptive flexfield...
    APP-FND-00798: Invalid reference XLA_SRS_SUBLEDGERS in value set attached to segment Journal Entry Source
    Please check the WHERE clauses of your table validated value sets.
    Continuing...
    Application Id: 7003
    Short Name: JG
    Name: Regional Localizations
    Flexfield Name: $SRS$.JGSLATPDBL
    Title: $SRS$.JGSLATPDBL
    Compilation aborted for current descriptive flexfield...
    APP-FND-00798: Invalid reference XLA_SRS_SUBLEDGERS in value set attached to segment Journal Entry Source
    Please check the WHERE clauses of your table validated value sets.
    Continuing...
    Application Id: 7003
    Short Name: JG
    Name: Regional Localizations
    Flexfield Name: $SRS$.JGSLATPSBL
    Title: $SRS$.JGSLATPSBL
    Compilation aborted for current descriptive flexfield...
    APP-FND-00798: Invalid reference XLA_SRS_SUBLEDGERS in value set attached to segment Journal Entry Source
    Please check the WHERE clauses of your table validated value sets.
    Continuing...
    Flex compilation process complete ...
    =====================================
    Number of successful key flex compilations : 134
    Number of failed key flex compilations : 0
    Number of successful descriptive flex compilations : 8744
    Number of failed descriptive flex compilations : 8
    =====================================
    Tip: To find failed flexfield compilations, please search for following string in this log file:
    'Compilation aborted for current'
    Concurrent request completed
    Current system time is 04-MAR-2010 13:09:51
    thx
    Edited by: user12007410 on Mar 4, 2010 1:13 AM

    Hi Helios,
    We are using R12.0.6 and db is 10.2.0.3, Linux OS.
    I have checked this Doc ID, which contains following:(below is my checking please)
    Solution
    1. Follow the Note.877352.1 instructions carefully;
    2. Apply the patch 8626820:R12.JG.A;
    3. For packages OKL_... and ICX_ ... please now follow Note.754340.1;
    4. For the FV_... and FUN_.... please follow Note.758497.1;
    5. For the GR_MIGRATE_TO_12 now follow the Note.733646.1;
    (for note's step 5 about patch 6997324 open an SR with Support if you require a password)
    6. Finally, to drop the view called ICX_PO_VENDOR_SITES_V, just execute in a SQL*plus (user APPS) session: drop view ICX_PO_VENDOR_SITES_V;
    My Checking: (I have checked the file version mentioned in below patches also, having same versions of already applied patches)
    1: I have check the patch# 8348599 mentioned in 877352.1 not already applied, so should I apply it?
    2: I have check the patch# 8626820 mentioned in step#2 not already applied, so should I apply it?
    3: I have check the doc id 754340.1 which containg the following patches:
    - 7641584 -------> Already appled
    - 8201911 -------> Already Not appled ----------> Should apply this?
    - 7659470 -------> Already appled
    - 6708042 -------> Already appled
    - 7662017 -------> Already appled
    4: I have check the doc id 758497.1 which containg the following patches already appled:
    - 7376249 -------> Already appled
    - 7372270 -------> Already appled
    - 7372268 -------> Already appled
    5: I have check the patch# 6997324 mentioned in step#5 already applied.
    6: I have checked this view ( ICX_PO_VENDOR_SITES_V) is not exist. what should I do?
    Thanks,
    fazijee

  • Getting an error - group function not allowed here

    Below is the merge statement...
    getting an error - group function not allowed here
    WHY????
    merge into summary
    using
    (select
    a.user_id,
    min(a.start_time_utc),
    max(a.end_time_utc),
    sum(a.duration_seconds),
    /*total_upload
    total_download
    total_traffic,*/
    max(r.package_id),
    last_usage_charge, -------hard coded
    max(r.peak_rate),
    max(r.bst_plantype),
    max(r.free_value), ---for free value
    a.IsPeak,
    sum(a.TotalDiscount)
    from aaa_sessions a,rate_plan r,subscriber_info si
    where
    si.EXTERNAL_ID=a.USER_ID
    and
    si.PACKAGE_ID=r.PACKAGE_ID
    group by
    user_id,bst_plantype,ispeak)t ------do we need to use alias here
    on
    (summary.user_id=t.user_id
    and
    summary.type_of_summary=t.bst_plantype
    and
    summary.ispeak=t.ispeak)
    When matched then
    update
    set
    start_date =decode((t.start_time_utc-summary.start_date)-abs(t.start_time_utc-summary.start_date),0,summary.start_date,t.start_time_utc),
    end_date=decode((t.end_time_utc-summary.end_date)-abs(t.end_time_utc-summary.end_date),0,t.end_time_utc,s.end_date),
    total_duration=summary.total_duration+sum(duration_seconds),
    total_upload=summary.total_upload+sum(upload_bytes),
    total_download=summary.total_download+sum(download_bytes),
    total_traffic=summary.total_upload+sum(upload_bytes)+summary.total_download+sum(download_bytes)
    When not matched then
    INSERT
    (user_id ,
    start_date,
    end_date,
    total_duration,
    /*total_upload
    total_download
    total_traffic,*/
    rate_plan_id,
    last_usage_charge,
    peak_rate,
    type_of_summary,
    IsPeak,
    TotalDiscount)
    VALUES
    (t.user_id,
    t.start_time_utc,
    t.end_time_utc,
    t.duration_seconds,
    /*t.output_bytes,
    t.input_bytes,
    t.output_bytes+aa.input_bytes,*/
    t.PACKAGE_ID,
    1, ---hard coded the value
    t.PEAK_RATE,
    t.BST_PLANTYPE,
    t.ispeak,
    t.free_value);

    This is the query,...
    Its giving no complilation errors..
    I have not used aggregate functions in the insert/update..
    have used only decode...
    and nowhere i found that aggegate functions not allowed in the insert/update stmts of merge..
    Can u please post a link where it is mentioned...
    MERGE INTO summary
    USING (SELECT a.user_id, MIN (a.start_time_utc) stc,
    MAX (a.end_time_utc) etc, SUM (a.duration_seconds) ds,
    SUM (a.download_bytes) download,
    SUM (a.upload_bytes) upload, MAX (r.package_id) pkg_id,
    MAX (r.peak_rate) p_rate, MAX (r.offpeak_rate)
    ofp_rate,
    MAX (r.bst_plantype) plan_type,
    SUM (r.free_value) free_val, a.ispeak,
    MAX (r.peak_pulse) p_pulse,
    MAX (r.offpeak_pulse) ofp_pulse
    FROM aaa_sessions a, rate_plan r, subscriber_info si
    WHERE si.external_id = a.user_id
    AND si.package_id = r.package_id
    GROUP BY user_id, bst_plantype, ispeak) t
    ON ( summary.user_id = t.user_id
    AND summary.type_of_summary = t.plan_type
    AND summary.rate_plan_id = t.pkg_id
    AND summary.ispeak = t.ispeak)
    WHEN MATCHED THEN
    UPDATE
    SET start_date =
    DECODE ( (t.stc - summary.start_date)
    - ABS (t.stc - summary.start_date),
    0, summary.start_date,
    t.stc
    end_date =
    DECODE ( (t.etc - summary.end_date)
    - ABS (t.etc - summary.end_date),
    0, t.etc,
    summary.end_date
    total_duration = summary.total_duration + t.ds,
    total_download = summary.total_download + t.download,
    total_upload = summary.total_upload + t.upload,
    total_traffic =
    summary.total_upload
    + t.upload
    + summary.total_download
    + t.download,
    last_usage_charge =
    DECODE (t.plan_type,
    0, (t.ds - t.free_val)
    / DECODE (t.ispeak, 0, t.ofp_pulse, p_pulse)
    * DECODE (t.ispeak, 0, t.ofp_rate, t.p_rate),
    ((t.download + t.upload) - t.free_val
    * DECODE (t.ispeak, 0, t.ofp_rate, t.p_rate)
    WHEN NOT MATCHED THEN
    INSERT (user_id, start_date, end_date, total_duration,
    total_download, total_upload, total_traffic, rate_plan_id,
    last_usage_charge, peak_rate, type_of_summary, ispeak,
    totaldiscount)
    VALUES (t.user_id, t.stc, t.etc, t.ds, t.download, t.upload,
    t.download + t.upload, t.pkg_id,
    DECODE (t.plan_type,
    0, (t.ds - t.free_val)
    / DECODE (t.ispeak, 0, t.ofp_pulse, p_pulse)
    * DECODE (t.ispeak, 0, t.ofp_rate, t.p_rate),
    ((t.download + t.upload) - t.free_val
    * DECODE (t.ispeak, 0, t.ofp_rate, t.p_rate)
    t.p_rate, t.plan_type, t.ispeak, t.free_val);
    COMMIT;

  • Error in Report Execution

    Hi
    I am getting an Error as '"ALPHA" and "IT-F2" are type-incompatible.'
    Can anyone solve it.
    Report abc.
    data: begin of it occurs 5,
             f1 like sy-index,
             f2,
          end of it,
          alpha(5) value 'ABCDE'.
          do 5 times varying it-f2 from alpha0 next alpha1.
          it-f1 = sy-index.
          append it.
          enddo.
          it-f2 = 'Z'.
          modify it index 4.
          loop at it.
          write: / it-f1, it-f2.
          endloop.
          loop at it.
            it-f1 = it-f1 * 2.
            modify it.
            endloop.
          skip.
          loop at it.
          write: / it-f1, it-f2.
          endloop.
          it-f2 = 'X'.
          modify it transporting f2 where f1 <> 10.
          skip.
          loop at it.
          write: / it-f1, it-f2.
          endloop.

    Hi,
    I too got complilation error when I ran your code.Now I modified the code and it is showing the output.Kindly reward points if it helps.
    data: begin of it occurs 5,
    f1 like sy-index,
    f2,
    end of it,
    alpha(5) value 'ABCDE'.
    <b>data i1 type i value 0.</b>
    <b>do 5 times.
    it-f2 = alpha+i1(1).
    it-f1 = sy-index.
    append it.
    i1 = i1 + 1.
    enddo.</b>
    it-f2 = 'Z'.
    modify it index 4.
    loop at it.
    write: / it-f1, it-f2.
    endloop.
    loop at it.
    it-f1 = it-f1 * 2.
    modify it.
    endloop.
    skip.
    loop at it.
    write: / it-f1, it-f2.
    endloop.
    it-f2 = 'X'.
    modify it transporting f2 where f1 <> 10.
    skip.
    loop at it.
    write: / it-f1, it-f2.
    endloop.

  • Linking and compiling error

    hello
    i am using SUN system for Synopsys System Studio...i got following linking/compliling errors ...
    there is a problem with __sun_concat and __sun_append...
    Anybody got idea how to fix this
    WARNING: The simulation directory '/home/dietterl/ccss/sim/Test_Light_1' already exists.
    Caution:
    If you continue, the content of the simulation directory will be deleted.
    All data from the old simulation will be lost! <gui_simcmd_wipeDir> [ok]
    Generating source code for model 'library_1/Test_Light'...
    INFORMATION: Implementing this or-model in dataflow form. <core_model_orAsDF>
    Location: /library_1:Test_Light:Test_Light_1/library_1:street_light:M1 :
    INFORMATION: Completed code generation for 'library_1/Test_Light' successfully. <status>
    Compiling simulation 'Test_Light_1:/home/dietterl/ccss/sim/Test_Light_1'...
    Executing: '$SYNOPSYS_CCSS/bin/gmake WORKSPACE=/home/dietterl/HardikKashif/project/example_OR'
    gmake[1]: Entering directory `/home/dietterl/ccss/sim/Test_Light_1'
    CC -features=tmplife -c -o lib-sparcOS5/Test_Light_1-u/Test_Light_1_mach.o -I. -I/system/synopsys2/W-2004.09/sparcOS5/ccss/include/ Test_Light_1_mach.cxx
    CC -features=tmplife -c -o lib-sparcOS5/Test_Light_1-u/Test_Light_1_funcs.o -I. -I/system/synopsys2/W-2004.09/sparcOS5/ccss/include/ Test_Light_1_funcs.cxx
    cc -c -o lib-sparcOS5/Test_Light_1-u/Test_Light_1_table.o -I. -I/system/synopsys2/W-2004.09/sparcOS5/ccss/include/ Test_Light_1_table.c
    CC -features=tmplife -c -o lib-sparcOS5/Test_Light_1-u/Test_Light_1_main.o -I. -I/system/synopsys2/W-2004.09/sparcOS5/ccss/include/ Test_Light_1_main.cxx
    CC -o bin-sparcOS5/Test_Light_1-u -L/system/synopsys2/W-2004.09/sparcOS5/ccss/lib -R/system/synopsys2/W-2004.09/sparcOS5/ccss/lib lib-sparcOS5/Test_Light_1-u/Test_Light_1_main.o lib-sparcOS5/Test_Light_1-u/Test_Light_1_mach.o lib-sparcOS5/Test_Light_1-u/Test_Light_1_funcs.o lib-sparcOS5/Test_Light_1-u/Test_Light_1_table.o -L/system/synopsys2/W-2004.09/sparcOS5/ccss/lib/ -ldataset-O -lcfh-O -lca-O -lcb-O -lma-O -lfa1-O -lfa2-O -lraw-O -lzlib-O -lcmisce-O -lmisce-O -lfil-O -lunix-O -lruntimelib-O -lm -lclm-O -ltcl-O -lsocket -lnsl -ldl -lintl -lfsu -lfui -lsunmath
    Undefined first referenced
    symbol in file
    std::basic_string<char,std::char_traits<char>,std::allocator<char> >&std::basic_string<char,std::char_traits<char>,std::allocator<char> >::__sun_append(const std::basic_string<char,std::char_traits<char>,std::allocator<char> >&) /system/synopsys2/W-2004.09/sparcOS5/ccss/lib/libruntimelib-O.a(EgString.o)
    std::basic_string<char,std::char_traits<char>,std::allocator<char> >std::basic_string<char,std::char_traits<char>,std::allocator<char> >::__sun_concat(const std::basic_string<char,std::char_traits<char>,std::allocator<char> >&)const /system/synopsys2/W-2004.09/sparcOS5/ccss/lib/libruntimelib-O.a(EgNetbatchSim.o)
    std::basic_string<char,std::char_traits<char>,std::allocator<char> >std::basic_string<char,std::char_traits<char>,std::allocator<char> >::__sun_concat(const char*)const /system/synopsys2/W-2004.09/sparcOS5/ccss/lib/libruntimelib-O.a(EgNetbatchSim.o)
    ld: fatal: Symbol referencing errors. No output written to bin-sparcOS5/Test_Light_1-u
    gmake[1]: *** [bin-sparcOS5/Test_Light_1-u] Error 1
    gmake[1]: Leaving directory `/home/dietterl/ccss/sim/Test_Light_1'
    gmake: *** [sim-unopt] Error 2
    Done. [Exit Code: 2]

    Hi,
    What compiler version are you using(Please use 'CC -V' to find it out)?
    Please try to install patch 108434(http://sunsolve.sun.com/pub-cgi/getpatch.pl) to see whether the problem goes away.
    Thanks.
    Rose

  • Very confusing compile error

    I have several classes under a certain package. In three of
    those classes I have some public vars of type Number. However, in
    one of the methods in a rather complex class I declare a local
    varable of type number and it has a complile error.
    So I tried to declare a member of the class of type Number
    with the same result. Why would this class not be able to find the
    Number class when others in the same package not have this issue?
    Very confusing

    Your JVM crashed when you compile your file. This is unusual.
    If your can reproduce this with a small test-case, I suggest you
    filke a bug here: http://bugs.sun.com/services/bugreport/index.jsp
    --Alexis                                                                                                                                                                                                                                                                                                                                                                                                                   

  • .dot Files and Adobe RoboHelp 9 for HTML

    I have a problem that I have been discussing with Adobe Technical Support for over a month now and I do not seem to be getting anywhere with them.
    The problem is this, I have a large help system that I have authored under RoboHelp 8 and Windows XP. In it I have 8 Single Source Layouts, 4 that generate HTML Web Help and 4 that generate Printed Documentation.
    When I used RoboHelp 8 it generated the printed documentation using Word 2007. My company recently upgraded all of our systems to Windows 7 and Office 2010 (64-bit) and when they did that I found out that RoboHelp 8 was incompatible with Word 2010, so I called up Adobe and they suggested I upgrade to RoboHelp 9, which I did. I now have Robohelp Version 9.02 on my new machine. Unfortunately, my RoboHelp project still does not generate all of the printed documentation the way I want it to.
    Initially, 3 out of the 4 Single Source Layouts generated printed documentation fine, but the fourth one actually caused a crash in Word 2010 and I received the complilation error from RoboHelp 9 that said "failed to generate Filename.docx" or something like that. I called Adobe Technical Support and they had me uninstall Office 2010 (64-bit) and install Office 2010 (32-bit). That solved the crashing problem, but the specific single source layout that caused the problem still doesn't generate the printed documentation correctly. There are missing pages and pages in incorrect order and ghost pages that I don't even expect to be there.
    The Support Desk person feels, and I believe he is correct, that it has to to with the template file that I am using. That template file is pretty complicated, involving macros and fancy styles. I did not create the .dot file myself, I came to the project after someone else had already done it, so I am not that familiar with how the template file was created. Moreover, the Adobe Technical support fellow also seems not to know much about Word template files, so at this point we are sort of at an impasse, where he is claiming that the problem lies in my .dot file, and I am claiming that even if that is the case, RoboHelp should work with all .dot files, and moreover, why does my template file work with 3 out of 4 of my single source layouts?
    Anyway, we need to break this impasse somehow, does anyone out there have any helpful suggestions?

    I think you are misunderstanding how the forum works. You say "your developers." Nearly all posts here are handled by users of the product, such as myself. Adobe staff do drop in from time to time and we always welcome their intimate product knowledge.
    Anything you regard as a bug or needing a feature change needs to be fed direct to Adobe.
    http://www.Adobe.com/cfusion/mmform/index.cfm?name=wishform&product=38
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • NI: Get to grips with Fundamental LV Shortcomings.

    I am not new to software. Having done my fair share of traditional, and, for the last 15 years, OO development I have used quite a few tools and
    programming languages: C, C++, Smalltalk, Java, Eiffel, C# and also written my own programming langauge. The most professional Programming
    Environment I have ever seen is Eclipse (Java Programming Environment) (www.eclipse.org) which again has inherited it's  powerful ideas and tools from
    Smalltalk envrioments.
    I have used LabView for shorter periods in several of its incarnations.  I recently finished a fairly large Realtime Control Project  using version 8.2 and the
    State Diagram Toolkit. (see this thread: http://forums.ni.com/ni/board/message?board.id=170&message.id=234831).
    LabView is a very powerful environment, but like most environments it has its shortcomings. And now we are getting closer to what this thread is all about:
    ** Navigating Source Code ** (Search & Replace  / Find References to objects / Instances)
    Fundamental Search
    The problem is: Many of these issues are ** fundamental ** and easy to fix, but nothing seems to be done about them! I recently upgraded to version 8.5,
    and expected the ** fundamental ** lack of the ability to search for references to my Shared Variables to be fixed. But I was terribly dissapointed, and to be
    honest:
    If a developer cannot Navigate his / hers code, she / he is not in controll of the developed software!
    I have never before seen a programming enviroment that has no feature whatsoever to find References to Variables used in a Program! Unnecssary to say,
    this is an absolutley fundamental tool for any programmer: In text based languages you of course have text bases searches, which are crude, but it does the
    job. In Eclipse you can even search for where variables are Assigned to, or Read from! (The search is actually searching the Parse Tree).
    However, there is not even a Text Based search for Shared Variables in LabView 8.0 to 8.5 and all its intermediate upgrades!
    I have spent countless hours using the extremely crude, cumbersome and time waisting method of deleting the Shared Variable and thereby getting a
    compliler error showing me where the variable is used: Then I have to close my project withouts saving,  reopen the project again and get back to where I
    was working. None of this time can be billed to my clients.
    Yes, I know LabView in the meantime has received a host of powerful features. But this is fundamental feature would take any of NI's highly qualified
    developers a few hours or a day or two to fix.
    So why isn't it implemented? I bet NI's developers miss it as much as the next guy.
    I guess this fundamental feature does not look so good on the Marketing Peoples brochures, so they figure NI's developers should spend their time on new
    features that they can promote and use to get us to upgrade: Guess what: I will wait a very long time until I ugprade again.
    The LabView Search Dialog
    The Search Dialog miss one important feature: The ability to Point at any VI / object in a Block Diagra, to say "this is the type I want to search for".
    Often I cannot find the type I want to search for in the lists the Search Dialog is presenting.
    Other times I simply do not know what the type is, and where to find it, but I am looking at it in an open Block Diagram!
    Enter the StateChart Module
    As I said, we used the StateDiagram Toolkit to develop our Control System: 9 Processes each running their separate State Diagram on a cFP 2120 system.
    The StateDiagram Toolkit is very basic: Not able to resize any state circles or even move more than one at a time: It has been like this for  more than two
    years. However, we are in control of the generated code, and could find references to my VIs in the generated code.
    The StateChart Module is an implementation of the UML StateChart Implementation. Going through the Tutorial I was quite impressed.
    However, yet again the lack of the ability to search for References to important Resources lets the product down:
    a) Not possible to Find references to where in the Diagram any Trigger is used.
    b) Not possible to Search for any used instance / object within a Diagram: Objects / Instances used within the Diagram does not even show up under the
    "VIs by Name list"
    c) Text Searches possible, but matches are found in generated code and ** not ** in the Diagram.
        The generated code has no link whatsoever back to the Diagram.
    I will post another thread with the shortcomings I have found in the StateChart Module and some ways to circumvent these shortcomings.
    Upgrades: What about Tools Developers used in previous versions?
    It is very important for developers to know what happens to the tools they are already using when upgrading to a new version.
    We used the State Diagram Toolkit for thje project we just finished. However, I could not find any words about what happened to this Toolkit in version
    8.5! Developers cannot upgrade without knowing that tools they are using are still working.
    We did not upgrade to version 8.5 during our project, but stayed with version 8.2. And I am glad we did: After the project ended, I moved the source code
    to version 8.5. Everything worked and the cFP 2120 code was also running: However, the performance had deteriorated with > 33%. See this link:
    http://forums.ni.com/ni/board/message?board.id=170&message.id=275320
    Question: What about the Next LabView Release?
    It has taken Natioanl two decades to produce a very capable development system. However, it only takes the introduction of a few more features where the
    Programmers do not have Navigation Control (ability to search & find / replace) to bring the productivity of this product down to its knees.
    I certainly hope that NI in the next LabView Release concentrates on fixing these and other Naviagion shortcomings (rather than introducing features) to bring
    LabView up to the Speed an Productivity that it is capable of: NI got the engineers to do it: Give just give them the time to fix the problems!
    Can we please have NI's dedication to fix these easy to fix issues and thereby give back Navigational Control to us, the Developers ?
    Please, I do want to continue to impress my clients with what LabView can do, in a short amount of time !
    Geir Ove

    Most of the "shortcomings" that LV exhibits arise from NI trying to placate people such as yourself who have no idea about how to go about creating a good LV-based application. In terms of specific responses I truly don't know where to begin with your points. To begin with, its clear that despite your years of experience working in other languages you don't know squat about developing in LV. For example, you start with the assumption that using dozens of named variables is a good thing! Did it ever occur to you that if you are having this hard a time with maintaining an application that there might be something fundamentally flawed in your design - no of course not - it's easier to blame the tool.
    LV is an ideal environment to develop very large applications - as has been shown time and again. However, you must keep it straight that there is no correlation between complex code and complex functionality. Unfortunately, most people thing there is. They believe that to have complex functionality they need really complex code. As a result they write an incredibly bad implementation of something that is essentially a simple process. Starting from this faulty example they then try to extrapolate what it would take to create a large application and immediately assume that LV is only for "small" projects.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • Problem generating Web Service with business methods in multiple EJB's

    Hi,
    I'm I a "web service novice" but I'm working with an
    application which was developed in an earlier version
    of Studio which has
    ~30 business method coming from ~12 EJB's. When I attempt
    to recreate the Web Service in Java Studio Enterprise 7 (had same problem versions 5 and 6) I have trouble. When I execute the "Generate Web Service Files" command I get complilation errors in the <webservice_name>.java file. It is obvious that the
    protected Map theJNDIMap = makeJNDIMap();
    protected Map makeJNDIMap() {
         Map m = new HashMap();
         // This map might get changed at deployment time
         m.put(......
    is all screwed up. Entries are missing and the closing bracket isn't even there.
    Is there some user error on my part?
    Is this a know bug (I couldn't any info. and I get the same behavior on the current and older versions of Studio)?
    Is there a workaround? I can fix this particular java file and compile it sucessfully. However, I'm still missing many of the other web service files that should be generated for me.
    All the tutorials on web services that I've done to looked over all get there business method from 1 EJB :(
    Please advise,
    Freda Phelps

    I had a problem too. Successfully created an EJB and its test application. Tested the same using Web client and works fine. Now created a web service from EJB methods. It created the skeletons. When tried creating Web Svc test client or web svc other files..it gives me an exception saying xmlservices.jar doesnt exist in the C:\Docs and Settings\<$username>\.jstudio\Ent04Q4modules. I have searched for this file and copied (overwritten) it into this directory. But still i cant proceed further.

  • Simulating Multiple Inheritance in Java

    Problem:
    I am trying to obfuscate code and create wrapper classes to access code implementation. Problem is that some parameters in methods have different types. (i.e.
    public class Example{
    ExampleImpl exampleImpl;
    public void setExample(Problem exam) {
    exampleImpl.setExample(exam); //complile error
    //error message: problemImpl is not of type problem
    public class ExampleImpl {
    public void setExample(ProblemImpl exam) {
    //do something
    The objects Problem and ProblemImpl are abstract class that provode some implementation.
    I know I have to sumulate multipule inheritance but its really have to changed the abstract classes to inherate each other. Problem with that is the ProblemImpl abstract class will be obfuscated.
    Any suggestions.

    Not quite following you but perhaps
    java.lang.reflect.proxy
    could be of service

  • Inheritance

    i used the super class get method in subclass and passed it as an argument to the subclass method to calculate x and y values because the data of the supercalss are declared private but when i complied my program complilation errors are coming in the method calMinx() and calMiny()
    errors are illegal start of type,identifier expected
    import java.awt.Window.*;
    import java.awt.Graphics.*;
    public class MyOval extends MyShape{
    private int x;
    private int y;
    private double width;
    private double height;
    MyOval(){
    super();
    this.x = 0;
    this.y = 0;
    this.width = 0.0;
    this.height = 0.0;
    MyOval(int x1,int y1,int x2,int y2,int x,int y,double width,double height){
    super(x1,y1,x2,y2);
    this.x = x;
    this.y = y;
    this.width = width;
    this.height = height;
    public int calMinx(int super.getx1(),int super.getx2())//errors are coming at this point
    if((x1 < x2) && (x2 > x1))
    int x = x1;
    return x;
    public int calMiny(int super.gety1(),int super.gety2())//errors are coming at this point
    if((y1 < y2) && (y2 > y1))
    int y = y1;
    return y;
    void calWidth(int super.getx1(),int super.getx2()){
    double width = (x2 - x1);
    System.out.println("the width is " + width);
    void calHeight(int super.gety1(),int super.gety2()){
    double height = (y2 - y1);
    System.out.println("the height is :" + height);
    public void drawOval(int x,int y,double width,double height){
    System.out.println("print the values :" + x, + y, + width, + height);
    public void draw(Graphics g){}
    }

    The parameters in a method are there so you can pass values into that method. You cannot make a call to a different method in the parameter list. If you need values in your method that are retrieved from another method then make those method calls inside the body of your method.
    public void myMethod() {
        // make method calls here
    }

  • Air iOS - To use TestFlight Beta Testing, build 1.0.0 must contain the correct beta entitlement.

    Hi,
    I published my iOS app and uploaded it to iTunes Connect to run an external beta test through Apple TestFlight but I got this error:
    To use TestFlight Beta Testing, build 1.0.0 must contain the correct beta entitlement.
    I created my certificate 3 days ago and it contains the beta entitlement.
    I published the iOS app with the latest Flash CC 2014 version on a Mac with Air 15.
    How to fix that error?
    Thanks

    I'm using flasProfesionnalcc 2014, using Air SDK 16... I have the same problem. 
    >In summary... I am using Air SDK 16.0 and added the following to my app xml file:
    <Entitlements>
    <![CDATA[ <key>get-task-allow</key>
    <false/>
    <key>beta-reports-active</key>
    <true/> ]]>
    </Entitlements>
    But when I try to insert the <Entilements> code into de xml file   I receive a error when a try to complile:
    Error application.Entilemens is a unexpected element/atribute
    How to fix that error?
    Thanks

Maybe you are looking for

  • How to disable columns while displaying

    Hi, How to disable columns from the page which we don't want to show to the users.For example Users will search by "Invoice No" but they don't want to see again Invoice No on the results page. Appreciate your quick response. Thks.

  • Imported Songs Out of Order

    Hello- I imported 2 disc live album and iTunes is putting Disc 2 before disk 1. It's a live album so it comes out strange. Any idea how I fix this? Latest Mac OS and Latest iTunes. Thanks.

  • Calling report with auto-filling the date parameter

    Hi all, I need to schedule a report whereby the date is need to be entered manually by the user. Now, if I need to schedule this report, how am I tell this report on the date parameter I want to fix in the 1st day of a month. So that the report will

  • JScrollpane problems in w98

    Hi i created a jpanel, painted some 2D-Graphics on it (within the paintComponent-method) but it don't fit on the screen because its too large. So i put the panel in a JScrollPane. But when i drag the Scrollbutton up or down my graphics are fractured

  • How do i open nikon D7100 nef files in pse10

    I cant open my NEF/RAW files for the Nikon D7100 on Photoshop Elements 10 is there a way to do this