Package declaration error

I have an error calling a function from within my package.
user_01 has a package called tautilities, that contains 2 functions.
user_01 can use the functions no probs.
user_01 then grants execute on tautilities to user_02
user_02 executes the function getting the error
PLS-00201: identifier 'TAUTILITIES.GET_DISTANCE' must be declared.
What am I missing here? The functions are defined in the package definition?
thanks
null

I think you should invoke it like user_01.tautilities.get_distance. Or create a public synonym for tautilities, so that you won't be needing the schema qualifier.

Similar Messages

  • New Columns Used in a Package Declaration

    I added the following new columns to a table:
    alter table J48PLTEQUIP add
    LOCBYUSER Char ( 1) Default 'N', UPF85 VarChar2(6) Default To_Char(SysDate,'MMDDRR'),
    COFFSETDV VarChar2( 8) , UPF86 VarChar2(6) Default To_Char(SysDate,'MMDDRR'),
    COFFSETEV VarChar2( 8) , UPF87 VarChar2(6) Default To_Char(SysDate,'MMDDRR'),
    COFFSETEU VarChar2( 8) , UPF88 VarChar2(6) Default To_Char(SysDate,'MMDDRR'),
    ROFFSETDV VarChar2( 8) , UPF89 VarChar2(6) Default To_Char(SysDate,'MMDDRR'),
    ROFFSETEV VarChar2( 8) , UPF90 VarChar2(6) Default To_Char(SysDate,'MMDDRR'),
    ROFFSETEU VarChar2(15) , UPF91 VarChar2(6) Default To_Char(SysDate,'MMDDRR')
    Then I tried adding the new columns to a package declaration (see code below) and for some reason I am getting some errors when I compile it:
    TYPE tab_coloffsetdv IS TABLE OF J48PLTEQUIP.COLOFFSETDV%TYPE index by binary_integer;
    TYPE tab_coloffsetev IS TABLE OF J48PLTEQUIP.COLOFFSETEV%TYPE index by binary_integer;
    TYPE tab_coloffseteu IS TABLE OF J48PLTEQUIP.COLOFFSETEU%TYPE index by binary_integer;
    TYPE tab_coloffsetdir IS TABLE OF J48PLTEQUIP.COLOFFSETDIR%TYPE index by binary_integer;
    TYPE tab_rowoffsetdv IS TABLE OF J48PLTEQUIP.ROWOFFSETDV%TYPE index by binary_integer;
    TYPE tab_rowoffsetev IS TABLE OF J48PLTEQUIP.ROWOFFSETEV%TYPE index by binary_integer;
    TYPE tab_rowoffseteu IS TABLE OF J48PLTEQUIP.ROWOFFSETEU%TYPE index by binary_integer;
    TYPE tab_rowoffsetdir IS TABLE OF J48PLTEQUIP.ROWOFFSETDIR%TYPE index by binary_integer;
    SQL> show error
    Errors for PACKAGE PWRADMIN.PLAKCOMP:
    LINE/COL ERROR
    78/4 PL/SQL: Declaration ignored
    78/47 PLS-00302: component 'COFFSETDV' must be declared
    79/4 PL/SQL: Declaration ignored
    79/47 PLS-00302: component 'COFFSETEV' must be declared
    80/4 PL/SQL: Declaration ignored
    80/47 PLS-00302: component 'COFFSETEU' must be declared
    81/4 PL/SQL: Declaration ignored
    81/48 PLS-00302: component 'COFFSETDIR' must be declared
    82/4 PL/SQL: Declaration ignored
    82/47 PLS-00302: component 'ROFFSETDV' must be declared
    83/4 PL/SQL: Declaration ignored
    LINE/COL ERROR
    83/47 PLS-00302: component 'ROFFSETEV' must be declared
    84/4 PL/SQL: Declaration ignored
    84/47 PLS-00302: component 'ROFFSETEU' must be declared
    85/4 PL/SQL: Declaration ignored
    85/48 PLS-00302: component 'ROFFSETDIR' must be declared
    359/4 PL/SQL: Declaration ignored
    362/52 PLS-00302: component 'COFFSETDV' must be declared
    Do you have any clues why I am getting this error?
    Your help is really appreciated.
    Alex

    Todd, thanks for your prompt answer.
    I apologize, I pasted the wrong segment of the code. The TYPE statements should have been the following:
    TYPE tab_coffsetdv IS TABLE OF J48PLTEQUIP.COFFSETDV%TYPE index by binary_integer;
    TYPE tab_coffsetev IS TABLE OF J48PLTEQUIP.COFFSETEV%TYPE index by binary_integer;
    TYPE tab_coffseteu IS TABLE OF J48PLTEQUIP.COFFSETEU%TYPE index by binary_integer;
    TYPE tab_coffsetdir IS TABLE OF J48PLTEQUIP.COFFSETDIR%TYPE index by binary_integer;
    TYPE tab_roffsetdv IS TABLE OF J48PLTEQUIP.ROFFSETDV%TYPE index by binary_integer;
    TYPE tab_roffsetev IS TABLE OF J48PLTEQUIP.ROFFSETEV%TYPE index by binary_integer;
    TYPE tab_roffseteu IS TABLE OF J48PLTEQUIP.ROFFSETEU%TYPE index by binary_integer;
    TYPE tab_roffsetdir IS TABLE OF J48PLTEQUIP.ROFFSETDIR%TYPE index by binary_integer;
    Hopefully, this will clear things out. I am still out of luck with this issue. Thanks in advance again to all the gurus for your help...

  • Multiple top level package declarations

    The "Programming Adobe ActionScript 3.0" states in chapter 4 "ActionScript Language and Syntax", "Packages and Namespaces", "Creating Packages" that you can declare at the top level of a package multiple variables, functions, and namespaces in addition to a single class as long as only one is declared "public".
    However, in Flash when I declare a public class and any other variable or function either with the "internal" attribute or no attribute, I get this error:
    5006: An ActionScript file can not have more than one externally visible definition: test.function1, test.Test
    The package code is as follows:
    package test
        internal function function1():String
            return "Function1()";
        public class Test
    The same thing happens if I replace the function with an internal variable declaration. According to the manual, any declaration with the "internal" attribute should not be externally visible outside the package. Only the "public" class declaration should be externally visible.
    Can anyone clue me in as to why I get this error?

    That is not the situation described by the quoted manual section that I am trying to recreate.
    It clearly says:
    "In ActionScript 3.0, you use the package statement to declare a package, which means that you can also declare variables, functions, and namespaces at the top level of a package. You can even include executable statements at the top level of a package. If you do declare variables, functions, or namespaces at the top level of a package, the only attributes available at that level are public and internal, and only one package-level declaration per file can use the public attribute, whether that declaration is a class, variable, function, or namespace."
    The data properties and class you have decleared are outside the package within the ActionScript file, and not at the top level of a package. The "public" attribute is not available outside the package at all.
    What I wish to know is why the quoted internal declarations at the top level of the package generate the quoted error.
    However, I am beginning to believe that the documentation is in error and that what it is actually describing IS the situation you just described. When the manual says "top level of the package", it really means "top level of the ActionScript file outside the package", and when it says "the only attributes available at that level are public and internal", it really mans "the only attribute available outside the package declaration is internal. At the top level of the package, only one declaration may be made, it must have the same identifier as the ActionScript file name, and it can have either the public or internal attribute. Code within the same file but outside the package declaration can not access an internal declaration in the package declaration."
    Actually, the whole paragraph would need to be re-written to clarify the issue and to unambiguously distinguish between "top level of a package" and "top level of an ActionScript file outside the package declaration".
    As a concrete example - two ActionScript files:
    MCTest.as is saved in the same directory as MCTest.fla, and the document class of MCTest.fla is set to "MCTest".
    package
        trace("MCTest package code.");
        import flash.display.MovieClip;
        import test.Test;
        public class MCTest
        extends MovieClip
            trace("MCTest class code.");
            function MCTest()
                trace("Created Class MCTest: " + Test.StaticMessage);
    trace("MCTest outside package code");
    Test.as is saved in a sub-directory called "test".
    package test
        trace("test.Test package code");
        public class Test
            public static const StaticMessage:String = "Test: Hello World!";
            trace("test.Test class code");
    var myField:String = "myField";
    function myFunction():String
        return "myFunction";
    trace("test.Test outside package: " + myField + ", " + myFunction() + ", " + test.Test.StaticMessage);
    The resultant trace output is:
    MCTest class code.
    MCTest package code.
    MCTest outside package code
    test.Test class code
    test.Test package code
    test.Test outside package: myField, myFunction, Test: Hello World!
    Created Class MCTest: Test: Hello World!
    It is interesting to note that the package and outside package code are executed AFTER the class code.
    That seems to make more sense. You can only declare one class, variable, function, or namespace at the top level of a package with the same identifier as the file name, public or internal, and you can include executable code. At the top level of the ActionScript file outside the package declaration, you can only declare internal classes, variables, functions, and namespaces, and you can include executable code, none of which are within the package nor have access to any package internal declarations.
    The problem, therefore, would seem to be an incorrect manual. Does anyone actually know if this is accurate and the intended behavior?

  • Access Modifiers, Package declaration

    I created the following two classes in the same folder as two source files:
    A.java
    package abc;
    class A{
    B.java
    package abc;
    class B extends A{
    When I tried to compile, A compiled successfully. But when compiling B, it gives an error Cannot find symbol for class A.... I think it should be visible as both class access modifiers are (default). Why do I get this error????
    By the way if package declarations are removed from both classes then they compile successfully........

    i tried a lot..... does classpath affects compilation??? can u correct dis???If we're going to make the effort to help you, you could show willing and make the effort to spell out all your words and generally make your sentences as easy to understand as possible.
    Yes, the classpath affects compilation as the link provided shows. YOU can correct this.
    >
    e:\one\>javac -classpath e:\one\cert B.java
    >
    The classpath points at directories (or JAR files) not Java source files. Read the link.

  • Invalid package declaration:

    If you read my post a few messages down, I asked how to add a package in NetBeans. Solved (THANKS).
    But now I get this error when I mouseover the items in the package. Can I get an exact walkthrough on what to do to enable a package to work in NetBeans?
    l'll be more specific. I downloaded the jpb package from http://knking.com/books/java/ (Near the bottom)
    NetBeans saves my projects in C:\Documents and Settings\Administrator. So (In accordance with the instructions given in the book) I made the dir. C:\Documents and Settings\Administartor\jpb and inserted 3 .java files in it (SimpleIO.java Convert.java and DrawableFrame.java). From this point, what do I do so that (in netbeans) I can type import jpb.* and not get any errors?
    THANKS AGAIN FOR EVERYONE WHO HELPS

    You must compile these files, and I suggest you to
    create a jar library:
    New project -> General -> Java Class Library
    Copy your sources in it and build project. This will
    generate a .jar in the dist folder in mounted
    filesystem.
    Now add this builded jar in your project library as
    commented before.
    mariOHey there, I'm also a newb facing a similar error...
    I backed up a package by copy - pasting it and now i mounted it. However, when i mouseover any of its classes it says "Invalid package declaration" and i can't solve it....
    pls help
    THX!!!

  • DBMS_PIPE : NOT DECLARED ERROR 발생 시

    제품 : PL/SQL
    작성날짜 : 1996-10-30
    DBMS_PIPE NOT DECLARED ERROR 발생 시
    ====================================
    발생원인 1)
    DBMS_PIPE는 oracle install시에 $ORACLE_HOME/rdbms/admin/catproc.sql을
    실행함으로써 생성되도록 되어 있는 stored package이다.
    다른 stored package(DBMS_OUTPUT....)등은 생성직후 sys를 owner로한
    stored package에 대해 public synonym을 생성한 후 바로 이 synonym에
    대해 public에게 execute previlege가 grant되지만 DBMS_PIPE는 생성만
    되도록 되어 있기 때문에 사용하고자 하는 user에게 별도의 grant작업이
    필요하다.
    -> 확인사항 및 해결 방법
    1) sqldba에서
    select * from dba_objects where object_name = 'DBMS_PIPE';
    를 수행하여 DBMS_PIPE에 관한 자료가 sys가 owner인 package
    spec,package body,synonym만 나타나야 한다.
    2) sqldba에서
    grant execute on DBMS_PIPE to user_name;
    을 실행하여 해당 user에게 grant한다.
    발생원인 2)
    DBMS_PIPE는 sys가 owner이어야 한다.
    user의 실수로 system이나 다른 별도의 user로 connect하여 catproc.sql을
    실행한 경우에 발생한다.
    -> 확인사항 및 해결방법
    1) sqldba에서
    select * from dba_objects where object_name = 'DBMS_PIPE';
    를 수행하여 DBMS_PIPE에 관한 자료가 sys나 public이 아닌 다른
    user가 owner로 되어 있는 DBMS_PIPE object를 drop시킨다.
    2) sqldba에서
    grant execute on DBMS_PIPE to user_name;
    을 실행하여 해당 user에게 grant한다.

    Your comments are inappropriate.
    First of all, documentation links outside Oracle might not contain the correct documentation, as Oracle fixes documentation bugs silently.
    Secondly, you should not post links to desupported release. You seem to have assumed the 8.1.5 solution still applies to newer releases, which is correct in this case but not necessarily in all cases.
    Finally in the time you took to flame Saubhik you could have helped someone else out.
    Sybrand Bakker
    Senior Oracle DBA

  • Failed to load Execute Package Task error.

    Hello Experts,
    Excuse my newbie question.
    Execute Package Task: Error: The task has failed to load. The contact information for the task is "Microsoft Corporation; Microsoft SQL Server; Microsoft corporation; All Rights Reserved http://www.microsoft.com/sql/support/default.asp:1"
    We have a windows service running on our app server that deploys a package that executes other packages using execute package task. This package and rest of the packages are in the same folder at the same level under integration services
    catalog. The package fails to execute with the above said error.
    Execute package task is configured to run in 'in-process' mode. Changing delay validation to true/false in child packages didn't help.
    ironically if the package is deployed using a console application from the app server the package gets executed just fine. I checked permissions, everything seem fine.
    Is there anyway to get details of this error to understand the problem better? I am looking at reports > standard reports > all executions.
    Thanks.

    As it turns out, the 63bit ExecPackageTask.dll was not found under "C:\Program Files\Microsoft SQL Server\110\DTS\Binn". Installing "SQL Server Data Tools" installed only 32 bit version of the component under "C:\Program Files (x86)\Microsoft SQL
    Server\110\DTS\Binn".
    Is there a way to get 64bit version of this component without installing "Integration Services" (to avoid possible license issues)?
    Hi Jayakarthiks,
    To make use of the 64-bit ExecPackageTask.dll, you also need the 64-bit SSIS runtime and 64-bit DTExec utility tool. To obtain the 64-bit SSIS runtime and tools, you have to install the SQL Server Integration Services service from your SQL Server 2012 install
    media.
    Reference:
    http://msdn.microsoft.com/en-us/library/ms143731.aspx
    Regards,
    Mike Yin
    If you have any feedback on our support, please click here
    Mike Yin
    TechNet Community Support

  • Package-query: error while loading shared libraries: libcurl.so.4: can

    Hi all
    when i run yaourt to install any things :
    package-query: error while loading shared libraries: libcurl.so.4: cannot open shared object file: No such file or directory
    why?
    what can i do?
    I'm very newbie so help me with easy commands!
    thanks

    try to reinstall yahourt :
    https://wiki.archlinux.org/index.php/Yaourt

  • Package Validation Error - SSIS Error Code DTS_E_OLEDBERROR - Error code: 0x80040E4D

    I sometimes get the following error randomly - 
    Package Validation Error
    ADDITIONAL INFORMATION:
    Error at MY_PACKAGE_PLUS[Connection manager "MY_DATABASE"]: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80040E4D.
    An OLE DB record is available.  Source: "Microsoft SQL Server Native Client 10.0"  Hresult: 0x80040E4D  Description: "Login failed for user 'USERNAMEZ'.".
    Error at MY_PACKAGE_PLUS [Log provider "SSIS log provider for SQL Server"]: SSIS Error Code DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER.  The AcquireConnection method call to the connection manager "MY_DATABASE" failed with error
    code 0xC0202009.  There may be error messages posted before this with more information on why the AcquireConnection method call failed.
     (Microsoft.DataTransformationServices.VsIntegration)
    My package name in SSIS/BIDS is MY_PACKAGE, but in the error I see MY_PACKAGE_PLUS, which was the name of an older version of the package. This error goes away when I close SSIS and then restart it. I wonder why this happens and how do I fix it
    ? Is this some bug in SSIS ? The same package runs without errors in SQL server agent.
    Thanks.

    It seems the old package reference still exists in your project bin folder or inside stproj file. WHich is why it tries to validate the older package each time when you start  the project.
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Package Authoring Error

    Hi
    I may have come to the wrong Forum and if so my apologies but if there is some one who could let me know if i need be concerned of the following errors i have just noticed in Console after having done recent Java And Safari update today.both installations i believe were completed successfully but console is showing the following message.
    13/03/2011 13:43:52 Software Update[133] Software Update Package Authoring Error: installation-check results requires a message
    13/03/2011 13:38:58 Software Update[136] Software Update Package Authoring Error: <choices-outline ui='SoftwareUpdate'> should only have one <line> element. Put additional <line> elements in a <choices-outline ui='invisible'> element.
    Thanks in advance
    Cole

    mach_kernel file missing in root of harddrive
    replaced, now working again

  • Currency Translation- Package Status error

    I am encountering the following error after running  the currency translation package.
    The following is the error message in the package log
    RUN LOGIC : Run program error,Message Number : ''''
    Failed
    Application:Sales Package Status :ERROR
    Can some one please tell me what does this error mean and how it can be resolved

    HI,
    This error has been discussed in many threads here in this forum.
    Refer these and see if u can get a solution:
    Re: Currency conversion issue.
    Re: Currency Conversion Problem
    Regards
    Navin

  • AIR 15.0 for OSX - ADT: Packaging failed. Packager internal error

    Packaging a SWF to AIR with captive runtime and native installer (using "-package bundle"), building on PC worked perfectly fine.  After making all of the requisite changes to make it work for Mac, I'm now running into the "Packaging failed. Packager internal error" when building using adt through the command line.  My .command script is as follows:
    cd [directory]
    adt -package -storetype pkcs12 -keystore ../cert/key.p12 -storepass pw -target bundle Bundle ../App.xml App.swf -extdir ../lib icons/16.png icons/32.png icons/128.png
    What can cause this vague "Packger interal error" error? Any help would be appreciated. Thank you.

    Steve
    I have same problem with apple Developer Id Application certificate (downloaded from apple), got past the chain error message by including intermediate and root certificates when I exported from keychain, but got the package error referenced here. Also when I sign on windows machine with my code signing certificate (selecting windows installer) all publishes ok, but the certificate is not attached, says 'unknown developer' when I down load and try and run installer on windows machine. I sent the exe to Comodo (the guys I got the code signing certificate from) and they say the exe is not signed.
    Finally I get 'The digital certificate is invalid'  error when I try and use 'Developer Id Installer' certificate (downloaded from apple).
    I think there must be several problems here with Air SDK.
    Stopping me from publishing and I have a very upset Customer. Can someone from Adobe please advise asap.

  • Declaration error in calendar

    after i downloaded the calendar fmb and olb and pll i attached the library and dragged everything and when i compile the form it gives me declaration error in something called navigator , picklist and wizard the errors r:1) identifier "wizard.wizard_begin" must be declared 2)navigator.get_tree_name must be declared 3)navigator.display_tree must be declared 4)navigator.get_tree_element_value must be declared 5)wizard.wizard_show must be declared 6)refresh_trees must be declared 7)navigator.to_index must be declared
    8)navigator.get_tree_element_depth must be declared
    9)navigator.get_tree_element_parent must be declared
    10)pick_list.list_in must be declared 11)pick_list.list_out must be declared 12)pick_list.get_picklist_element_count must be declared 13)pick_list.get_picklist_selection must be declared 14)wizard.wizard_show must be declared 15)wizard.wizard_finish must be declared

    i use forms 10g the calendar pll and plx and olb after i dragged every thing and attached the pll i found error that some code using itemsit tells me that they r not declared

  • Security package specific error occurred when trying to connect to Orchestrator with remote Runbook Designer

    When I try to connect to Orchestrator server with Runbook Designer installed on my laptop I get an error saying "A security  package specific error occurred.".
    Entry from Designer log file is below. I've tried to set error level to 3 and 7 but got no additional info about the error. I'm unable to find any details of the error on server or client side in any logs (Event Log or Orchestrator trace logs).
    Connecting to Orchestrator Management Server with local Designer installed on the server works fine. 
    Orchestrator is installed in AD environment and security groups are properly configured.
    Can anybody help?
    2012-06-12 11:35:51 [7472] 1 Exception caught in long __cdecl `anonymous-namespace'::connectCommunicator(struct HWND__ *,const class std::basic_string<wchar_t,struct std::char_traits<wchar_t>,class std::allocator<wchar_t> > &)
    Connections.cpp(238):
    <Exception>
    <Type>Opalis::Exception</Type>
    <Location>
    void __thiscall ServiceCommunicator::connect(const class std::basic_string<wchar_t,struct std::char_traits<wchar_t>,class std::allocator<wchar_t> > &)
    ServiceCommunicator.cpp(118)
    </Location>
    <MsgCode>A security package specific error occurred.
    </MsgCode>
    </Exception>

    I'm having a similar issue with one of our runbook servers. i cannot deploy any IPs to it. I get the error "A security package specific error occurred". I can open the designer on the runbook server, connect to the management server, and look at
    runbooks. They wont run on the server without the IPs though, but it doesnt seem like a connection issue. i have also tried uninstalling/re-installing the runbook server and i get the same. 
    Has anybody else run into this? 
    Edit:
    Heres an error fromthe event log:
    The Kerberos client received a KRB_AP_ERR_MODIFIED error from the server <Service Account>. The target name used was HOST/server.domain.domain.com. This indicates that the target server failed to decrypt the ticket provided by the client. This can
    occur when the target server principal name (SPN) is registered on an account other than the account the target service is using. Please ensure that the target SPN is registered on, and only registered on, the account used by the server. This error can also
    happen when the target service is using a different password for the target service account than what the Kerberos Key Distribution Center (KDC) has for the target service account. Please ensure that the service on the server and the KDC are both updated to
    use the current password. If the server name is not fully qualified, and the target domain (domain.domain.COM) is different from the client domain (domain.domain.COM), check if there are identically named server accounts in these two domains, or use the fully-qualified
    name to identify the server.
    So maybe I was just given the wrong account.
    - Slow is smooth and smooth is fast.

  • Combined Update 10.8.3 installation failure JS: Package Authoring Error:

    Hi there,
    I'm trying to install the combined Update 10.8.3 from 10.8.2.
    It doesn't show in the Softwarupdate, so i downloaded it from support.apple.com
    Now i get a failure while Installing, or before installing.
    Konsole log:
    24.04.13 12:06:12,138 CoreServicesUIAgent[3438]: Error: qtn_file_apply_to_path error: Read-only file system
    24.04.13 12:06:12,375 Installer[3474]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    24.04.13 12:06:14,355 Installer[3474]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    24.04.13 12:06:14,664 Installer[3474]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    24.04.13 12:06:14,664 Installer[3474]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    24.04.13 12:06:14,684 Installer[3474]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    24.04.13 12:06:14,684 Installer[3474]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    24.04.13 12:06:14,687 Installer[3474]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    24.04.13 12:06:27,707 SystemUIServer[132]: -[TCMNATPMPPortMapper_Combined refreshExternalIPInThread] NAT-PMP: IP refresh did fail: -7
    Install log:
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: @(#)PROGRAM:Install  PROJECT:Install-735
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: @(#)PROGRAM:Installer  PROJECT:Installer-614
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Hardware: MacBookPro10,1 @ 2.30 GHz (x 8), 8192 MB RAM
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Running OS Build: Mac OS X 10.8.2 (12C3012)
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Env: PATH=/usr/bin:/bin:/usr/sbin:/sbin
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Env: TMPDIR=/var/folders/s_/kjdj96xj0y50zdqk_zrl0s5h0000gn/T/
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Env: SHELL=/bin/bash
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Env: HOME=/Users/KidNoob
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Env: USER=KidNoob
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Env: LOGNAME=KidNoob
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Env: SSH_AUTH_SOCK=/tmp/launch-6bZ1Un/Listeners
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Env: Apple_Ubiquity_Message=/tmp/launch-vrGAQ6/Apple_Ubiquity_Message
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Env: Apple_PubSub_Socket_Render=/tmp/launch-faovOF/Render
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Env: COMMAND_MODE=unix2003
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Env: __CF_USER_TEXT_ENCODING=0x1F5:0:3
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Kombiniertes OS X-Update  Installation Log
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Opened from: /Volumes/OS X 10.8.3 Update Combo/OSXUpdCombo10.8.3.pkg
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Product archive /Volumes/OS X 10.8.3 Update Combo/OSXUpdCombo10.8.3.pkg trustLevel=501
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: JS: Package Authoring Error: Exception thrown while running volume check. TypeError: 'null' is not an object (evaluating 'my.target.systemVersion.ProductVersion')
    Found the solution with the ServerVersion.plist but there is nothing in my CoreServices folder.
    Thx for Help.

    Okay,
    finally I reinstall Mountain Lion,
    CMD+R, New Install!
    The only thing, you have to Install the newest Java Version, thats it!

Maybe you are looking for

  • Question regarding Graphics - Print Forms

    Hi, This is a print forms question. We are on ECC 5.0, basis release 640 Currently, for all our SAPscripts, we have our graphics as TIF files stored as text modules. For our Smartforms, we loaded BMP files to the BDS using transaction SE78. Adobe bri

  • My Seagate Expansion 500GB external hard drive no longer works with my Mac

    Hi i have had a seagate expansion hard drive for the last year ish and it has worked as a time machine without any problem. when i first got it i had to format it to windows but that was simple and worked well. recently i unplugged it for a few weeks

  • How to exclude values in the query designer

    Hi everybody, i need your help! I need to exclude certain information from a report, but as could enter new values in the future, I see it now. Ex. CreatedBy contains the following values: MSanz PRojas Soporte Soporte1 Soporte2 I need to exclude anyt

  • Need help removing partition on macbook pro

    Hello I have a macbook pro 17" OSx 10.6.6 I have a partition that i am trying to remove. When I open up boot camp assistant and click continue then click i already have downloaded the windows support software to a cd dvd or external disk it tells me

  • N95 8gb v20.0.016 firmware

    hi excuse my ignorance but what does the 20.0.016 upgrade give you cant find any noticeable changes apart from messing up ngage, also how does auto rotate work, i bit new to all this so advice greatly appriciated. thanks steve..... Solved! Go to Solu